]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/i18n/i18n.ts
[#766] Fix the change of speed when quality changes
[github/Chocobozzz/PeerTube.git] / shared / models / i18n / i18n.ts
index e2b4409008cebb5e4d62cba366e2fea0a1a99158..0c79c431eafa7b3feb0ca438448473783bbbc618 100644 (file)
@@ -1,20 +1,24 @@
 export const LOCALE_FILES = [ 'player', 'server' ]
 
 export const I18N_LOCALES = {
-  'en-US': 'English (US)',
-  'fr-FR': 'Français (France)'
+  'en-US': 'English',
+  'fr-FR': 'Français',
+  'eu-ES': 'euskara',
+  'ca-ES': 'català'
+  // 'pl-PL': 'polski'
 }
 
 const I18N_LOCALE_ALIAS = {
   'en': 'en-US',
-  'fr': 'fr-FR'
+  'fr': 'fr-FR',
+  'eu': 'eu-ES',
+  'ca': 'ca-ES'
+  // 'pl': 'pl-PL'
 }
 
 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'
 }
@@ -23,6 +27,7 @@ export function isDefaultLocale (locale: string) {
   return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
 }
 
+const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
 export function is18nPath (path: string) {
   return possiblePaths.indexOf(path) !== -1
 }