Project

General

Profile

Localization » History » Version 11

Hans-Martin Haase, 08/13/2015 09:27 AM
Add table of content and replace section with manual translation with the usage of transifex.

1 11 Hans-Martin Haase
{{toc}}
2
3 1 Detlef Hühnlein
h1. Localization Guide
4
5 3 Tobias Wich
h2. Localization Files
6 1 Detlef Hühnlein
7 3 Tobias Wich
All translation files must be located below the folder @openecard_i18n@ plus a component name. The special file Messages.properties is used to provide translated key value pairs. Completely translated files can have any other name. All files must be encoded as UTF-8.
8
9
All translation files follow the same scheme to identify their language. The language is written in the form of "BCP 47":https://tools.ietf.org/html/bcp47 language tags. However instead of -, _ is used as a separator, which is the common practice. This implementation only supports a subset of the BCP 47 specification, meaning only language and country codes are allowed. The default language, which is English is described by C. The name of the file and its language is separated by _. The file ending is optional for arbitrary files.
10
11
The following examples illustrate the scheme.
12
<pre>Messages_C.properties
13
Messages_de.properties
14
Messages_de_DE.properties
15
anyotherfile_C
16
anyotherfile_C.html</pre>
17
18
The implementation tries to find the key in the requested language, then the default language and if nothing is specified at all, a special string in the form of &lt;No translation for key &lt;requested.key&gt;&gt; is returned. The most specific translation is used first as the following list shows.
19
<pre>openecard_i18n/gui/about_de_DE.html
20
openecard_i18n/gui/about_de.html
21
openecard_i18n/gui/about_C.html</pre>
22
23
24
h2. Issues with Editors
25
26
The Netbeans property editor does not write UTF-8 encoded files, but instead ASCII files with Unicode escape sequences. Until a workaround is provided or the issue is fixed, please use another UTF-8 capable editor. In practice that means any editor except Netbeans.
27
28 1 Detlef Hühnlein
29 11 Hans-Martin Haase
h2. How to translate the Open eCard App?
30 10 Hans-Martin Haase
31 11 Hans-Martin Haase
The Open eCard Project uses the translation service of "Transifex":https://www.transifex.com/ which is an online tool for translations. If you want to contribute a translation for your language and sign up or login on "Transifex":https://www.transifex.com/ an request member ship for your language on the "Open eCard Project page":https://www.transifex.com/detlef.huehnlein/open-ecard/ there. As soon as your are accepted you may start with the translation process.
32 3 Tobias Wich
33 11 Hans-Martin Haase
The usage of the online service has the advantages that you don't have to care about file format and encoding. The translation process is done with the online editor and you may easily save the translation there and it is integrated afterwards, no need to send them via e-mail or commit it into the git repository.