diff options
| author | Claude Paroz <claude@2xlibre.net> | 2017-10-13 18:37:31 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2017-10-13 19:52:22 +0200 |
| commit | 50bbc93ccb9c90a527849cbd18c2f6f02ca83cd1 (patch) | |
| tree | e31db7b59639b2f2439f45c8455d158069bfba60 /django | |
| parent | 45b0ec87d3d7c60c60b0f1c69cd89789bafaa6a8 (diff) | |
[1.11.x] Fixed #28710 -- Fixed the Basque DATE_FORMAT string
Thanks Eneko Illarramendi for the report and initial patch.
Backport of 8c538871bda3832bca2dddefe317bf4a9230dd45 from master.
Diffstat (limited to 'django')
| -rw-r--r-- | django/conf/locale/eu/formats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/locale/eu/formats.py b/django/conf/locale/eu/formats.py index 4ddf04ef5a..767491719b 100644 --- a/django/conf/locale/eu/formats.py +++ b/django/conf/locale/eu/formats.py @@ -5,7 +5,7 @@ from __future__ import unicode_literals # The *_FORMAT strings use the Django date format syntax, # see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'Yeko M\re\n d\a' +DATE_FORMAT = r'Y\k\o N j\a' TIME_FORMAT = 'H:i' # DATETIME_FORMAT = # YEAR_MONTH_FORMAT = |
