mirror of
https://github.com/SrIzan10/featheroom.git
synced 2026-06-06 00:56:49 +00:00
20 lines
298 B
TypeScript
20 lines
298 B
TypeScript
/**
|
|
* Locales
|
|
*/
|
|
|
|
import { I18n } from 'i18n-js'
|
|
|
|
import Arabic from '@/lib/locales/ar'
|
|
import English from '@/lib/locales/en'
|
|
import Turkish from '@/lib/locales/tr'
|
|
|
|
const Locales = new I18n({
|
|
ar: Arabic,
|
|
en: English,
|
|
tr: Turkish,
|
|
})
|
|
|
|
Locales.enableFallback = true
|
|
|
|
export default Locales
|