aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/i18n/i18n.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/i18n/i18n.ts')
-rw-r--r--shared/models/i18n/i18n.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/shared/models/i18n/i18n.ts b/shared/models/i18n/i18n.ts
index c5de972ac..81a025f24 100644
--- a/shared/models/i18n/i18n.ts
+++ b/shared/models/i18n/i18n.ts
@@ -10,7 +10,9 @@ export const I18N_LOCALES = {
10 'de-DE': 'Deutsch', 10 'de-DE': 'Deutsch',
11 'es-ES': 'Español', 11 'es-ES': 'Español',
12 'oc': 'Occitan', 12 'oc': 'Occitan',
13 'zh-Hant-TW': '中文 (繁體, 台灣)' 13 'zh-Hant-TW': '中文 (繁體, 台灣)',
14 'pt-BR': 'Português (Brasil)',
15 'sv-SE': 'svenska'
14 // 'pl-PL': 'Polski' 16 // 'pl-PL': 'Polski'
15} 17}
16 18
@@ -21,7 +23,9 @@ const I18N_LOCALE_ALIAS = {
21 'ca': 'ca-ES', 23 'ca': 'ca-ES',
22 'cs': 'cs-CZ', 24 'cs': 'cs-CZ',
23 'de': 'de-DE', 25 'de': 'de-DE',
24 'es': 'es-ES' 26 'es': 'es-ES',
27 'pt': 'pt-BR',
28 'sv': 'sv-SE'
25 // 'pl': 'pl-PL' 29 // 'pl': 'pl-PL'
26} 30}
27 31