Mon, 11 Jun 2007 19:43:58 +0000 |
palgarvio |
Completely fixed the bug reported by pjenvey, partially addressed on [87].
trunk
|
Mon, 11 Jun 2007 00:48:07 +0000 |
palgarvio |
Fixed a bug on Catalog. `__setitem__` was not updating the translator comments. Thanks pjenvey!
trunk
|
Sun, 10 Jun 2007 22:41:50 +0000 |
palgarvio |
Fixed a bug on the CLI frontend introduced on [81]. Thanks pjenvey!
trunk
|
Sun, 10 Jun 2007 21:14:38 +0000 |
palgarvio |
Fixed de-pluralization bug introduced in [85] regarding the extraction of translator comments.
trunk
|
Sun, 10 Jun 2007 18:03:46 +0000 |
cmlenz |
Some cosmetic changes for the new translator comments support.
trunk
|
Sun, 10 Jun 2007 17:37:50 +0000 |
cmlenz |
Add unit tests for extracting translator comments from python sources.
trunk
|
Sun, 10 Jun 2007 16:46:55 +0000 |
palgarvio |
Missed some param's documentation regarding translator comments.
trunk
|
Sun, 10 Jun 2007 16:32:23 +0000 |
palgarvio |
Fixed and added some documentation about the translator comments implemented in [81].
trunk
|
Sun, 10 Jun 2007 14:21:01 +0000 |
palgarvio |
Added support for translator comments at the API and frontends levels.(See #12, item 1). Updated docs and tests accordingly.
trunk
|
Sun, 10 Jun 2007 09:39:26 +0000 |
palgarvio |
Implemented item 4 from #12. Set the copyright holder in the output.
trunk
|
Sun, 10 Jun 2007 08:42:21 +0000 |
palgarvio |
Fixed the plurals header on `Catalog` which should only be written if it's not a catalog template.
trunk
|
Fri, 08 Jun 2007 23:27:35 +0000 |
cmlenz |
Updated frontend screens for added sorting features.
trunk
|
Fri, 08 Jun 2007 23:16:38 +0000 |
palgarvio |
Typo on `doc/catalogs.txt`.
trunk
|
Fri, 08 Jun 2007 21:54:56 +0000 |
cmlenz |
Fixed MIME type of new doc page.
trunk
|
Fri, 08 Jun 2007 21:40:59 +0000 |
cmlenz |
Extended the docs a bit.
trunk
|
Fri, 08 Jun 2007 21:40:44 +0000 |
cmlenz |
Extended the docs a bit.
trunk
|
Fri, 08 Jun 2007 19:10:51 +0000 |
cmlenz |
More explicit module-level function names in `babel.core`. Added `Locale.negotiate` class method.
trunk
|
Fri, 08 Jun 2007 17:30:12 +0000 |
palgarvio |
Implemented message sorting, see #7.
trunk
|
Fri, 08 Jun 2007 16:22:10 +0000 |
cmlenz |
Fix for mixed singular/plural messages, follow-up to [70].
trunk
|
Fri, 08 Jun 2007 16:16:08 +0000 |
cmlenz |
Message catalogs can have multiple messages with the same ID, where some of them have plural strings, and others don't. Still the same message.
trunk
|
Fri, 08 Jun 2007 15:47:00 +0000 |
cmlenz |
Add back POT header broken in previous check-in.
trunk
|
Fri, 08 Jun 2007 15:32:06 +0000 |
cmlenz |
Enhance catalog to also manage the MIME headers.
trunk
|
Fri, 08 Jun 2007 14:29:49 +0000 |
palgarvio |
Implemented the `init` subcommand, aka, `new_catalog` for the distutils/setuptools implmentation.
trunk
|
Fri, 08 Jun 2007 13:22:37 +0000 |
cmlenz |
Add Babel soruce path to CLDR import script automatically for asmodai ;-).
trunk
|
Fri, 08 Jun 2007 13:15:32 +0000 |
cmlenz |
`read_po` now returns a `Catalog`.
trunk
|
Fri, 08 Jun 2007 12:53:57 +0000 |
palgarvio |
Added the available commands list to the `--help` output of Babel's binary.
trunk
|
Fri, 08 Jun 2007 12:41:00 +0000 |
cmlenz |
The order of extraction methods is now preserved (see #10).
trunk
|
Fri, 08 Jun 2007 11:54:01 +0000 |
cmlenz |
Move `Translations` and `LazyProxy` to new `babel.support` module, which should contain any convenience code that is useful for applications using Babel/I18n, but not used by Babel itself.
trunk
|
Fri, 08 Jun 2007 11:44:28 +0000 |
cmlenz |
Fix typo in [58].
trunk
|
Fri, 08 Jun 2007 11:35:06 +0000 |
palgarvio |
Fix 2nd typo of [58].
trunk
|
Fri, 08 Jun 2007 11:32:27 +0000 |
cmlenz |
Fix typo in [58].
trunk
|
Fri, 08 Jun 2007 11:28:15 +0000 |
cmlenz |
* The `extract_messages` distutils command now operators on configurable input directories again, instead of the complete current directory. The `input_dirs` default to the package directories.
trunk
|
Fri, 08 Jun 2007 11:08:03 +0000 |
cmlenz |
Add actual data structures for handling message catalogs, so that more code can be reused here between the frontends.
trunk
|
Fri, 08 Jun 2007 10:37:47 +0000 |
palgarvio |
`new_catalog` now accepts another argument, `--domain`, which is used to build the output file path, which now is of the form `<output_dir>/<locale>/<domain>.po`, the correct form.
trunk
|
Fri, 08 Jun 2007 09:16:32 +0000 |
cmlenz |
Rename the `babel.catalog` package to `babel.messages` for consistency with the other package names.
trunk
|
Thu, 07 Jun 2007 23:11:32 +0000 |
cmlenz |
Add `english_name` property to `Locale` class.
trunk
|
Thu, 07 Jun 2007 22:59:25 +0000 |
cmlenz |
Support sub-commands in command-line interface, and renamed the generated script wrapper to `babel`. See #9.
trunk
|
Thu, 07 Jun 2007 22:48:47 +0000 |
palgarvio |
Fixed a bug regarding plural msgid's handling when writing the `.pot` file.
trunk
|
Thu, 07 Jun 2007 22:00:43 +0000 |
jonas |
Added round-half-even (banker's rounding) support.
trunk
|
Thu, 07 Jun 2007 00:15:27 +0000 |
cmlenz |
Support a `message_extractors` keyword argument directly in `setup()`. Closes #4.
trunk
|
Wed, 06 Jun 2007 23:17:18 +0000 |
cmlenz |
Move the mapping configuration file format to `ConfigParser`, and add some more documentation about it.
trunk
|
Wed, 06 Jun 2007 21:03:24 +0000 |
cmlenz |
Support passing extraction method mapping and options from the frontends (see #4). No distutils/setuptools keyword supported yet, but the rest seems to be working okay.
trunk
|
Wed, 06 Jun 2007 20:54:11 +0000 |
cmlenz |
Minor docstring fixes.
trunk
|
Wed, 06 Jun 2007 20:52:32 +0000 |
cmlenz |
Fix copy&paste error in documentation stylesheet.
trunk
|
Wed, 06 Jun 2007 17:40:35 +0000 |
cmlenz |
Some work towards #4.
trunk
|
Wed, 06 Jun 2007 12:18:55 +0000 |
cmlenz |
Add setup config to get the SVN revision in the version number.
trunk
|
Wed, 06 Jun 2007 12:14:01 +0000 |
cmlenz |
Add new function to module exports.
trunk
|
Wed, 06 Jun 2007 12:12:44 +0000 |
cmlenz |
Load locale data lazily to avoid penalizing usage of `Locale` objects when no locale data is actually needed.
trunk
|
Wed, 06 Jun 2007 11:02:48 +0000 |
cmlenz |
Syntax highlighting for the docs.
trunk
|
Wed, 06 Jun 2007 11:02:24 +0000 |
cmlenz |
Move function for determining the system default locale to `babel.core`, and make it available as a class method on `Locale`.
trunk
|
Tue, 05 Jun 2007 22:59:24 +0000 |
cmlenz |
Started implementation of datetime parsing, using a very basic approach for now.
trunk
|
Tue, 05 Jun 2007 10:38:11 +0000 |
cmlenz |
Add optional pytz dependency to `INSTALL.txt`.
trunk
|
Mon, 04 Jun 2007 21:30:52 +0000 |
cmlenz |
Fix for #8: fix extraction of strings from Python source using prefixes ('u' or 'r') or triple quotes.
trunk
|
Mon, 04 Jun 2007 16:14:03 +0000 |
cmlenz |
Add note on daylight savings time.
trunk
|
Mon, 04 Jun 2007 16:03:12 +0000 |
cmlenz |
Extended time-zone support.
trunk
|
Mon, 04 Jun 2007 14:28:54 +0000 |
cmlenz |
* Import datetime patterns from CLDR.
trunk
|
Mon, 04 Jun 2007 12:06:25 +0000 |
cmlenz |
Started docs on number formatting/parsing.
trunk
|
Mon, 04 Jun 2007 11:29:55 +0000 |
cmlenz |
Raise error on unsupported locales. Closes #5.
trunk
|
Mon, 04 Jun 2007 10:54:26 +0000 |
cmlenz |
Add missing import.
trunk
|
Mon, 04 Jun 2007 10:51:38 +0000 |
cmlenz |
More work on timezones.
trunk
|