From 3a3baddad1c801d77dc398d2c6980f3c14f4a47c Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sat, 30 Oct 2021 22:11:00 +0200 Subject: chore: move htdocs to repo root --- htdocs/src/js/i18n/i18n.js | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 htdocs/src/js/i18n/i18n.js (limited to 'htdocs/src/js/i18n/i18n.js') diff --git a/htdocs/src/js/i18n/i18n.js b/htdocs/src/js/i18n/i18n.js deleted file mode 100644 index 6bdc7cd..0000000 --- a/htdocs/src/js/i18n/i18n.js +++ /dev/null @@ -1,42 +0,0 @@ -import I18n from 'i18n-js'; -import en from './locales/en'; -import fr from './locales/fr'; - -const supportedLanguages = [ - { - code: 'en', - label: 'English', - translations: en, - }, - { - code: 'fr', - label: 'Français', - translations: fr, - }, -]; - -supportedLanguages.forEach((locale) => { - I18n.translations[locale.code] = locale.translations; -}); - -function setLocale(locale) { - I18n.locale = locale; -} - -function currentLocale() { - return I18n.currentLocale(); -} - -function translate(name, params = {}) { - return I18n.t(name, params); -} - -const { defaultLocale } = I18n; - -export { - supportedLanguages, - setLocale, - translate, - defaultLocale, - currentLocale, -}; -- cgit v1.2.3