6.1.2 Docusaurus国际化

写在前面:本文以openfde-doc项目为例,介绍和记录将docusaurus网站国际化的过程。

1、在配置文件docusaurus.config.js中添加中文语言

i18n: {     defaultLocale: 'en',     locales: ['en','zh-CN'],   },

2、在导航栏添加多语言选项(docusaurus.config.js)

{     type: 'localeDropdown',     position: 'left',       persistLocale: true, }

3、翻译网站首页(src/pages/index.js)

image-20240220-023506.png

4、初始化i18n文件夹

npm run write-translations -- --locale zh-CN

5、把未翻译的md文件复制到简体中文文件夹中

6、启动简体中文站点,并查看翻译