Mercurial > babel > old > babel-test
annotate ChangeLog @ 219:a9371d7a9929
Updated ChangeLog.
author | cmlenz |
---|---|
date | Mon, 16 Jul 2007 16:55:08 +0000 |
parents | 8ad0863a6a5d |
children | 677147547e2d |
rev | line source |
---|---|
160 | 1 Version 0.9 |
2 http://svn.edgewall.org/repos/babel/tags/0.9.0/ | |
3 (?, from branches/stable/0.9.x) | |
4 | |
187 | 5 * The `new_catalog` distutils command has been renamed to `init_catalog` for |
6 consistency with the command-line frontend. | |
219 | 7 * Added compilation of message catalogs to MO files (ticket #21). |
8 * Added updating of message catalogs from POT files (ticket #22). | |
213 | 9 * Support for significant digits in number formatting. |
10 * Apply proper "banker's rounding" in number formatting in a cross-platform | |
11 manner. | |
219 | 12 * The number formatting functions now also work with numbers represented by |
13 Python `Decimal` objects (ticket #53). | |
160 | 14 |
166 | 15 |
152 | 16 Version 0.8.1 |
17 http://svn.edgewall.org/repos/babel/tags/0.8.1/ | |
192 | 18 (Jul 2 2007, from branches/stable/0.8.x) |
152 | 19 |
20 * `default_locale()` would fail when the value of the `LANGUAGE` environment | |
21 variable contained multiple language codes separated by colon, as is | |
22 explicitly allowed by the GNU gettext tools. As the `default_locale()` | |
23 function is called at the module level in some modules, this bug would | |
24 completely break importing these modules on systems where `LANGUAGE` is set | |
25 that way. | |
26 * The character set specified in PO template files is now respected when | |
27 creating new catalog files based on that template. This allows the use of | |
28 characters outside the ASCII range in POT files (ticket #17). | |
154
4d2117dfd7f5
The default ordering of messages in generated POT files, which is based on the order those messages are found when walking the source tree, is no longer subject to differences between platforms; directory and file names are now always sorted alphabetically.
cmlenz
parents:
152
diff
changeset
|
29 * The default ordering of messages in generated POT files, which is based on |
4d2117dfd7f5
The default ordering of messages in generated POT files, which is based on the order those messages are found when walking the source tree, is no longer subject to differences between platforms; directory and file names are now always sorted alphabetically.
cmlenz
parents:
152
diff
changeset
|
30 the order those messages are found when walking the source tree, is no |
4d2117dfd7f5
The default ordering of messages in generated POT files, which is based on the order those messages are found when walking the source tree, is no longer subject to differences between platforms; directory and file names are now always sorted alphabetically.
cmlenz
parents:
152
diff
changeset
|
31 longer subject to differences between platforms; directory and file names |
4d2117dfd7f5
The default ordering of messages in generated POT files, which is based on the order those messages are found when walking the source tree, is no longer subject to differences between platforms; directory and file names are now always sorted alphabetically.
cmlenz
parents:
152
diff
changeset
|
32 are now always sorted alphabetically. |
166 | 33 * The Python message extractor now respects the special encoding comment to be |
34 able to handle files containing non-ASCII characters (ticket #23). | |
179
10f9fd9e730b
added 'N_' (gettext noop) to the extractor's default keywords
pjenvey
parents:
166
diff
changeset
|
35 * Added 'N_' (gettext noop) to the extractor's default keywords. |
183 | 36 * Made locale string parsing more robust, and also take the script part into |
37 account (ticket #27). | |
185
170cffc66554
Add a command-line option that prints out all available locales. Closes #24.
cmlenz
parents:
183
diff
changeset
|
38 * Added a function to list all locales for which locale data is available. |
192 | 39 * Added a command-line option to the `pybabel` command which prints out all |
185
170cffc66554
Add a command-line option that prints out all available locales. Closes #24.
cmlenz
parents:
183
diff
changeset
|
40 available locales (ticket #24). |
192 | 41 * The name of the command-line script has been changed from just `babel` to |
42 `pybabel` to avoid a conflict with the OpenBabel project (ticket #34). | |
152 | 43 |
44 | |
139 | 45 Version 0.8 |
46 http://svn.edgewall.org/repos/babel/tags/0.8.0/ | |
47 (Jun 20 2007, from branches/stable/0.8.x) | |
48 | |
49 * First public release |