Version at: 04/12/2014, 08:48 vs. version at: 04/12/2014, 08:57
11# Interface Translation
22
33This article explains how you can help us translate the website interface into other languages.
44
55## Accessing the translation platform
66
77We use a platform called **Transifex** to manage the translations of the website. Here's what you have to do in order to join the translators team:
88
991. Go to this page [https://www.transifex.com/projects/p/tatoeba_website/](https://www.transifex.com/projects/p/tatoeba_website/).
10102. If you do not have an account on Transifex: click on "Help translate Tatoeba website" and create your account.
11113. If you do have an account: log in, choose the language(s) in which you would like to translate and apply to be a translator.
12124. You have to wait for your application to be accepted.
1313
1414Once you have been accepted as a translator, here's how you can access the list of strings to translate.
1515
16161. From your dashboard:
1717![How to go to the Transifex translation page 1/3](/media/get/transifex-translate1.png)
1818
19192. Then select the "default.pot" resource:
2020![How to go to the Transifex translation page 2/3](/media/get/transifex-translate2.png)
2121
22223. Select "Untranslated" strings:
2323![How to go to the Transifex translation page 3/3](/media/get/transifex-translate3.png)
2424
2525If you need to learn more about Transifex, you can read their documentation: [http://docs.transifex.com/](http://docs.transifex.com/).
2626
2727## Translating strings
2828
2929A "string" is the basic unit of translatable content. It may contain part of a sentence, one sentence, or more sentences.
30
31### HTML
32All the strings should be encoded in HTML. It means that most of the time, it doesn’t change anything, but you may encounter HTML markup here and there, such as <strong>blah blah blah</strong>. You should keep it as-is and translate the rest.
33
34If you want to use the characters < or > inside a translation, respectively use < or > instead. You can also insert tags to format text according to the typography rules of the language you’re translating to. For instance <em>text</em> will <em>emphasize</em> text, <sup>text</sup> will put text in <sup>superscript</sup>.
3035
3136### Placeholders
3237Some strings include words between brackets like {0} or {user} or even {}. These words act as placeholders and are replaced by actual words when displayed on the website. For instance, in the string "{user}'s sentences", the **{user}** part is replaced by the name of a user, which produces something like "[trang's sentences](http://tatoeba.org/eng/sentences/of_user/trang)". Therefore, when translating such sentences, you must keep every word between brackets as-is inside your translation. We use to have %s as placeholder, but not anymore.
3338
3439### Useful information in the details
3540Each translation has a “More details” link that expands detailed information. A few lines contains useful information.
3641![How to access a translation details](/media/get/transifex_more_details.png)
3742
3843The “Occurrences” line shows you URLs that brings you to the source code. This is primarily used by developers, but you can try to get a grasp of what it’s about. If the link contains “/views/”, it’s possible to get to the page where the string is used by building a URL like as described on the picture.
3944
4045The “Context” line (underlined in red on the picture) is used to distinguish two or more translations that have the same source text. It happens that the same English string can be translated in multiple ways depending on the context, especially if it’s short. Take for instance the word “test”. Is it the verb “to test” as an action on a button, or an exam?
4146
4247## Plural strings
4348
4449Some strings have plurals. This means they have several versions for each plural form of the language you’re translating into, depending on a number usually included in the string (usually {n}). A plural string can be recognized by the additional buttons, showed in red in that picture:
4550
4651![Plural strings and developers notes](/media/get/transifex_plurals_notes.png)
4752
4853The English language always has two forms: singular and plural. The language you’re translating into may have only singular, singular and plural, singular and two of three plurals, etc. So you need to translate each plural form individually by clicking on each plural button.
4954
5055Don’t pay too much attention about how the English formulates singular vs. plural, and think about all the values {n} can take. In particular, many of the English singular forms use the word “one”, like “One sentence” for the singular and “%s sentences” for the plural. We can do that because the English singular form is only used when n = 1. When n = 0 or n > 1, it uses the plural form. French and Brazilian Portuguese use singular when n = 0 or n = 1, and plural when n > 1. Thus, these language can’t use “one” for the singular, they must use {n} for both singular and plural. You can find a [complete list of all the plural formulas](http://localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html) to verify your language’s.
5156
5257### Developers notes
5358As highlighted in red in the above picture, developers may add notes to give hints to translators. If you find a particular string to be difficult to understand, please tell us and we’ll add comments like this for other translators.
5459
5560### Declensions
5661When you include a string into another, you may run into declensions problems. English [has very few declensions](https://en.wikipedia.org/wiki/Declension#Modern_English) but the language you’re translating to may have more.
5762
5863To illustrate the problem, let’s take the singular and plural in English, which is actually a declension. We translate English into English. Consider the strings:
5964
6065* I have a {thing}.
6166* We need more {thing}.
6267
6368The placeholder {thing} get its value from a translatable string: “book” (translated to “book”). So we end up with:
6469
6570* I have a book.
6671* We need more book.
6772
6873There is obviously a problem with the second sentence. Enters the sublisting feature. If you know that {thing} get its value from another translatable string, you can enter several values for that string, like this:
6974
7075* original string: book
7176* translated string: **; singular: book; plural: books**
7277
7378It’s a list of key/value pairs separated by semicolons. The name of the keys are free (they can contain any character except : and ;). Any translated string that starts with a semicolon is considered as a sublist. From now on, you can pick a single value from the list, like this:
7479
7580* original sentence: I have a {thing}.
7681* translated sentence: I have a {thing.singular}.
7782
7883And for the second string:
7984
8085* original sentence: We need more {thing}.
8186* translated sentence: We need more {thing.plural}.
8287
8388The {thing.key} syntax is rather comprehensive. If it cannot find the key, or you use {thing} with a sublist, it fallbacks on the the first item of the sublist. Thus, you want to set a safe default as the first value of your sublists.
8489
8590In Tatoeba, this feature can be used with language names if they decline. Enter a sublist for every language name, and then use {language.declension_foo} wherever a language name is used inside a string. When language names are not used within a translatable string, i.e. for text inside dropdown lists, flag mouseover etc., you can decline by translating the special “{language}” string. If you want to see a working example of language name declensions, check the French translation.
8691
8792## Checking how your translation renders online
8893
8994If you know the page your translated string is supposed to appear, you can check how it renders by going to the [development website](http://dev.tatoeba.org/). Translations are automatically pulled from Transifex and installed there every ten minutes.
diff view generated by jsdifflib

Version at: 04/12/2014, 08:48

# Interface Translation

This article explains how you can help us translate the website interface into other languages.

## Accessing the translation platform

We use a platform called **Transifex** to manage the translations of the website. Here's what you have to do in order to join the translators team:

1. Go to this page [https://www.transifex.com/projects/p/tatoeba_website/](https://www.transifex.com/projects/p/tatoeba_website/).
2. If you do not have an account on Transifex: click on "Help translate Tatoeba website" and create your account.
3. If you do have an account: log in, choose the language(s) in which you would like to translate and apply to be a translator.
4. You have to wait for your application to be accepted.

Once you have been accepted as a translator, here's how you can access the list of strings to translate.

1. From your dashboard:
![How to go to the Transifex translation page 1/3](/media/get/transifex-translate1.png)

2. Then select the "default.pot" resource:
![How to go to the Transifex translation page 2/3](/media/get/transifex-translate2.png)

3. Select "Untranslated" strings:
![How to go to the Transifex translation page 3/3](/media/get/transifex-translate3.png)

If you need to learn more about Transifex, you can read their documentation: [http://docs.transifex.com/](http://docs.transifex.com/).

## Translating strings

A "string" is the basic unit of translatable content. It may contain part of a sentence, one sentence, or more sentences.

### Placeholders
Some strings include words between brackets like {0} or {user} or even {}. These words act as placeholders and are replaced by actual words when displayed on the website. For instance, in the string "{user}'s sentences", the **{user}** part is replaced by the name of a user, which produces something like "[trang's sentences](http://tatoeba.org/eng/sentences/of_user/trang)". Therefore, when translating such sentences, you must keep every word between brackets as-is inside your translation. We use to have %s as placeholder, but not anymore.

### Useful information in the details
Each translation has a “More details” link that expands detailed information. A few lines contains useful information.
![How to access a translation details](/media/get/transifex_more_details.png)

The “Occurrences” line shows you URLs that brings you to the source code. This is primarily used by developers, but you can try to get a grasp of what it’s about. If the link contains “/views/”, it’s possible to get to the page where the string is used by building a URL like as described on the picture.

The “Context” line (underlined in red on the picture) is used to distinguish two or more translations that have the same source text. It happens that the same English string can be translated in multiple ways depending on the context, especially if it’s short. Take for instance the word “test”. Is it the verb “to test” as an action on a button, or an exam?

## Plural strings

Some strings have plurals. This means they have several versions for each plural form of the language you’re translating into, depending on a number usually included in the string (usually {n}). A plural string can be recognized by the additional buttons, showed in red in that picture:

![Plural strings and developers notes](/media/get/transifex_plurals_notes.png)

The English language always has two forms: singular and plural. The language you’re translating into may have only singular, singular and plural, singular and two of three plurals, etc. So you need to translate each plural form individually by clicking on each plural button.

Don’t pay too much attention about how the English formulates singular vs. plural, and think about all the values {n} can take. In particular, many of the English singular forms use the word “one”, like “One sentence” for the singular and “%s sentences” for the plural. We can do that because the English singular form is only used when n = 1. When n = 0 or n > 1, it uses the plural form. French and Brazilian Portuguese use singular when n = 0 or n = 1, and plural when n > 1. Thus, these language can’t use “one” for the singular, they must use {n} for both singular and plural. You can find a [complete list of all the plural formulas](http://localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html) to verify your language’s.

### Developers notes
As highlighted in red in the above picture, developers may add notes to give hints to translators. If you find a particular string to be difficult to understand, please tell us and we’ll add comments like this for other translators.

### Declensions
When you include a string into another, you may run into declensions problems. English [has very few declensions](https://en.wikipedia.org/wiki/Declension#Modern_English) but the language you’re translating to may have more.

To illustrate the problem, let’s take the singular and plural in English, which is actually a declension. We translate English into English. Consider the strings:

* I have a {thing}.
* We need more {thing}.

The placeholder {thing} get its value from a translatable string: “book” (translated to “book”). So we end up with:

* I have a book.
* We need more book.

There is obviously a problem with the second sentence. Enters the sublisting feature. If you know that {thing} get its value from another translatable string, you can enter several values for that string, like this:

* original string: book
* translated string: **; singular: book; plural: books**

It’s a list of key/value pairs separated by semicolons. The name of the keys are free (they can contain any character except : and ;). Any translated string that starts with a semicolon is considered as a sublist. From now on, you can pick a single value from the list, like this:

* original sentence: I have a {thing}.
* translated sentence: I have a {thing.singular}.

And for the second string:

* original sentence: We need more {thing}.
* translated sentence: We need more {thing.plural}.

The {thing.key} syntax is rather comprehensive. If it cannot find the key, or you use {thing} with a sublist, it fallbacks on the the first item of the sublist. Thus, you want to set a safe default as the first value of your sublists.

In Tatoeba, this feature can be used with language names if they decline. Enter a sublist for every language name, and then use {language.declension_foo} wherever a language name is used inside a string. When language names are not used within a translatable string, i.e. for text inside dropdown lists, flag mouseover etc., you can decline by translating the special “{language}” string. If you want to see a working example of language name declensions, check the French translation.

## Checking how your translation renders online

If you know the page your translated string is supposed to appear, you can check how it renders by going to the [development website](http://dev.tatoeba.org/). Translations are automatically pulled from Transifex and installed there every ten minutes.

version at: 04/12/2014, 08:57

# Interface Translation

This article explains how you can help us translate the website interface into other languages.

## Accessing the translation platform

We use a platform called **Transifex** to manage the translations of the website. Here's what you have to do in order to join the translators team:

1. Go to this page [https://www.transifex.com/projects/p/tatoeba_website/](https://www.transifex.com/projects/p/tatoeba_website/).
2. If you do not have an account on Transifex: click on "Help translate Tatoeba website" and create your account.
3. If you do have an account: log in, choose the language(s) in which you would like to translate and apply to be a translator.
4. You have to wait for your application to be accepted.

Once you have been accepted as a translator, here's how you can access the list of strings to translate.

1. From your dashboard:
![How to go to the Transifex translation page 1/3](/media/get/transifex-translate1.png)

2. Then select the "default.pot" resource:
![How to go to the Transifex translation page 2/3](/media/get/transifex-translate2.png)

3. Select "Untranslated" strings:
![How to go to the Transifex translation page 3/3](/media/get/transifex-translate3.png)

If you need to learn more about Transifex, you can read their documentation: [http://docs.transifex.com/](http://docs.transifex.com/).

## Translating strings

A "string" is the basic unit of translatable content. It may contain part of a sentence, one sentence, or more sentences.

### HTML
All the strings should be encoded in HTML. It means that most of the time, it doesn’t change anything, but you may encounter HTML markup here and there, such as <strong>blah blah blah</strong>. You should keep it as-is and translate the rest.

If you want to use the characters &lt; or &gt; inside a translation, respectively use &amp;lt; or &amp;gt; instead. You can also insert tags to format text according to the typography rules of the language you’re translating to. For instance &lt;em&gt;text&lt;/em&gt; will <em>emphasize</em> text, &lt;sup&gt;text&lt;/sup&gt; will put text in <sup>superscript</sup>.

### Placeholders
Some strings include words between brackets like {0} or {user} or even {}. These words act as placeholders and are replaced by actual words when displayed on the website. For instance, in the string "{user}'s sentences", the **{user}** part is replaced by the name of a user, which produces something like "[trang's sentences](http://tatoeba.org/eng/sentences/of_user/trang)". Therefore, when translating such sentences, you must keep every word between brackets as-is inside your translation. We use to have %s as placeholder, but not anymore.

### Useful information in the details
Each translation has a “More details” link that expands detailed information. A few lines contains useful information.
![How to access a translation details](/media/get/transifex_more_details.png)

The “Occurrences” line shows you URLs that brings you to the source code. This is primarily used by developers, but you can try to get a grasp of what it’s about. If the link contains “/views/”, it’s possible to get to the page where the string is used by building a URL like as described on the picture.

The “Context” line (underlined in red on the picture) is used to distinguish two or more translations that have the same source text. It happens that the same English string can be translated in multiple ways depending on the context, especially if it’s short. Take for instance the word “test”. Is it the verb “to test” as an action on a button, or an exam?

## Plural strings

Some strings have plurals. This means they have several versions for each plural form of the language you’re translating into, depending on a number usually included in the string (usually {n}). A plural string can be recognized by the additional buttons, showed in red in that picture:

![Plural strings and developers notes](/media/get/transifex_plurals_notes.png)

The English language always has two forms: singular and plural. The language you’re translating into may have only singular, singular and plural, singular and two of three plurals, etc. So you need to translate each plural form individually by clicking on each plural button.

Don’t pay too much attention about how the English formulates singular vs. plural, and think about all the values {n} can take. In particular, many of the English singular forms use the word “one”, like “One sentence” for the singular and “%s sentences” for the plural. We can do that because the English singular form is only used when n = 1. When n = 0 or n > 1, it uses the plural form. French and Brazilian Portuguese use singular when n = 0 or n = 1, and plural when n > 1. Thus, these language can’t use “one” for the singular, they must use {n} for both singular and plural. You can find a [complete list of all the plural formulas](http://localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html) to verify your language’s.

### Developers notes
As highlighted in red in the above picture, developers may add notes to give hints to translators. If you find a particular string to be difficult to understand, please tell us and we’ll add comments like this for other translators.

### Declensions
When you include a string into another, you may run into declensions problems. English [has very few declensions](https://en.wikipedia.org/wiki/Declension#Modern_English) but the language you’re translating to may have more.

To illustrate the problem, let’s take the singular and plural in English, which is actually a declension. We translate English into English. Consider the strings:

* I have a {thing}.
* We need more {thing}.

The placeholder {thing} get its value from a translatable string: “book” (translated to “book”). So we end up with:

* I have a book.
* We need more book.

There is obviously a problem with the second sentence. Enters the sublisting feature. If you know that {thing} get its value from another translatable string, you can enter several values for that string, like this:

* original string: book
* translated string: **; singular: book; plural: books**

It’s a list of key/value pairs separated by semicolons. The name of the keys are free (they can contain any character except : and ;). Any translated string that starts with a semicolon is considered as a sublist. From now on, you can pick a single value from the list, like this:

* original sentence: I have a {thing}.
* translated sentence: I have a {thing.singular}.

And for the second string:

* original sentence: We need more {thing}.
* translated sentence: We need more {thing.plural}.

The {thing.key} syntax is rather comprehensive. If it cannot find the key, or you use {thing} with a sublist, it fallbacks on the the first item of the sublist. Thus, you want to set a safe default as the first value of your sublists.

In Tatoeba, this feature can be used with language names if they decline. Enter a sublist for every language name, and then use {language.declension_foo} wherever a language name is used inside a string. When language names are not used within a translatable string, i.e. for text inside dropdown lists, flag mouseover etc., you can decline by translating the special “{language}” string. If you want to see a working example of language name declensions, check the French translation.

## Checking how your translation renders online

If you know the page your translated string is supposed to appear, you can check how it renders by going to the [development website](http://dev.tatoeba.org/). Translations are automatically pulled from Transifex and installed there every ten minutes.

Note

The lines in green are the lines that have been added in the new version. The lines in red are those that have been removed.