feat(i18n): add Farsi (#1133)

* Add fa-IR translation via upload

* Add files via upload

* Ran npm run format
This commit is contained in:
Eledah
2024-05-13 19:42:06 +03:30
committed by GitHub
parent 67f3614f3d
commit 3c4d54352d
2 changed files with 85 additions and 0 deletions

View File

@ -15,6 +15,7 @@ import zh from "./locales/zh-CN"
import vi from "./locales/vi-VN"
import pt from "./locales/pt-BR"
import hu from "./locales/hu-HU"
import fa from "./locales/fa-IR"
export const TRANSLATIONS = {
"en-US": en,
@ -54,6 +55,7 @@ export const TRANSLATIONS = {
"vi-VN": vi,
"pt-BR": pt,
"hu-HU": hu,
"fa-IR": fa,
} as const
export const defaultTranslation = "en-US"