]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add german, spanish and chinese (traditional, taiwan) languages
authorChocobozzz <me@florianbigard.com>
Tue, 31 Jul 2018 16:04:54 +0000 (18:04 +0200)
committerChocobozzz <me@florianbigard.com>
Tue, 31 Jul 2018 16:04:54 +0000 (18:04 +0200)
scripts/build/client.sh
shared/models/i18n/i18n.ts

index 567a6e5e094a2697874436d19616622cbe6d7d1a..5b70b604578857fe98626f4d603f92cc7a2f826d 100755 (executable)
@@ -31,7 +31,7 @@ post_build_hook
 # Don't build other languages if --light arg is provided
 if [ -z ${1+x} ] || [ "$1" != "--light" ]; then
     # Supported languages
-    languages=("fr_FR" "eu_ES" "ca_ES" "cs_CZ" "eo")
+    languages=("fr_FR" "eu_ES" "ca_ES" "cs_CZ" "eo" "zh_Hant_TW" "de_DE" "es_ES")
 
     for lang in "${languages[@]}"; do
         # TODO: remove when the project will use runtime translations
index 3f2ca4eafce01cf0cf376688ca2a0f10388cdd7a..baf3fa0f482c5ae0b398d5f49fe7510221aeb138 100644 (file)
@@ -6,7 +6,10 @@ export const I18N_LOCALES = {
   'eu-ES': 'euskara',
   'ca-ES': 'català',
   'cs-CZ': 'čeština',
-  'eo': 'Esperanto'
+  'eo': 'Esperanto',
+  'de-DE': 'Deutsch',
+  'es-ES': 'español',
+  'zh-Hant-TW': '中文 (繁體, 台灣)'
   // 'pl-PL': 'polski'
 }
 
@@ -15,7 +18,9 @@ const I18N_LOCALE_ALIAS = {
   'fr': 'fr-FR',
   'eu': 'eu-ES',
   'ca': 'ca-ES',
-  'cs': 'cs-CZ'
+  'cs': 'cs-CZ',
+  'de': 'de-DE',
+  'es': 'es-ES'
   // 'pl': 'pl-PL'
 }
 
@@ -56,5 +61,5 @@ export function getShortLocale (locale: string) {
 export function buildFileLocale (locale: string) {
   const completeLocale = getCompleteLocale(locale)
 
-  return completeLocale.replace('-', '_')
+  return completeLocale.replace(/-/g, '_')
 }