]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/i18n/i18n.ts
Move to eslint
[github/Chocobozzz/PeerTube.git] / shared / models / i18n / i18n.ts
index be14201507484a34d717194afbced4cccdb19067..9ae175df9e65faf7606728e9484d33e469cf9c3f 100644 (file)
@@ -1,19 +1,52 @@
 export const LOCALE_FILES = [ 'player', 'server' ]
 
 export const I18N_LOCALES = {
-  'en-US': 'English (US)',
-  fr: 'French'
+  'en-US': 'English',
+  'fr-FR': 'Français',
+  'ja-JP': '日本語',
+  'eu-ES': 'Euskara',
+  'ca-ES': 'Català',
+  'cs-CZ': 'Čeština',
+  'eo': 'Esperanto',
+  'el-GR': 'ελληνικά',
+  'de-DE': 'Deutsch',
+  'it-IT': 'Italiano',
+  'nl-NL': 'Nederlands',
+  'es-ES': 'Español',
+  'oc': 'Occitan',
+  'gd': 'Gàidhlig',
+  'zh-Hant-TW': '繁體中文(台灣)',
+  'pt-BR': 'Português (Brasil)',
+  'pt-PT': 'Português (Portugal)',
+  'sv-SE': 'svenska',
+  'pl-PL': 'Polski',
+  'fi-FI': 'suomi',
+  'ru-RU': 'русский',
+  'zh-Hans-CN': '简体中文(中国)'
 }
 
 const I18N_LOCALE_ALIAS = {
-  'en': 'en-US'
+  'en': 'en-US',
+  'fr': 'fr-FR',
+  'eu': 'eu-ES',
+  'ca': 'ca-ES',
+  'cs': 'cs-CZ',
+  'de': 'de-DE',
+  'es': 'es-ES',
+  'pt': 'pt-PT',
+  'fi': 'fi-FI',
+  'sv': 'sv-SE',
+  'pl': 'pl-PL',
+  'ru': 'ru-RU',
+  'nl': 'nl-NL',
+  'zh': 'zh-Hans-CN',
+  'zh-CN': 'zh-Hans-CN',
+  'zh-TW': 'zh-Hant-TW'
 }
 
 export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
                                       .concat(Object.keys(I18N_LOCALE_ALIAS))
 
-const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
-
 export function getDefaultLocale () {
   return 'en-US'
 }
@@ -22,6 +55,13 @@ export function isDefaultLocale (locale: string) {
   return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
 }
 
+export function peertubeTranslate (str: string, translations?: { [ id: string ]: string }) {
+  // FIXME: remove disable rule when the client is upgraded to typescript 3.7
+  // eslint-disable-next-line
+  return translations && translations[str] ? translations[str] : str
+}
+
+const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
 export function is18nPath (path: string) {
   return possiblePaths.indexOf(path) !== -1
 }
@@ -38,8 +78,12 @@ export function getCompleteLocale (locale: string) {
   return locale
 }
 
-export function buildFileLocale (locale: string) {
-  const completeLocale = getCompleteLocale(locale)
+export function getShortLocale (locale: string) {
+  if (locale.indexOf('-') === -1) return locale
+
+  return locale.split('-')[0]
+}
 
-  return completeLocale.replace('-', '_')
+export function buildFileLocale (locale: string) {
+  return getCompleteLocale(locale)
 }