目录1. 安装依赖2. 在src下创建i18n文件夹2.1 common下的zh-CN.js2.2 common下的en-US.js2.3 在common的index.js文件中引入
npm i i18next React-i18next i18next-browser-languagedetector
{
"common": {
"personSetting": "个人设置",
"modifyPassWord": "修改密码",
"currentTime": '当前时间是 {{time}}',
}
}
{
"common": {
"personSetting": "Personal settings",
"modifyPassword": "change Password",
"currentTime": 'Current time is {{time}}',
}
}
import en_common from './en-US/translation.JSON'
import zh_common from './zh-CN/translation.json'
export const lanGCommon = { en_common, zh_common }
import { langCommon } from './locales/common' //公共需要翻译的内容
// 把所有的翻译资源集合
const resources = {
en: {
translation: {
...langCommon.en_common
},
},
zh: {
translation: {
...langCommon.zh_common
},
}
}
export { resources }
export function initLangage() {
let lang = localStorage.getItem('language') || navigator.language // 获取浏览器的语言环境,兼容IE的写法
if (lang) {
lang = lang.substr(0, 2).toLowerCase() // 截取前两位字符,并转化为小写
return lang
} else {
return 'en'
}
}
import i18n from 'i18next'
import { initReactI18next } from 'react-i18next'
import LanguageDetector from 'i18next-browser-languagedetector';
import { resources } from '@/i18n/resources'
import { initLangage } from '@/utils'
i18n
// 检测用户当前使用的语言
// 文档: https://GitHub.com/i18next/i18next-browser-languageDetector
.use(LanguageDetector)
// 注入 react-i18next 实例
.use(initReactI18next)
// 初始化 i18next
// 配置参数的文档: Https://www.i18next.com/overview/configuration-options
.init({
resources, //资源初始化
lng: initLangage(),
interpolation: {
escapeValue: false, // react already safes from xss
},
react: {
useSuspense: false, // this will do the magic
},
debug: false,
})
export default i18n
import './i18n/i18n'
import { useTranslation } from 'react-i18next';
const SafetyManage: React.FC = (): React.ReactElement => {
const { t } = useTranslation();
return (
<div >
<Button
type="primary"
>
{t('common.personnalSetting')}
</Button>,
<Button
>
{t('common.modifyPassword')}
</Button>,
<p>
{t('common.currentTime', { time: dayjs().fORMat('MM/DD/YYYY') })}
</p>
</div>
);
}
export default App;
useTranslation 返回的对象包含一个 t 方法,这个方法可以翻译文本。
i18next 提供了插值的用法: 在 t 函数中传递第二个参数,它是一个对象。
参考文章:https://www.zadmei.com/qdizjsjz.html
到此这篇关于在 React 中使用 i18next的文章就介绍到这了,更多相关React 使用 i18next内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: 在 React 中使用 i18next的示例
本文链接: https://lsjlt.com/news/177009.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0