Skip to content

Latest commit

History

History
56 lines (33 loc) 路 1.43 KB

TRANSLATION.md

File metadata and controls

56 lines (33 loc) 路 1.43 KB

Translation Contributing

How

We use docusaurus to build our document. See Docusaurus I18n Guide

Add a new language (Optional)

Add dropdown item in navbar

Open site config: /website/docusaurus.config.js. Add new language in i18n.locales.

Initialize language folder

In /website

npm run write-translations -- --locale <language>

This will create the preset files by docusaurus in /website/i18n/<language>.

Translate

Start the site

In /website

npm run start -- --locale <language>

Note

  • Each locale is a distinct standalone single-page application: it is not possible to start the Docusaurus sites in all locales at the same time.
  • The static files may not be shown. Don't worry about that. It works fine in production.

Homepage

Modify /website/i18n/<language>/code.json where id start with home.

Footer and navbar

Modify files in /website/i18n/<language>/docusaurus-theme-classic

Docs

Note The examples and contributing docs are automatically generated by script so they don't need to be translated.

  1. Modify /website/i18n/<language>/docusaurus-plugin-content-docs/current.json for directory title.
  2. Copy your docs Markdown files from docs/ to /website/i18n/<language>/docusaurus-plugin-content-docs/current, and translate them.

Blog

No translation needed for now :P