feat(i18n): i18n Localization and translations for Farsi (fa) 🇮🇷 (#9533)

Co-authored-by: Mahyar Riazati <mr.riazati1999@gmail.com>
This commit is contained in:
EYHN
2025-01-06 11:28:57 +08:00
committed by GitHub
parent 09937a8e4d
commit 8669936f2f
2 changed files with 1630 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -19,7 +19,8 @@ export type Language =
| 'ur'
| 'ar'
| 'ko'
| 'pt-BR';
| 'pt-BR'
| 'fa';
export type LanguageResource = typeof en;
export const SUPPORTED_LANGUAGES: Record<
@@ -150,4 +151,10 @@ export const SUPPORTED_LANGUAGES: Record<
flagEmoji: '🇸🇦',
resource: () => /* webpackChunkName "i18n-ar" */ import('./ar.json'),
},
fa: {
name: 'Persian',
originalName: 'فارسی',
flagEmoji: '🇮🇷',
resource: () => /* webpackChunkName "i18n-ar" */ import('./fa.json'),
},
};