]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/i18n/i18n.ts
c5de972ac685927b0d85463176863d872fcb333a
[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',
5 'fr-FR': 'Français',
6 'eu-ES': 'Euskara',
7 'ca-ES': 'Català',
8 'cs-CZ': 'Čeština',
9 'eo': 'Esperanto',
10 'de-DE': 'Deutsch',
11 'es-ES': 'Español',
12 'oc': 'Occitan',
13 'zh-Hant-TW': '中文 (繁體, 台灣)'
14 // 'pl-PL': 'Polski'
15 }
16
17 const I18N_LOCALE_ALIAS = {
18 'en': 'en-US',
19 'fr': 'fr-FR',
20 'eu': 'eu-ES',
21 'ca': 'ca-ES',
22 'cs': 'cs-CZ',
23 'de': 'de-DE',
24 'es': 'es-ES'
25 // 'pl': 'pl-PL'
26 }
27
28 export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
29 .concat(Object.keys(I18N_LOCALE_ALIAS))
30
31 export function getDefaultLocale () {
32 return 'en-US'
33 }
34
35 export function isDefaultLocale (locale: string) {
36 return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
37 }
38
39 export function peertubeTranslate (str: string, translations?: { [ id: string ]: string }) {
40 return translations && translations[str] ? translations[str] : str
41 }
42
43 const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
44 export function is18nPath (path: string) {
45 return possiblePaths.indexOf(path) !== -1
46 }
47
48 export function is18nLocale (locale: string) {
49 return POSSIBLE_LOCALES.indexOf(locale) !== -1
50 }
51
52 export function getCompleteLocale (locale: string) {
53 if (!locale) return locale
54
55 if (I18N_LOCALE_ALIAS[locale]) return I18N_LOCALE_ALIAS[locale]
56
57 return locale
58 }
59
60 export function getShortLocale (locale: string) {
61 if (locale.indexOf('-') === -1) return locale
62
63 return locale.split('-')[0]
64 }
65
66 export function buildFileLocale (locale: string) {
67 const completeLocale = getCompleteLocale(locale)
68
69 return completeLocale.replace(/-/g, '_')
70 }