.. include:: /Includes.rst.txt .. _xliff: Introduction to XLIFF --------------------- The `XML Localisation Interchange File Format `_ (or XLIFF) is an `OASIS-blessed `_ standard format for translations. .. note:: In a nutshell an XLIFF document contains one or more :code:`` elements. Each file element usually corresponds to a source (file or database table) and contains the source of the localizable data. Once translated, the corresponding localized data for one, and only one, locale is added. Localizable data are stored in :code:`` elements. The :code:`` contains a :code:`` element to store the source text and a (non-mandatory) :code:`` element to store the translated text. Note that having several :code:`` elements in the same XLIFF document is not supported by the TYPO3 CMS Core. .. _xliff-basics: Basics ^^^^^^ Here is a sample XLIFF file: .. code-block:: xml
The default Header Comment. The "Generator" Meta Tag. The translated file is very similar. If the original file was named :file:`locallang.xlf`, the translated file for German (code "de") will be named :file:`de.locallang.xlf`. Inside the file itself, a :code:`` attribute is added in the :code:`` tag to indicate the translation language ("de" in our example). Then for each :code:`` tag there's a sibling :code:`` tag containing the translated string. Here is what the translation of our sample file could look like: .. code-block:: xml
The default Header Comment. Der Standard-Header-Kommentar. The "Generator" Meta Tag. Der "Generator"-Meta-Tag. Contrary to "locallang XML" files, only one language can be stored per file. Each translation in a different language goes to an additional file. .. _xliff-files: File locations and naming ^^^^^^^^^^^^^^^^^^^^^^^^^ The files follow the same naming conventions as the "locallang XML" files, except they use extension "xlf" instead of "xml". In the TYPO3 Core, XLIFF files are located in the various system extensions as needed. The system extension "lang" provides several general purpose files plus the classes related to the localization API. In Extbase-based extensions, XLIFF files are expected to be located in :file:`Resources/Private/Language`. The main file (:file:`locallang.xlf`) will be loaded automatically and available in the controller and Fluid views without further work needed. Other files will need to be referred to explicitly. As mentioned above, the translation files follow the same naming conventions, but are prepended with the language code and a dot. They are stored alongside the default language files.