]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/i18n/i18n.ts
Refractor user quota SQL queries
[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 'pt-BR': 'Português (Brasil)',
15 'sv-SE': 'svenska'
16 // 'pl-PL': 'Polski'
17 }
18
19 const I18N_LOCALE_ALIAS = {
20 'en': 'en-US',
21 'fr': 'fr-FR',
22 'eu': 'eu-ES',
23 'ca': 'ca-ES',
24 'cs': 'cs-CZ',
25 'de': 'de-DE',
26 'es': 'es-ES',
27 'pt': 'pt-BR',
28 'sv': 'sv-SE'
29 // 'pl': 'pl-PL'
30 }
31
32 export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
33 .concat(Object.keys(I18N_LOCALE_ALIAS))
34
35 export function getDefaultLocale () {
36 return 'en-US'
37 }
38
39 export function isDefaultLocale (locale: string) {
40 return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
41 }
42
43 export function peertubeTranslate (str: string, translations?: { [ id: string ]: string }) {
44 return translations && translations[str] ? translations[str] : str
45 }
46
47 const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
48 export function is18nPath (path: string) {
49 return possiblePaths.indexOf(path) !== -1
50 }
51
52 export function is18nLocale (locale: string) {
53 return POSSIBLE_LOCALES.indexOf(locale) !== -1
54 }
55
56 export function getCompleteLocale (locale: string) {
57 if (!locale) return locale
58
59 if (I18N_LOCALE_ALIAS[locale]) return I18N_LOCALE_ALIAS[locale]
60
61 return locale
62 }
63
64 export function getShortLocale (locale: string) {
65 if (locale.indexOf('-') === -1) return locale
66
67 return locale.split('-')[0]
68 }
69
70 export function buildFileLocale (locale: string) {
71 const completeLocale = getCompleteLocale(locale)
72
73 return completeLocale.replace(/-/g, '_')
74 }