PeerTube/shared/models/i18n/i18n.ts

52 lines
1.2 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',
'fr-FR': 'Français'
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',
'fr': 'fr-FR'
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-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-06-06 17:37:13 +02:00
return completeLocale.replace('-', '_')
2018-05-31 18:12:15 +02:00
}