initial commit

This commit is contained in:
Alireza Ahmadi
2024-02-13 01:17:03 +01:00
commit f40b27fd8b
136 changed files with 16023 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { createI18n } from 'vue-i18n'
import en from './en'
import fa from './fa'
export const i18n = createI18n({
legacy: false,
locale: localStorage.getItem("locale") ?? 'en',
fallbackLocale: 'en',
messages: {
en,
fa,
},
})
export const languages = [
{ title: 'English', value: 'en' },
{ title: 'فارسی', value: 'fa' },
]