Skip to content

Latest commit

History

History
104 lines (74 loc) 路 4.91 KB

TRANSLATIONS.md

File metadata and controls

104 lines (74 loc) 路 4.91 KB

Translations

Adding and updating translations is easy!

  1. Change the translation file you want, e.g. strings.txt (raw text version)
  2. Commit your changes
  3. Send a pull request!

Please prepend [strings] to your commit message and add Developers Certificate of Origin to it.

Then run a tools/unix/generate_localizations.sh script and add the changes as a separate [strings] Regenerated commit. But if you can't run it - don't worry, its not mandatory!

Requirements

To run the tools/unix/generate_localizations.sh script, it is necessary to have installed ruby.

Translation files

Main:

Additional:

Language codes used are from ISO 639-1 standard. If a string is not translated into a particular language then it falls back to English or a "parent" language (e.g. es-MX falls back to es).

Tools

To find strings without translations substitute ar with your language code and run the following script:

tools/python/strings_utils.py -l ar -pm

By default, it searches strings.txt, to check types_strings.txt add a -t option. There are many more other options, e.g. print various translation statistics, validate and re-format translation files. Check tools/python/strings_utils.py -h to see all of them.

To check consistency of types_strings.txt with categories.txt run:

ruby tools/ruby/category_consistency/check_consistency.rb

Automatic translations

In some cases automatically translated strings are better than no translation at all. There are two scripts to automate given string's translation into multiple languages. Please install Translate Shell first to be able to run them.

DeepL + Google Translate fallback

The first one uses free DeepL API where possible and provides a significantly better quality translations. It requires registering a DeepL account and getting API key. You may be asked for a credit card for verification, but it won't be charged. Requires Python version >= 3.7.

export DEEPL_FREE_API_KEY=<your DeepL API key here>
# Generates translations in both categories.txt and strings.txt formats at the same time:
tools/python/translate.py English text to translate here
# Use two-letter language codes with a colon for a non-English source language:
tools/python/translate.py de:German text to translate here

Google Translate only

The second one is not recommended, it uses Google API and sometimes translations are incorrect. Also it does not support European Portuguese (pt or pt-PT), and always generates Brazil Portuguese.

# Generates translations in categories.txt format
tools/unix/translate_categories.sh "Route"
# Translations in strings.txt format
DELIM=" = " tools/unix/translate_categories.sh "Route"

Technical details

Most of the translation files (strings, types_strings...) are in Twine file format (syntax reference). OM uses a custom version of the Twine tool (resides in tools/twine/ submodule) to generate platform-native (Android, iOS) localization files from a single translation file.

The tools/unix/generate_localizations.sh script launches this conversion (and installs Twine beforehand if necessary).

Search keywords translation files use a custom format described in the beginning of data/categories.txt.

A tools/python/clean_strings_txt.py script is used to sync strings.txt with real UI strings usage as found in the codebase.

There are preliminary plans to refactor translations workflow and migrate to Weblate.