]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/i18n/i18n.ts
make i18n locale names consistent (#918)
[github/Chocobozzz/PeerTube.git] / shared / models / i18n / i18n.ts
index 4d50bc36ea73edca5e4130c1766ec08655bf01a5..2530a19272dc953fc8817bae26ef1c1624ef0b7d 100644 (file)
@@ -1,34 +1,66 @@
+export const LOCALE_FILES = [ 'player', 'server' ]
+
 export const I18N_LOCALES = {
-  'en-US': 'English (US)',
-  fr: 'French'
+  'en-US': 'English',
+  'fr-FR': 'Français',
+  'eu-ES': 'Euskara',
+  'ca-ES': 'Català',
+  'cs-CZ': 'Čeština',
+  'eo': 'Esperanto',
+  'de-DE': 'Deutsch',
+  'es-ES': 'Español',
+  'oc': 'Occitan',
+  'zh-Hant-TW': '中文 (繁體, 台灣)'
+  // 'pl-PL': 'Polski'
+}
+
+const I18N_LOCALE_ALIAS = {
+  'en': 'en-US',
+  'fr': 'fr-FR',
+  'eu': 'eu-ES',
+  'ca': 'ca-ES',
+  'cs': 'cs-CZ',
+  'de': 'de-DE',
+  'es': 'es-ES'
+  // 'pl': 'pl-PL'
 }
 
+export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
+                                      .concat(Object.keys(I18N_LOCALE_ALIAS))
+
 export function getDefaultLocale () {
   return 'en-US'
 }
 
 export function isDefaultLocale (locale: string) {
-  return locale === getDefaultLocale()
+  return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
 }
 
-const possiblePaths = Object.keys(I18N_LOCALES).map(l => '/' + l)
+const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
 export function is18nPath (path: string) {
   return possiblePaths.indexOf(path) !== -1
 }
 
-const possibleLanguages = Object.keys(I18N_LOCALES)
 export function is18nLocale (locale: string) {
-  return possibleLanguages.indexOf(locale) !== -1
+  return POSSIBLE_LOCALES.indexOf(locale) !== -1
+}
+
+export function getCompleteLocale (locale: string) {
+  if (!locale) return locale
+
+  if (I18N_LOCALE_ALIAS[locale]) return I18N_LOCALE_ALIAS[locale]
+
+  return locale
+}
+
+export function getShortLocale (locale: string) {
+  if (locale.indexOf('-') === -1) return locale
+
+  return locale.split('-')[0]
 }
 
-// Only use in dev mode, so relax
-// In production, the locale always match with a I18N_LANGUAGES key
 export function buildFileLocale (locale: string) {
-  if (!is18nLocale(locale)) {
-    // Some working examples for development purpose
-    if (locale.split('-')[ 0 ] === 'en') return 'en_US'
-    else if (locale === 'fr') return 'fr'
-  }
+  const completeLocale = getCompleteLocale(locale)
 
-  return locale.replace('-', '_')
+  return completeLocale.replace(/-/g, '_')
 }