Translate
Here's how to help translate William278.net (this site) into different languages. The site files are located on GitHub. To get started, clone the site
- Example:
git clone https://github.com/WiIIiam278/flesh.git
Please note "joke" language translations are not accepted. English text on this site can be in either British/American English (I still accept PRs for typo corrections in English of course!).
Site locales
Interface locales can be found in locales/en.json
. To create new locales for a language:
- Create an interface locale file for the language code (copy
en.json
to get started)- Example:
locales/zh-cn.json
- Example:
- Add a locale key to all existing files containing the language name
- Example:
"language-zh-cn": "汉语"
- Example:
- Add the locale to the
locales
section ofnuxt.config.js
- Example:
{ code: 'zh-cn', iso: 'zh-cn', file: 'locales/zh-cn.json', dir: 'ltr' },
- Example:
Then submit a pull request!