]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/i18n/i18n.ts
Merge branch 'release/v1.2.0'
[github/Chocobozzz/PeerTube.git] / shared / models / i18n / i18n.ts
index 2530a19272dc953fc8817bae26ef1c1624ef0b7d..d7164b73f7bc11030e97d65cf55b02fc9e209816 100644 (file)
@@ -8,10 +8,15 @@ export const I18N_LOCALES = {
   'cs-CZ': 'Čeština',
   'eo': 'Esperanto',
   'de-DE': 'Deutsch',
+  'it-IT': 'Italiano',
   'es-ES': 'Español',
   'oc': 'Occitan',
-  'zh-Hant-TW': '中文 (繁體, 台灣)'
-  // 'pl-PL': 'Polski'
+  'zh-Hant-TW': '繁體中文(台灣)',
+  'pt-BR': 'Português (Brasil)',
+  'sv-SE': 'svenska',
+  'pl-PL': 'Polski',
+  'ru-RU': 'русский',
+  'zh-Hans-CN': '简体中文(中国)'
 }
 
 const I18N_LOCALE_ALIAS = {
@@ -21,8 +26,11 @@ const I18N_LOCALE_ALIAS = {
   'ca': 'ca-ES',
   'cs': 'cs-CZ',
   'de': 'de-DE',
-  'es': 'es-ES'
-  // 'pl': 'pl-PL'
+  'es': 'es-ES',
+  'pt': 'pt-BR',
+  'sv': 'sv-SE',
+  'pl': 'pl-PL',
+  'ru': 'ru-RU'
 }
 
 export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
@@ -36,6 +44,10 @@ export function isDefaultLocale (locale: string) {
   return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
 }
 
+export function peertubeTranslate (str: string, translations?: { [ id: string ]: string }) {
+  return translations && translations[str] ? translations[str] : str
+}
+
 const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
 export function is18nPath (path: string) {
   return possiblePaths.indexOf(path) !== -1