mirror of
https://git.netzspielplatz.de/docker-multiarch/openwrt-firmware-selector.git
synced 2025-11-08 22:09:25 +00:00
ESLint is used with the standard react plugin. It detects all kinds of issues ranging from misspells, indentation, variable-naming, etc. A pre-commit hook is added to git. Prior commiting, ESlint will run to validate that everything is OK and the user will have the option to fix it. Signed-off-by: Sudhanshu Gautam <me@sudhanshug.com>
27 lines
598 B
JavaScript
27 lines
598 B
JavaScript
import i18n from 'i18next';
|
|
import {initReactI18next} from 'react-i18next';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
import translationEN from './locales/en.json';
|
|
import translationDE from './locales/de.json';
|
|
|
|
const resources = {
|
|
en: {
|
|
translation: translationEN,
|
|
},
|
|
de: {
|
|
translation: translationDE,
|
|
},
|
|
};
|
|
|
|
i18n.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
resources,
|
|
fallbackLng: 'en',
|
|
debug: true,
|
|
interpolation: {
|
|
escapeValue: false, // not needed for react as it escapes by default
|
|
},
|
|
});
|
|
|
|
export default i18n;
|