File extension: .ts
i18n type: QT
This is the format used by the Qt Framework.
Syntax
```
<!DOCTYPE TS>
<TS>
<context>
<name>Additional information for the translator</name>
<message>
<source>Email address</source>
<translation>Email address</translation>
</message>
<message numerus="yes">
<location filename="../transifex/src/core.py" line="512"/>
<source>%s minute</source>
<translation>
<numerusform>%s minute</numerusform><numerusform>%s minutes</numerusform>
</translation>
</message>
</context>
<context>
<name>Additional information for the translator: This appears on the login page</name>
<message>
<source>Please provide your username</source>
<comment>field for username</comment>
<extracomment>Please translate as close to the original as possible</extracomment>
<translation>Please provide your username</translation>
</message>
</context>
</TS>
```
Any text that is included in the
<name></name>
paired tag is handled as context for the translators. This text can be found under the Context tab in the editor as shown below:In case both name and comment are provided, e.g.
then the context field in the editor contains 'name:comment' as shown below:
The value of the filename attribute (e.g.
<location filename="../transifex/src/core.py" line="512"></location>
) is available in the Occurrences field:Any text inside extra comment tags (e.g.
Please translate as close to the original as possible
) is handled as developer notes:
Read more