В настоящее время я получаю локаль из браузера пользователя. Теперь пользователь может установить предпочитаемый язык в своем профиле, он сохраняется в базе данных. Я хотел бы получить это значение из базы данных и установить правильный языковой стандарт для i18next
. Я прочитал кое-что о собственной функции обнаружения здесь: https://github.com/i18next/i18next-browser-languageDetector. Но я не совсем уверен, правильно ли это использовать. Мой файл i18n. js в настоящее время настроен так:
import i18n from 'i18next';
import Backend from 'i18next-xhr-backend';
import LanguageDetector from 'i18next-browser-languagedetector';
import { reactI18nextModule } from 'react-i18next';
import moment from 'moment';
export const i18nInit = (callback = () => { }) =>
// for easy overview use: https://devhints.io/moment its better than official docs:
moment.defineLocale('nl-custom', {
parentLocale: 'nl',
longDateFormat: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
L: 'D MMM', // need this format to display dates in past year(s)
LL: 'D MMMM YYYY', // need this format to display dates in the current year
LLL: 'YYYY-MM-DD HH:mm', // need this format as input for the date picker
LLLL: 'dddd D MMMM YYYY HH:mm',
},
}) &&
moment.defineLocale('en-custom', {
parentLocale: 'en',
longDateFormat: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
L: 'MMM D',
LL: 'MMMM D YYYY', // need this format to display dates in the current year
LLL: 'YYYY-MM-DD HH:mm', // need this format as input for the date picker
LLLL: 'MMMM dddd D YYYY HH:mm',
},
}) &&
i18n
// load translation using xhr -> see /public/locales
// learn more: https://github.com/i18next/i18next-xhr-backend
.use(Backend)
// detect user language
// learn more: https://github.com/i18next/i18next-browser-languageDetector
.use(LanguageDetector)
// pass the i18n instance to the react-i18next components.
// Alternative use the I18nextProvider: https://react.i18next.com/components/i18nextprovider
.use(reactI18nextModule)
// init i18next
// for all options read: https://www.i18next.com/overview/configuration-options
.init(
{
fallbackLng: 'en',
ns: ['actionpoints', 'common', 'menu', 'messages', 'overview', 'settings', 'shepherdTour', 'users', 'profile', 'meetingtypes'],
defaultNS: 'common',
whitelist: ['nl', 'en'],
backend: {
// Path where resources get loaded from, or a function
// returning a path:
// function(lngs, namespaces) { return customPath; }
// the returned path will interpolate lng, ns if provided like giving a static path
loadPath: '/locales/{{lng}}/{{ns}}.json',
},
load: 'currentOnly',
debug: false,
interpolation: {
escapeValue: false, // not needed for react as it escapes by default
},
// special options for react-i18next
// learn more: https://react.i18next.com/components/i18next-instance
react: {
wait: true,
},
},
callback
);
export default i18nInit();
Возможно ли добавить сюда функцию, которая выбирает значение языка из базы данных и, если он не установлен, возвращается к локали браузера?