mirror of
https://git.netzspielplatz.de/docker-multiarch/openwrt-firmware-selector.git
synced 2025-11-09 00:09:35 +00:00
Previously they were stored according to the format
'src/locales/{{lng}}/translation.json'
and after review, they are stored according to the following:
'src/locales/{{lng}}.json'
Also, the english strings are used as the keys/identifier in
translation files to make it easy to understand and implement.
Signed-off-by: Sudhanshu Gautam <me@sudhanshug.com>
36 lines
No EOL
850 B
JavaScript
36 lines
No EOL
850 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
|
|
// detect user language
|
|
// learn more: https://github.com/i18next/i18next-browser-languageDetector
|
|
.use(LanguageDetector)
|
|
// pass the i18n instance to react-i18next.
|
|
.use(initReactI18next)
|
|
// init i18next
|
|
// for all options read: https://www.i18next.com/overview/configuration-options
|
|
.init({
|
|
resources,
|
|
fallbackLng: 'en',
|
|
debug: true,
|
|
|
|
interpolation: {
|
|
escapeValue: false, // not needed for react as it escapes by default
|
|
}
|
|
});
|
|
|
|
|
|
export default i18n; |