PeerTube/shared/models/i18n/i18n.ts

71 lines
1.7 KiB
TypeScript
Raw Normal View History

2018-06-06 17:37:13 +02:00
export const LOCALE_FILES = [ 'player', 'server' ]
2018-05-31 18:12:15 +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',
'eu-ES': 'Euskara',
'ca-ES': 'Català',
'cs-CZ': 'Čeština',
'eo': 'Esperanto',
'de-DE': 'Deutsch',
'es-ES': 'Español',
'oc': 'Occitan',
'zh-Hant-TW': '中文 (繁體, 台灣)'
// 'pl-PL': 'Polski'
2018-05-31 18:12:15 +02:00
}
2018-06-06 17:37:13 +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',
'ca': 'ca-ES',
'cs': 'cs-CZ',
'de': 'de-DE',
'es': 'es-ES'
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
return completeLocale.replace(/-/g, '_')
2018-05-31 18:12:15 +02:00
}