2
1

i18n.ts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. export const LOCALE_FILES = [ 'player', 'server' ]
  2. export const I18N_LOCALES = {
  3. 'en-US': 'English',
  4. 'fr-FR': 'Français',
  5. 'eu-ES': 'Euskara',
  6. 'ca-ES': 'Català',
  7. 'cs-CZ': 'Čeština',
  8. 'eo': 'Esperanto',
  9. 'de-DE': 'Deutsch',
  10. 'es-ES': 'Español',
  11. 'oc': 'Occitan',
  12. 'zh-Hant-TW': '繁體中文(台灣)',
  13. 'pt-BR': 'Português (Brasil)',
  14. 'sv-SE': 'svenska',
  15. // 'pl-PL': 'Polski'
  16. 'zh-Hans-CN': '简体中文(中国)'
  17. }
  18. const I18N_LOCALE_ALIAS = {
  19. 'en': 'en-US',
  20. 'fr': 'fr-FR',
  21. 'eu': 'eu-ES',
  22. 'ca': 'ca-ES',
  23. 'cs': 'cs-CZ',
  24. 'de': 'de-DE',
  25. 'es': 'es-ES',
  26. 'pt': 'pt-BR',
  27. 'sv': 'sv-SE'
  28. // 'pl': 'pl-PL'
  29. }
  30. export const POSSIBLE_LOCALES = Object.keys(I18N_LOCALES)
  31. .concat(Object.keys(I18N_LOCALE_ALIAS))
  32. export function getDefaultLocale () {
  33. return 'en-US'
  34. }
  35. export function isDefaultLocale (locale: string) {
  36. return getCompleteLocale(locale) === getCompleteLocale(getDefaultLocale())
  37. }
  38. export function peertubeTranslate (str: string, translations?: { [ id: string ]: string }) {
  39. return translations && translations[str] ? translations[str] : str
  40. }
  41. const possiblePaths = POSSIBLE_LOCALES.map(l => '/' + l)
  42. export function is18nPath (path: string) {
  43. return possiblePaths.indexOf(path) !== -1
  44. }
  45. export function is18nLocale (locale: string) {
  46. return POSSIBLE_LOCALES.indexOf(locale) !== -1
  47. }
  48. export function getCompleteLocale (locale: string) {
  49. if (!locale) return locale
  50. if (I18N_LOCALE_ALIAS[locale]) return I18N_LOCALE_ALIAS[locale]
  51. return locale
  52. }
  53. export function getShortLocale (locale: string) {
  54. if (locale.indexOf('-') === -1) return locale
  55. return locale.split('-')[0]
  56. }
  57. export function buildFileLocale (locale: string) {
  58. const completeLocale = getCompleteLocale(locale)
  59. return completeLocale.replace(/-/g, '_')
  60. }