summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Don't include the date in the version numberbaserock/1.3-50-g246996bAdam Coldrick2015-06-191-3/+0
|
* Import Unicode CLDR zipPedro Alvarez2015-05-221-0/+0
| | | | | This file is needed to install babel from source, but babel tries to fetch it from internet if it's not present.
* Merge branch 'master' of github.com:mitsuhiko/babelArmin Ronacher2014-04-0717-152/+190
|\
| * read/write all PO files in binary modeAlex Morega2014-01-151-6/+6
| | | | | | | | as pointed out in #52
| * correctly handle 'C.UTF-8' localeAlex Morega2014-01-082-1/+5
| | | | | | | | fixes #57
| * fix warning for deprecated array.tostringAlex Morega2014-01-073-3/+8
| | | | | | | | fixes #75
| * change spelling of the encodingAlex Morega2014-01-061-1/+1
| | | | | | | | Apparently jython doesn't understand "utf_8". Fixes #46.
| * specify localeAlex Morega2014-01-061-2/+2
| | | | | | | | | | otherwise, running tests in another locale fails fixes #45, thanks @Arfrever!
| * re-enable doctestsAlex Morega2014-01-061-1/+1
| |
| * Merge branch 'fix-time-parsing'Alex Morega2014-01-062-54/+48
| |\
| | * parse datetime values with no timezone infoAlex Morega2014-01-062-16/+33
| | | | | | | | | | | | fixes #56
| | * rewrite regexp parsingAlex Morega2014-01-061-2/+3
| | |
| | * extract _parse_datetime_header functionAlex Morega2014-01-061-54/+30
| |/
| * use fallback plural if none is defined in CLDRAlex Morega2014-01-062-1/+11
| | | | | | | | fixes #69
| * Merge pull request #66 from Sjord/masterAlex Morega2014-01-062-1/+9
| |\ | | | | | | Correctly parse number pattern with '-' on the end
| | * Correctly parse number pattern with '-' on the endSjoerd Langkemper2013-11-062-1/+9
| | | | | | | | | | | | | | | | | | | | | 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.
| * | Merge pull request #48 from yoloseem/patch-1Alex Morega2014-01-061-3/+3
| |\ \ | | | | | | | | Fixed typos on cli errors.
| | * | Fixed a typo on description for setuptools command option.Hyunjun Kim2013-08-161-1/+1
| | | |
| | * | Fixed typos on cli errors.Hyunjun Kim2013-08-161-2/+2
| | | |
| * | | Merge pull request #68 from masklinn/masterAlex Morega2014-01-062-77/+89
| |\ \ \ | | | | | | | | | | Add links from changelog entries to their ticket via extlink
| | * | | Add links from changelog entries to their ticket via extlinkmasklinn2013-11-262-77/+89
| | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | 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``).
| * | | Merge pull request #64 from Ivoz/patch-1Alex Morega2014-01-061-0/+3
| |\ \ \ | | | | | | | | | | Update classifiers to give more detailed information about babel's versi...
| | * | | Update classifiers to give more detailed information about babel's version ↵Matt Iversen2013-10-191-0/+3
| | |/ / | | | | | | | | | | | | compatibility
| * | | Merge pull request #73 from javacruft/wip-currency-name-testAlex Morega2014-01-061-1/+2
| |\ \ \ | | | | | | | | | | Fixup get_currency_name test
| | * | | Fixup get_currency_name testJames Page2013-12-061-1/+2
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
| * | | Merge pull request #52 from adyshev/patch-1Alex Morega2014-01-061-1/+1
| |\ \ \ | | |/ / | |/| | fix `pybabel update` on py3
| | * | Python3Alexander A. Dyshev2013-08-231-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | Fix tox configurationbaserock/morphDaniel Neuhäuser2013-08-221-1/+2
| |/ | | | | | | | | Re-using the pickled data across 2.x and 3.x causes errors when running the tests.
* | Reformatted import scriptArmin Ronacher2013-11-201-22/+38
|/
* Merge branch '1.x-maintenance'Armin Ronacher2013-07-312-1/+10
|\
| * Fixed a CLDR import error on windows.Armin Ronacher2013-07-312-1/+10
| | | | | | | | | | | | | | When building the CLDR data from scratch the process would break on windows because the timezone mapping is not available yet. This fixes #43.
* | Fixed a typoArmin Ronacher2013-07-301-1/+1
| |
* | Renamed a chapter in the docsArmin Ronacher2013-07-301-2/+2
| |
* | Added support for territory currency lookups.Armin Ronacher2013-07-305-1/+144
| | | | | | | | | | | | | | | | 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
* | Merge branch '1.x-maintenance'Armin Ronacher2013-07-293-1/+16
|\ \ | |/
| * Fixed territory aliases not working properlyArmin Ronacher2013-07-293-1/+11
| |
| * Added changelog line for 1.4Armin Ronacher2013-07-291-0/+5
| |
* | Merge branch '1.x-maintenance'Armin Ronacher2013-07-291-1/+1
|\ \ | |/
| * Ready for 1.4Armin Ronacher2013-07-292-2/+2
| |
| * Bump version number to 1.31.3Armin Ronacher2013-07-292-2/+2
| |
| * Release is todayArmin Ronacher2013-07-291-1/+1
| |
| * Added a missing changelog entryArmin Ronacher2013-07-291-0/+2
| |
| * Fixed a bug on Python 3 when writing to stdoutArmin Ronacher2013-07-292-3/+15
| |
| * Added another testcase for subtag expansion.Armin Ronacher2013-07-291-0/+5
| |
* | Added a missing changelog entryArmin Ronacher2013-07-291-0/+2
| |
* | Fixed a bug on Python 3 when writing to stdoutArmin Ronacher2013-07-292-3/+15
| |
* | Added another testcase for subtag expansion.Armin Ronacher2013-07-281-0/+5
| |
* | Merge branch '1.x-maintenance'Armin Ronacher2013-07-283-15/+39
|\ \ | |/
| * Fixed #37 (likely subtag resolving)Armin Ronacher2013-07-283-15/+35
| | | | | | | | | | This fixes some locales not loading correctly (like zh_CN) that are defined through simplified rules in the likely-subtag mapping.
| * Prepare 1.3Armin Ronacher2013-07-281-0/+5
| |