Thanks for your interest in helping translating the software!
Before you start working on a translation, look through the open pull requests to see if anyone else is already working on one for your language.
If there's not, then today is your day to lead this effort! Here's how to start:
-
Create a new branch for your translation work e.g.
es
. -
Copy
lang/en-US.json
to your target language file e.g.lang/es-ES.json
and translate all the strings. -
Add your language entry to
nuxt.config.js
.e.g.
i18n: { locales: [ { code: "en", name: "English", iso: "en-US", file: "en-US.json", }, { code: 'es', name: 'Español', iso: 'es-ES', file: 'es-ES.json' } ] }
-
Save & commit changes.
-
Send a pull request. (You may send a pull request before all steps above are complete: e.g., you may want to ask for help with translations, or getting tests to pass. However your pull request will not be merged until all steps above are complete.)
Completing an initial translation of the whole site is a fairly large task. One way to break that task up is to work with other translators through pull requests on your fork. You can also add collaborators to your fork if you'd like to invite other translators to commit directly to your fork and share responsibility for merging pull requests.
If you notice spelling or grammar errors, typos, or opportunities for better phrasing, open a pull request with your suggested fix. If you see a problem that you aren't sure of or don't have time to fix, open an issue.
When tests find broken links, try to fix them across all translations. Ideally, only update the linked URLs, so that translation changes will definitely not be necessary.