cmlenz@153: Version 0.8.1 cmlenz@153: http://svn.edgewall.org/repos/babel/tags/0.8.1/ cmlenz@193: (Jul 2 2007, from branches/stable/0.8.x) cmlenz@153: cmlenz@153: * `default_locale()` would fail when the value of the `LANGUAGE` environment cmlenz@153: variable contained multiple language codes separated by colon, as is cmlenz@153: explicitly allowed by the GNU gettext tools. As the `default_locale()` cmlenz@153: function is called at the module level in some modules, this bug would cmlenz@153: completely break importing these modules on systems where `LANGUAGE` is set cmlenz@153: that way. cmlenz@153: * The character set specified in PO template files is now respected when cmlenz@153: creating new catalog files based on that template. This allows the use of cmlenz@153: characters outside the ASCII range in POT files (ticket #17). cmlenz@155: * The default ordering of messages in generated POT files, which is based on cmlenz@155: the order those messages are found when walking the source tree, is no cmlenz@155: longer subject to differences between platforms; directory and file names cmlenz@155: are now always sorted alphabetically. cmlenz@167: * The Python message extractor now respects the special encoding comment to be cmlenz@167: able to handle files containing non-ASCII characters (ticket #23). pjenvey@180: * Added 'N_' (gettext noop) to the extractor's default keywords. cmlenz@184: * Made locale string parsing more robust, and also take the script part into cmlenz@184: account (ticket #27). cmlenz@186: * Added a function to list all locales for which locale data is available. cmlenz@193: * Added a command-line option to the `pybabel` command which prints out all cmlenz@186: available locales (ticket #24). cmlenz@193: * The name of the command-line script has been changed from just `babel` to cmlenz@193: `pybabel` to avoid a conflict with the OpenBabel project (ticket #34). cmlenz@153: cmlenz@153: cmlenz@139: Version 0.8 cmlenz@139: http://svn.edgewall.org/repos/babel/tags/0.8.0/ cmlenz@139: (Jun 20 2007, from branches/stable/0.8.x) cmlenz@139: cmlenz@139: * First public release