Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,126 +0,0 @@
1
-CHANGELOG
2
-=========
3
-
4
-4.3.0
5
-
6
- * Improved Xliff 1.2 loader to load the original file's metadata
7
- * Added `TranslatorPathsPass`
8
-
9
-4.2.0
10
-
11
- * Started using ICU parent locales as fallback locales.
12
- * allow using the ICU message format using domains with the "+intl-icu" suffix
13
- * deprecated `Translator::transChoice()` in favor of using `Translator::trans()` with a `%count%` parameter
14
- * deprecated `TranslatorInterface` in favor of `Symfony\Contracts\Translation\TranslatorInterface`
15
- * deprecated `MessageSelector`, `Interval` and `PluralizationRules`; use `IdentityTranslator` instead
16
- * Added `IntlFormatter` and `IntlFormatterInterface`
17
- * added support for multiple files and directories in `XliffLintCommand`
18
- * Marked `Translator::getFallbackLocales()` and `TranslationDataCollector::getFallbackLocales()` as internal
19
-
20
-4.1.0
21
-
22
- * The `FileDumper::setBackup()` method is deprecated.
23
- * The `TranslationWriter::disableBackup()` method is deprecated.
24
- * The `XliffFileDumper` will write "name" on the "unit" node when dumping XLIFF 2.0.
25
-
26
-4.0.0
27
-
28
- * removed the backup feature of the `FileDumper` class
29
- * removed `TranslationWriter::writeTranslations()` method
30
- * removed support for passing `MessageSelector` instances to the constructor of the `Translator` class
31
-
32
-3.4.0
33
-
34
- * Added `TranslationDumperPass`
35
- * Added `TranslationExtractorPass`
36
- * Added `TranslatorPass`
37
- * Added `TranslationReader` and `TranslationReaderInterface`
38
- * Added `<notes>` section to the Xliff 2.0 dumper.
39
- * Improved Xliff 2.0 loader to load `<notes>` section.
40
- * Added `TranslationWriterInterface`
41
- * Deprecated `TranslationWriter::writeTranslations` in favor of `TranslationWriter::write`
42
- * added support for adding custom message formatter and decoupling the default one.
43
- * Added `PhpExtractor`
44
- * Added `PhpStringTokenParser`
45
-
46
-3.2.0
47
-
48
- * Added support for escaping `|` in plural translations with double pipe.
49
-
50
-3.1.0
51
-
52
- * Deprecated the backup feature of the file dumper classes.
53
-
54
-3.0.0
55
-
56
- * removed `FileDumper::format()` method.
57
- * Changed the visibility of the locale property in `Translator` from protected to private.
58
-
59
-2.8.0
60
-
61
- * deprecated FileDumper::format(), overwrite FileDumper::formatCatalogue() instead.
62
- * deprecated Translator::getMessages(), rely on TranslatorBagInterface::getCatalogue() instead.
63
- * added `FileDumper::formatCatalogue` which allows format the catalogue without dumping it into file.
64
- * added option `json_encoding` to JsonFileDumper
65
- * added options `as_tree`, `inline` to YamlFileDumper
66
- * added support for XLIFF 2.0.
67
- * added support for XLIFF target and tool attributes.
68
- * added message parameters to DataCollectorTranslator.
69
- * [DEPRECATION] The `DiffOperation` class has been deprecated and
70
-   will be removed in Symfony 3.0, since its operation has nothing to do with 'diff',
71
-   so the class name is misleading. The `TargetOperation` class should be used for
72
-   this use-case instead.
73
-
74
-2.7.0
75
-
76
- * added DataCollectorTranslator for collecting the translated messages.
77
-
78
-2.6.0
79
-
80
- * added possibility to cache catalogues
81
- * added TranslatorBagInterface
82
- * added LoggingTranslator
83
- * added Translator::getMessages() for retrieving the message catalogue as an array
84
-
85
-2.5.0
86
-
87
- * added relative file path template to the file dumpers
88
- * added optional backup to the file dumpers
89
- * changed IcuResFileDumper to extend FileDumper
90
-
91
-2.3.0
92
-
93
- * added classes to make operations on catalogues (like making a diff or a merge on 2 catalogues)
94
- * added Translator::getFallbackLocales()
95
- * deprecated Translator::setFallbackLocale() in favor of the new Translator::setFallbackLocales() method
96
-
97
-2.2.0
98
-
99
- * QtTranslationsLoader class renamed to QtFileLoader. QtTranslationsLoader is deprecated and will be removed in 2.3.
100
- * [BC BREAK] uniformized the exception thrown by the load() method when an error occurs. The load() method now
101
-   throws Symfony\Component\Translation\Exception\NotFoundResourceException when a resource cannot be found
102
-   and Symfony\Component\Translation\Exception\InvalidResourceException when a resource is invalid.
103
- * changed the exception class thrown by some load() methods from \RuntimeException to \InvalidArgumentException
104
-   (IcuDatFileLoader, IcuResFileLoader and QtFileLoader)
105
-
106
-2.1.0
107
-
108
- * added support for more than one fallback locale
109
- * added support for extracting translation messages from templates (Twig and PHP)
110
- * added dumpers for translation catalogs
111
- * added support for QT, gettext, and ResourceBundles
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,126 @@
1
+CHANGELOG
2
+=========
3
+
4
+4.3.0
5
+-----
6
+
7
+ * Improved Xliff 1.2 loader to load the original file's metadata
8
+ * Added `TranslatorPathsPass`
9
+
10
+4.2.0
11
+-----
12
+
13
+ * Started using ICU parent locales as fallback locales.
14
+ * allow using the ICU message format using domains with the "+intl-icu" suffix
15
+ * deprecated `Translator::transChoice()` in favor of using `Translator::trans()` with a `%count%` parameter
16
+ * deprecated `TranslatorInterface` in favor of `Symfony\Contracts\Translation\TranslatorInterface`
17
+ * deprecated `MessageSelector`, `Interval` and `PluralizationRules`; use `IdentityTranslator` instead
18
+ * Added `IntlFormatter` and `IntlFormatterInterface`
19
+ * added support for multiple files and directories in `XliffLintCommand`
20
+ * Marked `Translator::getFallbackLocales()` and `TranslationDataCollector::getFallbackLocales()` as internal
21
+
22
+4.1.0
23
+-----
24
+
25
+ * The `FileDumper::setBackup()` method is deprecated.
26
+ * The `TranslationWriter::disableBackup()` method is deprecated.
27
+ * The `XliffFileDumper` will write "name" on the "unit" node when dumping XLIFF 2.0.
28
+
29
+4.0.0
30
+-----
31
+
32
+ * removed the backup feature of the `FileDumper` class
33
+ * removed `TranslationWriter::writeTranslations()` method
34
+ * removed support for passing `MessageSelector` instances to the constructor of the `Translator` class
35
+
36
+3.4.0
37
+-----
38
+
39
+ * Added `TranslationDumperPass`
40
+ * Added `TranslationExtractorPass`
41
+ * Added `TranslatorPass`
42
+ * Added `TranslationReader` and `TranslationReaderInterface`
43
+ * Added `<notes>` section to the Xliff 2.0 dumper.
44
+ * Improved Xliff 2.0 loader to load `<notes>` section.
45
+ * Added `TranslationWriterInterface`
46
+ * Deprecated `TranslationWriter::writeTranslations` in favor of `TranslationWriter::write`
47
+ * added support for adding custom message formatter and decoupling the default one.
48
+ * Added `PhpExtractor`
49
+ * Added `PhpStringTokenParser`
50
+
51
+3.2.0
52
+-----
53
+
54
+ * Added support for escaping `|` in plural translations with double pipe.
55
+
56
+3.1.0
57
+-----
58
+
59
+ * Deprecated the backup feature of the file dumper classes.
60
+
61
+3.0.0
62
+-----
63
+
64
+ * removed `FileDumper::format()` method.
65
+ * Changed the visibility of the locale property in `Translator` from protected to private.
66
+
67
+2.8.0
68
+-----
69
+
70
+ * deprecated FileDumper::format(), overwrite FileDumper::formatCatalogue() instead.
71
+ * deprecated Translator::getMessages(), rely on TranslatorBagInterface::getCatalogue() instead.
72
+ * added `FileDumper::formatCatalogue` which allows format the catalogue without dumping it into file.
73
+ * added option `json_encoding` to JsonFileDumper
74
+ * added options `as_tree`, `inline` to YamlFileDumper
75
+ * added support for XLIFF 2.0.
76
+ * added support for XLIFF target and tool attributes.
77
+ * added message parameters to DataCollectorTranslator.
78
+ * [DEPRECATION] The `DiffOperation` class has been deprecated and
79
+   will be removed in Symfony 3.0, since its operation has nothing to do with 'diff',
80
+   so the class name is misleading. The `TargetOperation` class should be used for
81
+   this use-case instead.
82
+
83
+2.7.0
84
+-----
85
+
86
+ * added DataCollectorTranslator for collecting the translated messages.
87
+
88
+2.6.0
89
+-----
90
+
91
+ * added possibility to cache catalogues
92
+ * added TranslatorBagInterface
93
+ * added LoggingTranslator
94
+ * added Translator::getMessages() for retrieving the message catalogue as an array
95
+
96
+2.5.0
97
+-----
98
+
99
+ * added relative file path template to the file dumpers
100
+ * added optional backup to the file dumpers
101
+ * changed IcuResFileDumper to extend FileDumper
102
+
103
+2.3.0
104
+-----
105
+
106
+ * added classes to make operations on catalogues (like making a diff or a merge on 2 catalogues)
107
+ * added Translator::getFallbackLocales()
108
+ * deprecated Translator::setFallbackLocale() in favor of the new Translator::setFallbackLocales() method
109
+
110
+2.2.0
111
+-----
112
+
113
+ * QtTranslationsLoader class renamed to QtFileLoader. QtTranslationsLoader is deprecated and will be removed in 2.3.
114
+ * [BC BREAK] uniformized the exception thrown by the load() method when an error occurs. The load() method now
115
+   throws Symfony\Component\Translation\Exception\NotFoundResourceException when a resource cannot be found
116
+   and Symfony\Component\Translation\Exception\InvalidResourceException when a resource is invalid.
117
+ * changed the exception class thrown by some load() methods from \RuntimeException to \InvalidArgumentException
118
+   (IcuDatFileLoader, IcuResFileLoader and QtFileLoader)
119
+
120
+2.1.0
121
+-----
122
+
123
+ * added support for more than one fallback locale
124
+ * added support for extracting translation messages from templates (Twig and PHP)
125
+ * added dumpers for translation catalogs
126
+ * added support for QT, gettext, and ResourceBundles