QT Linguist
*Extension | .ts |
Smartling Identifier | qt |
Example File | |
Resources | QT Linguist Docs |
Smartling natively supports the plural forms of QT Linguist files.
Directives
Format
<!-- smartling.[directive_name] = [value] --> |
entity_escaping
Exact delivery depends on file type.
Values |
auto (default) |
Description | Can control whether or not characters will be "escaped" into entities when delivering translations. This can be set universally for the whole file via API, or by setting the directive at the top/start of the file. The directive can also be placed inline to control the behavior of specific strings. |
Examples |
To use inline: String: |
For example, your translation might look like this:Smartling HTML escaping < > & " example string4
By default, using the "auto" setting, we would assume this is HTML from the <hr>
tag and it would be converted to:Smartling HTML escaping < > & " example string4
Using smartling.entity_escaping = false
would allow Smartling HTML escaping < > & " example string4
to appear as it should.