From 7f7680641b6e7625d2099ff3ffc28a1a6ec5b9cf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Quent=C3=AD?= <33203663+Quenty31@users.noreply.github.com> Date: Fri, 10 Aug 2018 22:02:16 +0200 Subject: [PATCH] make i18n locale names consistent (#918) --- shared/models/i18n/i18n.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/shared/models/i18n/i18n.ts b/shared/models/i18n/i18n.ts index a123fdd63..2530a1927 100644 --- a/shared/models/i18n/i18n.ts +++ b/shared/models/i18n/i18n.ts @@ -3,15 +3,15 @@ export const LOCALE_FILES = [ 'player', 'server' ] export const I18N_LOCALES = { 'en-US': 'English', 'fr-FR': 'Français', - 'eu-ES': 'euskara', - 'ca-ES': 'català', - 'cs-CZ': 'čeština', + 'eu-ES': 'Euskara', + 'ca-ES': 'Català', + 'cs-CZ': 'Čeština', 'eo': 'Esperanto', 'de-DE': 'Deutsch', - 'es-ES': 'español', - 'oc': 'occitan', + 'es-ES': 'Español', + 'oc': 'Occitan', 'zh-Hant-TW': '中文 (繁體, 台灣)' - // 'pl-PL': 'polski' + // 'pl-PL': 'Polski' } const I18N_LOCALE_ALIAS = { -- 2.41.0