mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 22:27:26 +00:00
d5d0e1036b
* docs: add docs * ignore dumi theme test * fix: error TS2717: Subsequent property declarations must have the same type. * update docs * deploy gh-pages * plugins docs * hash & cname * exportStatic * ssr * vercel * vercel * fix: deploy vercel * Delete vercel.json * docs * fix APP_DIST * on master branch
569 B
569 B
title |
---|
Locales - 国际化 |
Locales - 国际化 未实现
NocoBase 采用 formatjs 来处理国际化问题。
直接写在代码里,详情参考 formatjs 用例,NocoBase 会封装一个更易用的 __
函数来处理国际化,如:
__('Hello, {name}');
在配置里有两种写法:
模板字符串:
{
name: `{{ __('Hello, {name}') }}`
}
json 格式:
{
name: {
'zh-CN': '{name},您好',
'en-US': 'Hello, {name}',
},
}