]> 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 d115095d07679a861bcbb17b3abb14b031a45f95..9ae175df9e65faf7606728e9484d33e469cf9c3f 100644 (file)
@@ -20,6 +20,7 @@ export const I18N_LOCALES = {
   'pt-PT': 'Português (Portugal)',
   'sv-SE': 'svenska',
   'pl-PL': 'Polski',
+  'fi-FI': 'suomi',
   'ru-RU': 'русский',
   'zh-Hans-CN': '简体中文(中国)'
 }
@@ -33,11 +34,14 @@ const I18N_LOCALE_ALIAS = {
   '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': 'zh-Hans-CN',
+  'zh-CN': 'zh-Hans-CN',
+  'zh-TW': 'zh-Hant-TW'
 }
 
 export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
@@ -52,6 +56,8 @@ export function isDefaultLocale (locale: string) {
 }
 
 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
 }
 
@@ -79,7 +85,5 @@ export function getShortLocale (locale: string) {
 }
 
 export function buildFileLocale (locale: string) {
-  const completeLocale = getCompleteLocale(locale)
-
-  return completeLocale.replace(/-/g, '_')
+  return getCompleteLocale(locale)
 }