Skip to content

Commit

Permalink
Merge pull request #811 from Gary-Community-Ventures/feat/more_langs
Browse files Browse the repository at this point in the history
Add New Languages
  • Loading branch information
CalebPena authored Dec 19, 2023
2 parents a12672d + 43cad68 commit 6299f3c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Assets/languageOptions.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
export type Language = 'en-us' | 'es' | 'vi' | 'fr' | 'am';
export type Language = 'en-us' | 'es' | 'vi' | 'fr' | 'am' | 'so' | 'ru' | 'ne' | 'my' | 'zh';
const languageOptions: Record<Language, string> = {
'en-us': 'English',
es: 'Español',
vi: 'Tiếng Việt',
fr: 'Français',
am: 'አማርኛ',
so: 'Soomaali',
ru: 'Русский',
ne: 'नेपाली',
my: 'မြန်မာဘာသာစကား',
zh: '汉语',
};

export default languageOptions;

0 comments on commit 6299f3c

Please sign in to comment.