@@ -127,7 +127,7 @@ different formats, XLIFF being the recommended format:
127127
128128 .. code-block :: xml
129129
130- <!-- messages.fr.xliff -->
130+ <!-- messages.fr.xlf -->
131131 <?xml version =" 1.0" ?>
132132 <xliff version =" 1.2" xmlns =" urn:oasis:names:tc:xliff:document:1.2" >
133133 <file source-language =" en" datatype =" plaintext" original =" file.ext" >
@@ -356,18 +356,18 @@ must be named according to the following path: ``domain.locale.loader``:
356356
357357* **locale **: The locale that the translations are for (e.g. ``en_GB ``, ``en ``, etc);
358358
359- * **loader **: How Symfony should load and parse the file (e.g. ``xliff ``,
359+ * **loader **: How Symfony should load and parse the file (e.g. ``xlf ``,
360360 ``php ``, ``yml ``, etc).
361361
362362The loader can be the name of any registered loader. By default, Symfony
363363provides many loaders, including:
364364
365- * ``xliff ``: XLIFF file;
365+ * ``xlf ``: XLIFF file;
366366* ``php ``: PHP file;
367367* ``yml ``: YAML file.
368368
369369The choice of which loader to use is entirely up to you and is a matter of
370- taste. The recommended option is to use ``xliff `` for translations.
370+ taste. The recommended option is to use ``xlf `` for translations.
371371For more options, see :ref: `component-translator-message-catalogs `.
372372
373373.. note ::
@@ -397,10 +397,10 @@ key ``Symfony is great``. To find the French translation, Symfony actually
397397checks translation resources for several locales:
398398
399399#. First, Symfony looks for the translation in a ``fr_FR `` translation resource
400- (e.g. ``messages.fr_FR.xliff ``);
400+ (e.g. ``messages.fr_FR.xlf ``);
401401
402402#. If it wasn't found, Symfony looks for the translation in a ``fr `` translation
403- resource (e.g. ``messages.fr.xliff ``);
403+ resource (e.g. ``messages.fr.xlf ``);
404404
405405#. If the translation still isn't found, Symfony uses the ``fallbacks `` configuration
406406 parameter, which defaults to ``en `` (see `Configuration `_).
@@ -662,7 +662,7 @@ bundle.
662662
663663 .. code-block :: xml
664664
665- <!-- validators.en.xliff -->
665+ <!-- validators.en.xlf -->
666666 <?xml version =" 1.0" ?>
667667 <xliff version =" 1.2" xmlns =" urn:oasis:names:tc:xliff:document:1.2" >
668668 <file source-language =" en" datatype =" plaintext" original =" file.ext" >
0 commit comments