我在根据路径检测语言时遇到问题,即http://localhost:3000/en或http://localhost:3000/en/subpage应该将我的页面翻译成英语。 我可以通过单击按钮进行翻译并调用i18n.changeLanguage('en'),但检测器似乎无法正常工作。
import i18n from "i18next";
import { reactI18nextModule } from "react-i18next";
import LngDetector from "i18next-browser-languagedetector";
import backend from "i18next-xhr-backend";
const detectionOptions = {
order: ['path', 'cookie', 'navigator', 'localStorage', 'subdomain', 'queryString', 'htmlTag'],
lookupFromPathIndex: 0
}
i18n
.use(LngDetector)
.use(backend)
.use(reactI18nextModule) // passes i18n down to react-i18next
.init({
ns: ['translation', 'main'],
defaultNS: 'translation',
lng: "pl",
fallbackLng: 'pl',
detection: detectionOptions,
keySeparator: false, // we do not use keys in form messages.welcome
interpolation: {
escapeValue: false // react already safes from xss
},
debug: true,
react: {
wait: true
}
}, (err, t) => {
if (err)
console.error(err)
});
export default i18n;
答案 0 :(得分:0)
解决方案:使用语言检测器时,不应将i18n.lng属性设置为
答案 1 :(得分:0)
我仍然对i18next-browser-languagedetector的命令选项感到麻烦。同时启用queryString和路径optoin时,它将无法正常工作。它将始终读取路径,并忽略查询部分。
我的代码如下所示。但是我想这是一个插件问题? 从“ i18next”导入i18next; 从“ i18next-browser-languagedetector”导入LanguageDetector;
const detectionOptions = {
order: ["queryString", "path", "cookie"],
lookupFromPathIndex: 0,
lookupQuerystring: "lng",
lookupCookie: "meine_nanny_i18next",
};
i18next.use(LanguageDetector).init({
fallbackLng: "de",
resources: {
de: {
common: require("../locales/de/common.json"),
},
en: {
common: require("../locales/en/common.json"),
},
},
ns: ["common"],
defaultNS: "common",
detection: detectionOptions,
returnObjects: true,
debug: process.env.NODE_ENV === "development",
interpolation: {
escapeValue: false, // not needed for react!!
},
react: {
wait: true,
},
});
i18next.languages = ["de", "en"];
export default i18next;
答案 2 :(得分:0)
希望这对以后的人有所帮助。该文档并没有完全为您提供有关如何设置检测的全部信息,然后我发现一个closed Github issue,那里有几个人在问一个合理的问题,维护人员的回答有些粗鲁,但也碰巧提供应该在文档中的link。通过对当前文档的说明进行一些细微调整,它解决了我的问题。
然后,我可以使用https:www.domain.com?lng=es
在我的网址中进行语言检测,并且可以使用浏览器扩展程序来更改浏览器语言。
这里有我的i18n.ts
工作文件:
import i18n from 'i18next'
import LanguageDetector from 'i18next-browser-languagedetector'
import { initReactI18next } from 'react-i18next'
import XHR from "i18next-http-backend" // <---- add this
import commonDe from './locales/de/common.json'
import commonEn from './locales/en/common.json'
import commonEs from './locales/es/common.json'
import commonFr from './locales/fr/common.json'
const resources = {
de: { common: commonDe },
en: { common: commonEn },
es: { common: commonEs },
fr: { common: commonFr }
}
const options = {
order: ['querystring', 'navigator'],
lookupQuerystring: 'lng'
}
i18n
.use(XHR) // <---- add this
.use(LanguageDetector)
.use(initReactI18next)
.init({
// lng: 'en' // <--- turn off for detection to work
detection: options,
resources,
ns: ['common'],
defaultNS: 'common',
fallbackLng: 'en',
supportedLngs: ['de', 'en', 'es', 'fr'],
interpolation: {
escapeValue: false,
},
debug: false,
})
export default i18n
(额外的帮助-如果有人在此部分卡住)
我正在一个Next.js项目中,并且上面的文件像这样被加载到project-root/pages/_app.tsx
文件中:
import React from 'react'
import { AppProps } from 'next/app'
import '../i18n/i18n'
import '../public/styles.css'
const TacoFridayApp = ({ Component, pageProps}: AppProps): JSX.Element => {
return <Component {...pageProps} />
}
export default TacoFridayApp