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',
|
2018-07-09 15:03:52 +02:00
|
|
|
'ca-ES': 'català',
|
|
|
|
'cs-CZ': 'čeština',
|
|
|
|
'eo': 'Esperanto'
|
2018-06-28 14:56:46 +02:00
|
|
|
// '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',
|
2018-07-09 15:03:52 +02:00
|
|
|
'ca': 'ca-ES',
|
|
|
|
'cs': 'cs-CZ'
|
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-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
|
|
|
}
|