i18n.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. import i18n from "i18next";
  2. import detector from "i18next-browser-languagedetector";
  3. import { initReactI18next } from "react-i18next";
  4. import translation_en_GB from './translations/en-GB.translation.json';
  5. import translation_en_US from './translations/en-US.translation.json';
  6. import translation_fr_FR from './translations/fr-FR.translation.json';
  7. import translation_de from './translations/de.translation.json';
  8. import translation_es from './translations/es.translation.json';
  9. import translation_it from './translations/it.translation.json';
  10. import translation_ja from './translations/ja.translation.json';
  11. // the translations
  12. /* when adding a new language, check it here https://manage.auth0.com/dashboard/eu/emilia-app/tenant/general
  13. * ALSO: add the locale to client/src/components/util/DatePicker.jsx
  14. * and test which shorthand works (for example the Auth0 list says fr-FR but the shorthand that is passed by ui_locales needs to be fr) */
  15. const resources = {
  16. de: {
  17. translation: translation_de,
  18. description: 'Deutsch',
  19. },
  20. it: {
  21. translation: translation_it,
  22. description: 'Italiano',
  23. },
  24. ja: {
  25. translation: translation_ja,
  26. description: '日本語',
  27. },
  28. fr_FR: {
  29. translation: translation_fr_FR,
  30. description: 'Français',
  31. },
  32. en_GB: {
  33. translation: translation_en_GB,
  34. description: 'English (Great Britain)',
  35. },
  36. en_US: {
  37. translation: translation_en_US,
  38. description: 'English (USA)',
  39. },
  40. es: {
  41. translation: translation_es,
  42. description: 'Español',
  43. },
  44. };
  45. export const languageShorthandForAuth0 = { // for Auth0, see comment above.
  46. de: 'de',
  47. it: 'it',
  48. ja: 'ja',
  49. fr_FR: 'fr_FR fr', // preference list
  50. en_GB: 'en',
  51. en_US: 'en',
  52. es: 'es',
  53. }
  54. export const languagesISO3 = { // for franc translation package https://www.npmjs.com/package/franc-min?activeTab=readme
  55. de: 'deu',
  56. it: 'ita',
  57. ja: 'jpn',
  58. fr_FR: 'fra',
  59. en_GB: 'eng',
  60. en_US: 'eng',
  61. es: 'spa',
  62. }
  63. // ISO-639-Code 2-digit code for google Translate API https://cloud.google.com/translate/docs/languages
  64. export const languagesISO2 = {
  65. de: 'de',
  66. it: 'it',
  67. ja: 'ja',
  68. fr_FR: 'fr',
  69. en_GB: 'en',
  70. en_US: 'en',
  71. es: 'es',
  72. }
  73. const allLanguages = [];
  74. for (const [key, value] of Object.entries(resources)) {
  75. allLanguages.push({ key, description: value.description });
  76. }
  77. export { allLanguages };
  78. i18n
  79. .use(detector)
  80. .use(initReactI18next) // passes i18n down to react-i18next
  81. .init({
  82. resources,
  83. fallbackLng: "en_GB",
  84. keySeparator: false, // we do not use keys in form messages.welcome
  85. interpolation: {
  86. escapeValue: false // react already saves from xss attacks
  87. }
  88. });
  89. export default i18n;