X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fi18n%2Fi18n.ts;h=0c79c431eafa7b3feb0ca438448473783bbbc618;hb=8244e18719e10ab1a376506ee30f941e5725e8ed;hp=e2b4409008cebb5e4d62cba366e2fea0a1a99158;hpb=9c2e0dbfa9098675390e00ccb0fa49c51b3c6732;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/i18n/i18n.ts b/shared/models/i18n/i18n.ts index e2b440900..0c79c431e 100644 --- a/shared/models/i18n/i18n.ts +++ b/shared/models/i18n/i18n.ts @@ -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 }