Description
The default parser that can read correctly XLIFF is based on OKAPI filters for XLIFF.
Here is how to localize this file type.
It is important to name your file .xliff in order to use the correct parser.
File structure
<?xml version="1.0" ?>
<xliff version="1.0">
<file original="global" source-language="en" datatype="plaintext">
<body>
<trans-unit id="Welcome %name%">
<source xml:lang="en">Welcome %name%</source>
</trans-unit>
<trans-unit id="SecondID">
<source>myString is the here</source>
</trans-unit>
</body>
</file>
</xliff>
Encoding
As XLIFF is an xml file it is important that the file encoding is UTF-8 so you can work with the all the languages
Ah yes, necily put, everyone.