diff --git a/app/utils/i18n.ts b/app/utils/i18n.ts index f822dc29e..6089068bc 100644 --- a/app/utils/i18n.ts +++ b/app/utils/i18n.ts @@ -7,6 +7,7 @@ import { it, ja, ko, + nl, ptBR, pt, pl, @@ -26,6 +27,7 @@ const locales = { it_IT: it, ja_JP: ja, ko_KR: ko, + nl_NL: nl, pt_BR: ptBR, pt_PT: pt, pl_PL: pl, diff --git a/shared/i18n/index.ts b/shared/i18n/index.ts index 8d295a287..a743349f6 100644 --- a/shared/i18n/index.ts +++ b/shared/i18n/index.ts @@ -18,23 +18,19 @@ export const languageOptions = [ value: "zh_TW", }, { - label: "Deutsch (Deutschland)", + label: "Deutsch (German)", value: "de_DE", }, { - label: "Español (España)", + label: "Español (Spanish)", value: "es_ES", }, { - label: "فارسی (Persian)", - value: "fa_IR", - }, - { - label: "Français (France)", + label: "Français (French)", value: "fr_FR", }, { - label: "Italiano (Italia)", + label: "Italiano (Italian)", value: "it_IT", }, { @@ -46,29 +42,37 @@ export const languageOptions = [ value: "ko_KR", }, { - label: "Português (Brazil)", + label: "Nederland (Dutch, Netherlands)", + value: "nl_NL", + }, + { + label: "Português (Portuguese, Brazil)", value: "pt_BR", }, { - label: "Português (Portugal)", + label: "Português (Portuguese, Portugal)", value: "pt_PT", }, { - label: "Pусский (Россия)", - value: "ru_RU", - }, - { - label: "Polskie (Polska)", + label: "Polskie (Polish)", value: "pl_PL", }, { - label: "Tiếng Việt (Vietnamese)", - value: "vi_VN", + label: "فارسی (Persian)", + value: "fa_IR", + }, + { + label: "Pусский (Russian)", + value: "ru_RU", }, { label: "Türkçe (Turkish)", value: "tr_TR", }, + { + label: "Tiếng Việt (Vietnamese)", + value: "vi_VN", + }, ]; export const languages: string[] = languageOptions.map((i) => i.value);