Fix bug in style changes for the Use cases on the live site.
[yaffs-website] / vendor / symfony / translation / CHANGELOG.md
1 CHANGELOG
2 =========
3
4 2.8.0
5 -----
6
7  * deprecated FileDumper::format(), overwrite FileDumper::formatCatalogue() instead.
8  * deprecated Translator::getMessages(), rely on TranslatorBagInterface::getCatalogue() instead.
9  * added `FileDumper::formatCatalogue` which allows format the catalogue without dumping it into file.
10  * added option `json_encoding` to JsonFileDumper
11  * added options `as_tree`, `inline` to YamlFileDumper
12  * added support for XLIFF 2.0.
13  * added support for XLIFF target and tool attributes.
14  * added message parameters to DataCollectorTranslator.
15  * [DEPRECATION] The `DiffOperation` class has been deprecated and
16    will be removed in Symfony 3.0, since its operation has nothing to do with 'diff',
17    so the class name is misleading. The `TargetOperation` class should be used for
18    this use-case instead.
19
20 2.7.0
21 -----
22
23  * added DataCollectorTranslator for collecting the translated messages.
24
25 2.6.0
26 -----
27
28  * added possibility to cache catalogues
29  * added TranslatorBagInterface
30  * added LoggingTranslator
31  * added Translator::getMessages() for retrieving the message catalogue as an array
32
33 2.5.0
34 -----
35
36  * added relative file path template to the file dumpers
37  * added optional backup to the file dumpers
38  * changed IcuResFileDumper to extend FileDumper
39
40 2.3.0
41 -----
42
43  * added classes to make operations on catalogues (like making a diff or a merge on 2 catalogues)
44  * added Translator::getFallbackLocales()
45  * deprecated Translator::setFallbackLocale() in favor of the new Translator::setFallbackLocales() method
46
47 2.2.0
48 -----
49
50  * QtTranslationsLoader class renamed to QtFileLoader. QtTranslationsLoader is deprecated and will be removed in 2.3.
51  * [BC BREAK] uniformized the exception thrown by the load() method when an error occurs. The load() method now
52    throws Symfony\Component\Translation\Exception\NotFoundResourceException when a resource cannot be found
53    and Symfony\Component\Translation\Exception\InvalidResourceException when a resource is invalid.
54  * changed the exception class thrown by some load() methods from \RuntimeException to \InvalidArgumentException
55    (IcuDatFileLoader, IcuResFileLoader and QtFileLoader)
56
57 2.1.0
58 -----
59
60  * added support for more than one fallback locale
61  * added support for extracting translation messages from templates (Twig and PHP)
62  * added dumpers for translation catalogs
63  * added support for QT, gettext, and ResourceBundles