]>
git.ipfire.org Git - thirdparty/babel.git/log
Alex Willmer [Thu, 10 Sep 2015 12:54:22 +0000 (13:54 +0100)]
Test invalid format_timedelta() format parameters
Alex Willmer [Thu, 10 Sep 2015 00:41:15 +0000 (01:41 +0100)]
Add format_timedelta(format='narrow') support
Lasse Schuirmann [Wed, 5 Aug 2015 18:12:55 +0000 (20:12 +0200)]
Merge pull request #190 from julen/doc-fixes
Docs: minor fixes
Julen Ruiz Aizpuru [Tue, 27 May 2014 08:40:39 +0000 (10:40 +0200)]
Docs: minor fixes
Erick Wilder [Wed, 5 Aug 2015 17:26:02 +0000 (14:26 -0300)]
Merge pull request #110 from felixonmars/master
Support 'Language' header field of PO files
Lasse Schuirmann [Wed, 5 Aug 2015 17:16:24 +0000 (19:16 +0200)]
Merge pull request #180 from etanol/parent-locales
Support parent locale exceptions
Erick Wilder [Wed, 5 Aug 2015 17:10:46 +0000 (14:10 -0300)]
Merge pull request #186 from sils1297/sils/rultor
Add rultor configuration
Lasse Schuirmann [Wed, 5 Aug 2015 16:55:33 +0000 (18:55 +0200)]
Merge pull request #100 from astaric/fix_deepcopy
LazyProxy: Add __copy__ and __deepcopy__
astaric [Thu, 12 Jun 2014 07:33:36 +0000 (09:33 +0200)]
Add __copy__ and __deepcopy__ to LazyProxy.
Python's copy.copy and copy.deepcopy do not call objects __init__,
resulting in endless recursion.
Isaac Jurado [Wed, 5 Nov 2014 16:15:08 +0000 (17:15 +0100)]
localedata: Check inheritance exceptions first
When deriving the parent locale from the given name, look first in the
inheritance exception list. This will cover cases like "es_MX", which
parent is "es_419" and not "es".
Fixes https://github.com/mitsuhiko/babel/issues/97
Isaac Jurado [Wed, 5 Nov 2014 15:40:04 +0000 (16:40 +0100)]
Import parent locale exceptions
Process and save the <parentLocales> element, which contains the
inheritance exceptions to the standard CLDR locale inheritance
algorithm.
Felix Yan [Wed, 26 Mar 2014 14:43:14 +0000 (14:43 +0000)]
Support 'Language' header field of PO files (#76)
GNU gettext has support for the 'Language' field in header entry since
version 0.18 (May 2010). This commit adds support for the field and
addresses #76.
Lasse Schuirmann [Wed, 5 Aug 2015 13:54:55 +0000 (15:54 +0200)]
Merge pull request #177 from philiptzou/pull-request-localedata-import-warning
Fixed issue #109: `ImportWarning` warned when `import babel`
Lasse Schuirmann [Tue, 4 Aug 2015 14:32:16 +0000 (16:32 +0200)]
Add rultor configuration
This allows merging via github comments. The comment `@rultor merge`
will execute the script (which currently doesn't do anything) and if it
succeeds will perform the merge.
I plan to use rultor later for:
* Automatic deployment to PyPI (development releases directly from
master, we do this already in coala, see
https://github.com/coala-analyzer/coala/blob/master/.rultor.yml)
* Automatic releasing with deployment to PyPI.
* Veryfy that all CI services pass before merging (see
https://github.com/yegor256/rultor/issues/869)
With this any manual pushes to master are disallowed, all pushes to
master have to be validated by continuous integration and reviewed by a
non-committer.
Erick Wilder [Tue, 4 Aug 2015 14:24:05 +0000 (11:24 -0300)]
Merge pull request #151 from jespino/patch-1
Fix typo on mapping filename
Armin Ronacher [Tue, 4 Aug 2015 12:43:20 +0000 (14:43 +0200)]
Added dev docs
Lasse Schuirmann [Tue, 4 Aug 2015 11:44:52 +0000 (13:44 +0200)]
Merge pull request #184 from sils1297/sils/gitignore
gitignore: Add temporary editor files
Lasse Schuirmann [Tue, 4 Aug 2015 11:43:07 +0000 (13:43 +0200)]
Merge pull request #183 from sils1297/sils/testci
Add Windows and Mac CI, and coverage submission
Lasse Schuirmann [Tue, 4 Aug 2015 11:01:34 +0000 (13:01 +0200)]
travis: Cache cldr
This should speed linux builds up a bit. Caching is not supported for
mac builds though.
Lasse Schuirmann [Tue, 4 Aug 2015 09:46:04 +0000 (11:46 +0200)]
CI: Add mac builds
Lasse Schuirmann [Tue, 4 Aug 2015 11:02:30 +0000 (13:02 +0200)]
Makefile: Use platform independent pytest invocation
Lasse Schuirmann [Tue, 4 Aug 2015 11:08:26 +0000 (13:08 +0200)]
gitignore: Add temporary editor files
.idea stores settings for PyCharm, ~ files are temporary files e.g. used
by gedit. .swp is used by vim. We don't want any of those to be
accidentally committed in the repo.
Lasse Schuirmann [Tue, 4 Aug 2015 09:02:14 +0000 (11:02 +0200)]
travis: Submit coverage to codecov
Lasse Schuirmann [Tue, 4 Aug 2015 08:42:44 +0000 (10:42 +0200)]
CI: Add windows builds
Philip_Tzou [Sat, 1 Aug 2015 21:03:14 +0000 (14:03 -0700)]
Fixed issue #109: `ImportWarning` warned when `import babel`
`localedata.py` uses the same name with folder `localedata/`, which
Python will try to load `localdata/__init__.py` and warn `ImportWarning`
if the file not found.
If try to filter the `ImportWarning` as an error like this:
```python
import warnings
warnings.filterwarnings('error', category=ImportWarning)
import babel
```
An `ImportWarning` exception will be raised.
Jesús Espino [Fri, 20 Mar 2015 11:15:11 +0000 (12:15 +0100)]
Fix typo on mapping filename
Now the setup.cfg example for extract_messages configuration is equivalent to the command line example.
Erick Wilder [Fri, 31 Jul 2015 19:48:39 +0000 (16:48 -0300)]
Merge pull request #167 from jeremydw/master
Update locale.rst
Erick Wilder [Tue, 28 Jul 2015 17:51:16 +0000 (14:51 -0300)]
Merge pull request #170 from sils1297/sils/travis
travis: Use docker infrastructure
Lasse Schuirmann [Tue, 28 Jul 2015 16:07:25 +0000 (18:07 +0200)]
travis: Use docker infrastructure
See http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/ for related documentation.
Jeremy Weinstein [Tue, 28 Jul 2015 00:45:35 +0000 (17:45 -0700)]
Update locale.rst
Erick Wilder [Mon, 27 Jul 2015 21:27:12 +0000 (18:27 -0300)]
Update CHANGES with py3.4 support
Erick Wilder [Mon, 27 Jul 2015 21:21:29 +0000 (18:21 -0300)]
Add Python 3.4 to travis
Erick Wilder [Mon, 27 Jul 2015 21:01:47 +0000 (18:01 -0300)]
Add Python 3.4 to tox stack
Erick Wilder [Mon, 27 Jul 2015 20:02:28 +0000 (17:02 -0300)]
Force file deletion at cleaning tasks
- Fresh install tests will fail if there's no file inside babel/localedata and/or babel/global.dat
Armin Ronacher [Mon, 27 Jul 2015 11:39:24 +0000 (13:39 +0200)]
Added changelog entry for 3.0
Armin Ronacher [Mon, 27 Jul 2015 11:38:06 +0000 (13:38 +0200)]
Merge branch 'pr/136'
Armin Ronacher [Mon, 27 Jul 2015 11:28:25 +0000 (13:28 +0200)]
This is 3.0-dev
Armin Ronacher [Mon, 27 Jul 2015 11:27:47 +0000 (13:27 +0200)]
Bump version number to 2.0
Armin Ronacher [Mon, 27 Jul 2015 11:27:44 +0000 (13:27 +0200)]
Updated changelog
Armin Ronacher [Mon, 27 Jul 2015 11:22:31 +0000 (13:22 +0200)]
Fixed a bunch of broken timezone tests.
benselme [Sun, 11 Jan 2015 23:28:53 +0000 (18:28 -0500)]
Merge branch 'cldr-24' into cldr-26
benselme [Sun, 11 Jan 2015 23:27:20 +0000 (18:27 -0500)]
Fixed doctest failing randomly
benselme [Sun, 11 Jan 2015 23:18:12 +0000 (18:18 -0500)]
Fixed 2.6 bug (Decimal cannot convert floats)
benselme [Sun, 11 Jan 2015 22:12:47 +0000 (17:12 -0500)]
Fix doctests
benselme [Sun, 11 Jan 2015 21:00:10 +0000 (16:00 -0500)]
Merge branch 'cldr-25' into cldr-26
benselme [Sun, 11 Jan 2015 20:59:15 +0000 (15:59 -0500)]
Merge branch 'cldr-24' into cldr-25
benselme [Sun, 11 Jan 2015 20:58:53 +0000 (15:58 -0500)]
Fixed doctests
benselme [Sun, 11 Jan 2015 20:21:16 +0000 (15:21 -0500)]
CLDR-26 support: Minor adjustments to tests. URL, filename and filehash.
benselme [Sun, 11 Jan 2015 16:55:24 +0000 (11:55 -0500)]
Don't try and import deprecated BCP-47 timezones
benselme [Sun, 11 Jan 2015 16:54:28 +0000 (11:54 -0500)]
File name and checksum for CLDR-25
benselme [Fri, 9 Jan 2015 20:35:21 +0000 (15:35 -0500)]
Make sure extract_operands is always called when using plural.to_python, add tests to check operands eval works
benselme [Fri, 9 Jan 2015 19:56:31 +0000 (14:56 -0500)]
Fixed import and format_timedelta to handle new time unit patterns in cldr-24.
Fixed tests to account for various minor changes in cldr-24.
benselme [Fri, 9 Jan 2015 16:17:07 +0000 (11:17 -0500)]
Fix to_python when i is not provided to evaluate function
benselme [Fri, 9 Jan 2015 15:33:24 +0000 (10:33 -0500)]
plural.extract_operands function and tests
benselme [Fri, 9 Jan 2015 13:51:54 +0000 (08:51 -0500)]
PEP8
benselme [Fri, 9 Jan 2015 00:40:28 +0000 (19:40 -0500)]
More stuff merged from mitsuhiko's cldr-24 branch
benselme [Fri, 9 Jan 2015 00:22:20 +0000 (19:22 -0500)]
More plural._Parser tests
benselme [Fri, 9 Jan 2015 00:03:25 +0000 (19:03 -0500)]
Improved _Parser doc
benselme [Fri, 9 Jan 2015 00:01:48 +0000 (19:01 -0500)]
More extraction in _Parser, more tests
benselme [Thu, 8 Jan 2015 22:57:07 +0000 (17:57 -0500)]
Extract PluralRule.skip
benselme [Thu, 8 Jan 2015 22:53:16 +0000 (17:53 -0500)]
Extract PluralRule.test and add tests
benselme [Thu, 8 Jan 2015 22:29:24 +0000 (17:29 -0500)]
Include Armin Ronacher's work on PluralRule mitsuhiko/babel@
774047a
benselme [Thu, 8 Jan 2015 22:07:11 +0000 (17:07 -0500)]
Extract plural rule tokenization function and add tests
benselme [Thu, 8 Jan 2015 19:49:14 +0000 (14:49 -0500)]
Add link to rules spec in PluralRule doc
benselme [Thu, 8 Jan 2015 16:34:21 +0000 (11:34 -0500)]
Some language aliases, which we do not want now use _ instead of -
benselme [Thu, 8 Jan 2015 16:03:52 +0000 (11:03 -0500)]
Update CLDR URL for v24, filename and MD5
Armin Ronacher [Mon, 7 Apr 2014 21:30:28 +0000 (23:30 +0200)]
Merge branch 'master' of github.com:mitsuhiko/babel
Alex Morega [Wed, 15 Jan 2014 20:12:19 +0000 (22:12 +0200)]
read/write all PO files in binary mode
as pointed out in #52
Alex Morega [Wed, 8 Jan 2014 11:24:40 +0000 (13:24 +0200)]
correctly handle 'C.UTF-8' locale
fixes #57
Alex Morega [Tue, 7 Jan 2014 06:16:16 +0000 (08:16 +0200)]
fix warning for deprecated array.tostring
fixes #75
Alex Morega [Mon, 6 Jan 2014 21:15:45 +0000 (23:15 +0200)]
change spelling of the encoding
Apparently jython doesn't understand "utf_8". Fixes #46.
Alex Morega [Mon, 6 Jan 2014 20:48:15 +0000 (22:48 +0200)]
specify locale
otherwise, running tests in another locale fails
fixes #45, thanks @Arfrever!
Alex Morega [Mon, 6 Jan 2014 20:39:22 +0000 (22:39 +0200)]
re-enable doctests
Alex Morega [Mon, 6 Jan 2014 19:56:17 +0000 (21:56 +0200)]
Merge branch 'fix-time-parsing'
Alex Morega [Mon, 6 Jan 2014 19:55:27 +0000 (21:55 +0200)]
parse datetime values with no timezone info
fixes #56
Alex Morega [Mon, 6 Jan 2014 19:43:33 +0000 (21:43 +0200)]
rewrite regexp parsing
Alex Morega [Mon, 6 Jan 2014 19:41:25 +0000 (21:41 +0200)]
extract _parse_datetime_header function
Alex Morega [Mon, 6 Jan 2014 19:19:47 +0000 (21:19 +0200)]
use fallback plural if none is defined in CLDR
fixes #69
Alex Morega [Mon, 6 Jan 2014 18:28:51 +0000 (10:28 -0800)]
Merge pull request #66 from Sjord/master
Correctly parse number pattern with '-' on the end
Alex Morega [Mon, 6 Jan 2014 17:12:22 +0000 (09:12 -0800)]
Merge pull request #48 from yoloseem/patch-1
Fixed typos on cli errors.
Alex Morega [Mon, 6 Jan 2014 17:08:02 +0000 (09:08 -0800)]
Merge pull request #68 from masklinn/master
Add links from changelog entries to their ticket via extlink
Alex Morega [Mon, 6 Jan 2014 17:02:15 +0000 (09:02 -0800)]
Merge pull request #64 from Ivoz/patch-1
Update classifiers to give more detailed information about babel's versi...
Alex Morega [Mon, 6 Jan 2014 16:50:30 +0000 (08:50 -0800)]
Merge pull request #73 from javacruft/wip-currency-name-test
Fixup get_currency_name test
Alex Morega [Mon, 6 Jan 2014 16:47:05 +0000 (08:47 -0800)]
Merge pull request #52 from adyshev/patch-1
fix `pybabel update` on py3
James Page [Fri, 6 Dec 2013 11:49:26 +0000 (11:49 +0000)]
Fixup get_currency_name test
This test failed in environments where no default locale
can be determined; make the test deterministic and add
additional test for plurality.
Signed-off-by: James Page <james.page@ubuntu.com>
masklinn [Tue, 26 Nov 2013 18:45:35 +0000 (19:45 +0100)]
Add links from changelog entries to their ticket via extlink
Supports links to the new github (``:gh:``) and the old trac
(``:trac:``). The prefixes are used to keep the same reference style
as pre-extlinks in the final output (aside from a few entries at the
bottom of 1.0, trac references were all in the form ``ticket #42``).
Armin Ronacher [Wed, 20 Nov 2013 17:38:25 +0000 (17:38 +0000)]
Reformatted import script
Sjoerd Langkemper [Wed, 6 Nov 2013 10:32:28 +0000 (11:32 +0100)]
Correctly parse number pattern with '-' on the end
For the nl_NL locale, negative numbers would be formatted just like
positive numbers by format_currency. By changing NUMBER_TOKEN to
no longer have a minus sign in it, the minus sign on the end
of the negative pattern for nl_NL is correctly parsed.
Matt Iversen [Sat, 19 Oct 2013 11:27:38 +0000 (22:27 +1100)]
Update classifiers to give more detailed information about babel's version compatibility
Alexander A. Dyshev [Fri, 23 Aug 2013 14:06:21 +0000 (17:06 +0300)]
Python3
Without 'b' option, using python3 everybody will get during update:
bash-3.2$ pybabel update -i messages.pot -d translations
updating catalog 'translations/en/LC_MESSAGES/messages.po' based on 'messages.pot'
Traceback (most recent call last):
File "/home/user/.pyenv/versions/3.3.2/bin/pybabel", line 9, in <module>
load_entry_point('Babel==1.3', 'console_scripts', 'pybabel')()
File "/home/user/.pyenv/versions/3.3.2/lib/python3.3/site-packages/babel/messages/frontend.py", line 1151, in main
return CommandLineInterface().run(sys.argv)
File "/home/user/.pyenv/versions/3.3.2/lib/python3.3/site-packages/babel/messages/frontend.py", line 665, in run
return getattr(self, cmdname)(args[1:])
File "/home/user/.pyenv/versions/3.3.2/lib/python3.3/site-packages/babel/messages/frontend.py", line 1130, in update
width=options.width)
File "/home/user/.pyenv/versions/3.3.2/lib/python3.3/site-packages/babel/messages/pofile.py", line 444, in write_po
_write(comment_header + u'\n')
File "/home/user/.pyenv/versions/3.3.2/lib/python3.3/site-packages/babel/messages/pofile.py", line 388, in _write
fileobj.write(text)
TypeError: must be str, not bytes
Daniel Neuhäuser [Thu, 22 Aug 2013 17:40:55 +0000 (19:40 +0200)]
Fix tox configuration
Re-using the pickled data across 2.x and 3.x causes errors when running
the tests.
Hyunjun Kim [Fri, 16 Aug 2013 11:40:31 +0000 (20:40 +0900)]
Fixed a typo on description for setuptools command option.
Hyunjun Kim [Fri, 16 Aug 2013 11:08:23 +0000 (20:08 +0900)]
Fixed typos on cli errors.
Armin Ronacher [Wed, 31 Jul 2013 20:50:13 +0000 (22:50 +0200)]
Merge branch '1.x-maintenance'
Armin Ronacher [Wed, 31 Jul 2013 20:48:52 +0000 (22:48 +0200)]
Fixed a CLDR import error on windows.
When building the CLDR data from scratch the process would break on
windows because the timezone mapping is not available yet.
This fixes #43.
Armin Ronacher [Tue, 30 Jul 2013 00:32:35 +0000 (02:32 +0200)]
Fixed a typo
Armin Ronacher [Tue, 30 Jul 2013 00:17:03 +0000 (02:17 +0200)]
Renamed a chapter in the docs
Armin Ronacher [Tue, 30 Jul 2013 00:13:45 +0000 (02:13 +0200)]
Added support for territory currency lookups.
The main usecase of this is to figure out at what point in time did
a country use a certain currency. The default behavior is to use
the current date.
This fixes #42
Armin Ronacher [Mon, 29 Jul 2013 17:09:31 +0000 (19:09 +0200)]
Merge branch '1.x-maintenance'
Armin Ronacher [Mon, 29 Jul 2013 17:09:07 +0000 (19:09 +0200)]
Fixed territory aliases not working properly