]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/i18n/i18n.ts
be14201507484a34d717194afbced4cccdb19067
[github/Chocobozzz/PeerTube.git] / shared / models / i18n / i18n.ts
1 export const LOCALE_FILES = [ 'player', 'server' ]
2
3 export const I18N_LOCALES = {
4 'en-US': 'English (US)',
5 fr: 'French'
6 }
7
8 const I18N_LOCALE_ALIAS = {
9 'en': 'en-US'
10 }
11
12 export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
13 .concat(Object.keys(I18N_LOCALE_ALIAS))
14
15 const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
16
17 export function getDefaultLocale () {
18 return 'en-US'
19 }
20
21 export function isDefaultLocale (locale: string) {
22 return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
23 }
24
25 export function is18nPath (path: string) {
26 return possiblePaths.indexOf(path) !== -1
27 }
28
29 export function is18nLocale (locale: string) {
30 return POSSIBLE_LOCALES.indexOf(locale) !== -1
31 }
32
33 export function getCompleteLocale (locale: string) {
34 if (!locale) return locale
35
36 if (I18N_LOCALE_ALIAS[locale]) return I18N_LOCALE_ALIAS[locale]
37
38 return locale
39 }
40
41 export function buildFileLocale (locale: string) {
42 const completeLocale = getCompleteLocale(locale)
43
44 return completeLocale.replace('-', '_')
45 }