zonemaster-gui/docs/TranslationGuide.md
2022-06-10 13:27:07 +02:00

6.2 KiB

Translation Guide

This guide gives instructions for how to add a new language to Zonemaster-GUI. The language is assumed to exist in or to be added to Zonemaster-Engine and Zonemaster-Backend.

When updating a language in use, this document could also be used as a checklist for where the changes are done.

You should usually read this document from develop branch to make sure you have the latest version.

Language code

Zonemaster uses ISO 639-1 two-letter language codes, normally in lower case, but in GUI sometimes with first letter in upper case to make the display nicer. GUI is currently available in the following languages with the attached language code:

  • da for Danish language
  • en for English language
  • es for Spanish language
  • fi for Finnish language
  • fr for French language
  • nb for Norwegian language
  • sv for Swedish language

Extracting translatable strings

When adding new translatable strings to the GUI, they need to be added to each LANG.json file. This can be done with the following command:

npm run i18n:extract

This will update each file with the new strings using null as default value. The file will also be automatically sorted and obsolete strings will be removed.

Once updated, it might be required to update the en.json file with the correct translation.

Submitting changes

Below are instructions for how to add or modify files. Preferably, submit the new or updated file as a pull request to Github (see translators guide for Engine). Contact the Zonemaster Group if that does not work.

The translator must always create or update the LANG.json and the gui-faq-LANG.md. The other changes are only done when a language is added and will be completed by the Zonemaster Group.

LANG.json

The JSON structure LANG.json holds all the messages for GUI in respective language, where "LANG" is the language code, e.g. en.json.

The files are located in the src/assets/i18n folder, one file for each supported language.

Each language file contains a hash structure with the English message (default messages) as the key and the translated messages as the value. In a few cases, when the value is long, the key is a KEY_STRING.

When creating a new language file, make a copy of en.json with the new language code instead of en. The code must be in lower case. Then translate the file using English as the model.

gui-faq-LANG.md

The FAQ document holds questions and answers on Zonemaster, and there is one document per language, e.g. gui-faq-en.md.

The files are located in the docs/FAQ folder, one file for each supported language.

When creating a new FAQ file, make a copy of gui-faq-en.md with the new language code instead of en. The code must be in lower case. Then translate the file using English as the model.

It is important to preserve the structure of the file. There must be a table of contents linking to the question plus answer below. The anchor names must be "q1" etc and nothing else. There are links in the code that assume this model, where the <a> tag is just before the heading.

1. [What is Zonemaster?](#q1)

<a name="q1"></a>
#### 1. What is Zonemaster?

Adding a new language

The new language must be added to the following typescript files:

and the following documentation file:

package.json

In package.json locate

"i18n:extract": "ngx-translate-extract ... --output ./src/assets/i18n/{da,en,fi,fr,nb,sv}.json ...

and add the two-letter language code of the new language. Preserve the alphabetical order of the language codes.

common.ts

In common.ts locate

languages: {
  'da': 'Dansk',
  ...
}

and append the new two-letter language code and the corresponding new language name.

Also locate

enabledLanguages: ['da', ...]

and append the new two-letter language code of the new language.

app.config.sample.json

In app.config.sample.json locate

"enabledLanguages": ["da", ...]

and append the new two-letter language code of the new language.

Configuration.md

Add the new language's two-letter code to the list of default values for "enabledLanguages".

Add e2e test script for the language

In FR05.e2e-spec.ts add a new test case in the testSuite array:

const testSuite = [
      ...
      { language: 'New language name', code: 'two-letter code', expected: '`Domain name` translation in the new language' },
      ...
  ];

Change default language

Optionally, to change the default language update src/app/components/navigation/navigation.component.ts.

In navigation.component.ts update the following code

  public lang = 'en';
  private lang_default = 'en';

by setting another language code instead of en in both cases (they should be the same). Such a change must not be submitted to the Zonemaster repository. Instead it should be done in the local installation. Also, it will be overwritten next time Zonemaster GUI is updated.