2018-06-06 17:37:13 +02:00
|
|
|
export const LOCALE_FILES = [ 'player', 'server' ]
|
|
|
|
|
2018-10-18 14:35:31 +02:00
|
|
|
export const I18N_LOCALES = {
|
2018-06-28 13:59:48 +02:00
|
|
|
'en-US': 'English',
|
2018-06-28 14:56:46 +02:00
|
|
|
'fr-FR': 'Français',
|
2018-08-10 22:02:16 +02:00
|
|
|
'eu-ES': 'Euskara',
|
|
|
|
'ca-ES': 'Català',
|
|
|
|
'cs-CZ': 'Čeština',
|
2018-07-31 18:04:54 +02:00
|
|
|
'eo': 'Esperanto',
|
|
|
|
'de-DE': 'Deutsch',
|
2018-08-10 22:02:16 +02:00
|
|
|
'es-ES': 'Español',
|
|
|
|
'oc': 'Occitan',
|
2018-09-25 11:53:20 +02:00
|
|
|
'zh-Hant-TW': '繁體中文(台灣)',
|
2018-08-27 11:20:06 +02:00
|
|
|
'pt-BR': 'Português (Brasil)',
|
2018-09-25 11:53:20 +02:00
|
|
|
'sv-SE': 'svenska',
|
2018-08-10 22:02:16 +02:00
|
|
|
// 'pl-PL': 'Polski'
|
2018-09-25 11:53:20 +02:00
|
|
|
'zh-Hans-CN': '简体中文(中国)'
|
2018-05-31 18:12:15 +02:00
|
|
|
}
|
|
|
|
|
2018-10-18 14:35:31 +02:00
|
|
|
const I18N_LOCALE_ALIAS = {
|
2018-06-06 18:04:33 +02:00
|
|
|
'en': 'en-US',
|
2018-06-28 14:56:46 +02:00
|
|
|
'fr': 'fr-FR',
|
|
|
|
'eu': 'eu-ES',
|
2018-07-09 15:03:52 +02:00
|
|
|
'ca': 'ca-ES',
|
2018-07-31 18:04:54 +02:00
|
|
|
'cs': 'cs-CZ',
|
|
|
|
'de': 'de-DE',
|
2018-08-27 11:20:06 +02:00
|
|
|
'es': 'es-ES',
|
|
|
|
'pt': 'pt-BR',
|
|
|
|
'sv': 'sv-SE'
|
2018-06-28 14:56:46 +02:00
|
|
|
// 'pl': 'pl-PL'
|
2018-06-06 17:37:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
|
|
|
|
.concat(Object.keys(I18N_LOCALE_ALIAS))
|
|
|
|
|
2018-05-31 18:12:15 +02:00
|
|
|
export function getDefaultLocale () {
|
|
|
|
return 'en-US'
|
|
|
|
}
|
|
|
|
|
2018-06-06 14:23:40 +02:00
|
|
|
export function isDefaultLocale (locale: string) {
|
2018-06-06 17:37:13 +02:00
|
|
|
return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
|
2018-06-06 14:23:40 +02:00
|
|
|
}
|
|
|
|
|
2018-08-16 10:48:35 +02:00
|
|
|
export function peertubeTranslate (str: string, translations?: { [ id: string ]: string }) {
|
|
|
|
return translations && translations[str] ? translations[str] : str
|
|
|
|
}
|
|
|
|
|
2018-06-28 13:59:48 +02:00
|
|
|
const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
|
2018-05-31 18:12:15 +02:00
|
|
|
export function is18nPath (path: string) {
|
|
|
|
return possiblePaths.indexOf(path) !== -1
|
|
|
|
}
|
|
|
|
|
|
|
|
export function is18nLocale (locale: string) {
|
2018-06-06 17:37:13 +02:00
|
|
|
return POSSIBLE_LOCALES.indexOf(locale) !== -1
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getCompleteLocale (locale: string) {
|
|
|
|
if (!locale) return locale
|
|
|
|
|
|
|
|
if (I18N_LOCALE_ALIAS[locale]) return I18N_LOCALE_ALIAS[locale]
|
|
|
|
|
|
|
|
return locale
|
2018-05-31 18:12:15 +02:00
|
|
|
}
|
|
|
|
|
2018-06-06 18:04:33 +02:00
|
|
|
export function getShortLocale (locale: string) {
|
|
|
|
if (locale.indexOf('-') === -1) return locale
|
|
|
|
|
|
|
|
return locale.split('-')[0]
|
|
|
|
}
|
|
|
|
|
2018-05-31 18:12:15 +02:00
|
|
|
export function buildFileLocale (locale: string) {
|
2018-06-06 17:37:13 +02:00
|
|
|
const completeLocale = getCompleteLocale(locale)
|
2018-05-31 18:12:15 +02:00
|
|
|
|
2018-07-31 18:04:54 +02:00
|
|
|
return completeLocale.replace(/-/g, '_')
|
2018-05-31 18:12:15 +02:00
|
|
|
}
|