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:48:20 +0200 |
| commit | 8c538871bda3832bca2dddefe317bf4a9230dd45 (patch) | |
| tree | 5359849e1b9facd4f403b4e5563cbc037575143f /django | |
| parent | 32ade78c55edd6231544607a841a9e7efdcbdb5b (diff) | |
Fixed #28710 -- Fixed the Basque DATE_FORMAT string
Thanks Eneko Illarramendi for the report and initial patch.
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 8d2785183f..520396cf1b 100644 --- a/django/conf/locale/eu/formats.py +++ b/django/conf/locale/eu/formats.py @@ -2,7 +2,7 @@ # # 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 = |
