diff --git a/src/contexts/TranslationProvider/i18n.ts b/src/contexts/TranslationProvider/i18n.ts index 8823e49..3c50486 100644 --- a/src/contexts/TranslationProvider/i18n.ts +++ b/src/contexts/TranslationProvider/i18n.ts @@ -1,5 +1,5 @@ export const DEFAULT_LANGUAGE = 'en' as const; -export const OTHER_LANGUAGES = ['zh', 'vi', 'fr', 'ja', 'id', 'ru'] as const; +export const OTHER_LANGUAGES = ['zh', 'vi', 'fr', 'ja', 'id', 'ru', 'pt-BR'] as const; export type AllLanguage = typeof DEFAULT_LANGUAGE | (typeof OTHER_LANGUAGES)[number]; export const LANGUAGE_LABELS: Record = { @@ -10,6 +10,7 @@ export const LANGUAGE_LABELS: Record = { ja: '日本語', id: 'Indonesian', ru: 'Русский', + 'pt-BR': 'Português (BR)', }; // TODO: Depending on language requirement, we might need a library that supports pluralization @@ -21,6 +22,7 @@ export const i18n: Record