Mercurial > babel > old > mirror
annotate 0.9.x/ChangeLog @ 402:e6094bb5d67e stable
Ported [438] and [439] back to 0.9.x branch.
author | cmlenz |
---|---|
date | Fri, 18 Jul 2008 13:10:46 +0000 |
parents | 26733b2c995d |
children | f29b2f9f1f92 |
rev | line source |
---|---|
399 | 1 Version 0.9.4 |
2 http://svn.edgewall.org/repos/babel/tags/0.9.4/ | |
3 (???, from branches/stable/0.9.x) | |
4 | |
5 * Currency symbol definitions that is defined with choice patterns in the | |
6 CLDR data are no longer imported, so the symbol code will be used instead. | |
7 * Fixed quarter support in date formatting. | |
402 | 8 * Fixed a serious memory leak that was introduces by the support for CLDR |
9 aliases in 0.9.3 (ticket #128). | |
399 | 10 |
11 | |
348
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
12 Version 0.9.3 |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
13 http://svn.edgewall.org/repos/babel/tags/0.9.3/ |
383 | 14 (Jul 9 2008, from branches/stable/0.9.x) |
348
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
15 |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
16 * Fixed invalid message extraction methods causing an UnboundLocalError. |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
17 * Extraction method specification can now use a dot instead of the colon to |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
18 separate module and function name (ticket #105). |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
19 * Fixed message catalog compilation for locales with more than two plural |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
20 forms (ticket #95). |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
21 * Fixed compilation of message catalogs for locales with more than two plural |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
22 forms where the translations were empty (ticket #97). |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
23 * The stripping of the comment tags in comments is optional now and |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
24 is done for each line in a comment. |
381 | 25 * Added a JavaScript message extractor. |
26 * Updated to CLDR 1.6. | |
351 | 27 * Fixed timezone calculations when formatting datetime and time values. |
381 | 28 * Added a `get_plural` function into the plurals module that returns the |
29 correct plural forms for a locale as tuple. | |
30 * Added support for alias definitions in the CLDR data files, meaning that | |
31 the chance for items missing in certain locales should be greatly reduced | |
32 (ticket #68). | |
348
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
33 |
05975a0e7021
Merged revisions [358:360], [364:370], [373:378], [380:382] from [source:trunk].
cmlenz
parents:
323
diff
changeset
|
34 |
295 | 35 Version 0.9.2 |
36 http://svn.edgewall.org/repos/babel/tags/0.9.2/ | |
383 | 37 (Feb 4 2008, from branches/stable/0.9.x) |
295 | 38 |
297 | 39 * Fixed catalogs' charset values not being recognized (ticket #66). |
320
cd588918443e
Ported [335:338], [345], and [351] to 0.9.x stable branch.
cmlenz
parents:
318
diff
changeset
|
40 * Numerous improvements to the default plural forms. |
316 | 41 * Fixed fuzzy matching when updating message catalogs (ticket #82). |
318 | 42 * Fixed bug in catalog updating, that in some cases pulled in translations |
43 from different catalogs based on the same template. | |
44 * Location lines in PO files do no longer get wrapped at hyphens in file | |
45 names (ticket #79). | |
320
cd588918443e
Ported [335:338], [345], and [351] to 0.9.x stable branch.
cmlenz
parents:
318
diff
changeset
|
46 * Fixed division by zero error in catalog compilation on empty catalogs |
cd588918443e
Ported [335:338], [345], and [351] to 0.9.x stable branch.
cmlenz
parents:
318
diff
changeset
|
47 (ticket #60). |
316 | 48 |
49 | |
280 | 50 Version 0.9.1 |
51 http://svn.edgewall.org/repos/babel/tags/0.9.1/ | |
288 | 52 (Sep 7 2007, from branches/stable/0.9.x) |
280 | 53 |
288 | 54 * Fixed catalog updating when a message is merged that was previously simple |
55 but now has a plural form, for example by moving from `gettext` to | |
280 | 56 `ngettext`, or vice versa. |
57 * Fixed time formatting for 12 am and 12 pm. | |
58 * Fixed output encoding of the `pybabel --list-locales` command. | |
323 | 59 * MO files are now written in binary mode on windows (ticket #61). |
280 | 60 |
61 | |
263 | 62 Version 0.9 |
63 http://svn.edgewall.org/repos/babel/tags/0.9.0/ | |
266 | 64 (Aug 20 2007, from branches/stable/0.9.x) |
263 | 65 |
66 * The `new_catalog` distutils command has been renamed to `init_catalog` for | |
67 consistency with the command-line frontend. | |
68 * Added compilation of message catalogs to MO files (ticket #21). | |
69 * Added updating of message catalogs from POT files (ticket #22). | |
70 * Support for significant digits in number formatting. | |
71 * Apply proper "banker's rounding" in number formatting in a cross-platform | |
72 manner. | |
73 * The number formatting functions now also work with numbers represented by | |
74 Python `Decimal` objects (ticket #53). | |
75 * Added extensible infrastructure for validating translation catalogs. | |
76 * Fixed the extractor not filtering out messages that didn't validate against | |
77 the keyword's specification (ticket #39). | |
78 * Fixed the extractor raising an exception when encountering an empty string | |
79 msgid. It now emits a warning to stderr. | |
80 * Numerous Python message extractor fixes: it now handles nested function | |
81 calls within a gettext function call correctly, uses the correct line number | |
82 for multi-line function calls, and other small fixes (tickets #38 and #39). | |
83 * Improved support for detecting Python string formatting fields in message | |
84 strings (ticket #57). | |
85 * CLDR upgraded to the 1.5 release. | |
86 * Improved timezone formatting. | |
266 | 87 * Implemented scientific number formatting. |
88 * Added mechanism to lookup locales by alias, for cases where browsers insist | |
89 on including only the language code in the `Accept-Language` header, and | |
90 sometimes even the incorrect language code. | |
263 | 91 |
92 | |
93 Version 0.8.1 | |
94 http://svn.edgewall.org/repos/babel/tags/0.8.1/ | |
95 (Jul 2 2007, from branches/stable/0.8.x) | |
96 | |
97 * `default_locale()` would fail when the value of the `LANGUAGE` environment | |
98 variable contained multiple language codes separated by colon, as is | |
99 explicitly allowed by the GNU gettext tools. As the `default_locale()` | |
100 function is called at the module level in some modules, this bug would | |
101 completely break importing these modules on systems where `LANGUAGE` is set | |
102 that way. | |
103 * The character set specified in PO template files is now respected when | |
104 creating new catalog files based on that template. This allows the use of | |
105 characters outside the ASCII range in POT files (ticket #17). | |
106 * The default ordering of messages in generated POT files, which is based on | |
107 the order those messages are found when walking the source tree, is no | |
108 longer subject to differences between platforms; directory and file names | |
109 are now always sorted alphabetically. | |
110 * The Python message extractor now respects the special encoding comment to be | |
111 able to handle files containing non-ASCII characters (ticket #23). | |
112 * Added 'N_' (gettext noop) to the extractor's default keywords. | |
113 * Made locale string parsing more robust, and also take the script part into | |
114 account (ticket #27). | |
115 * Added a function to list all locales for which locale data is available. | |
116 * Added a command-line option to the `pybabel` command which prints out all | |
117 available locales (ticket #24). | |
118 * The name of the command-line script has been changed from just `babel` to | |
119 `pybabel` to avoid a conflict with the OpenBabel project (ticket #34). | |
120 | |
121 | |
122 Version 0.8 | |
123 http://svn.edgewall.org/repos/babel/tags/0.8.0/ | |
124 (Jun 20 2007, from branches/stable/0.8.x) | |
125 | |
126 * First public release |