diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-06-17 15:39:21 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-06-17 15:39:21 +0000 |
| commit | 98a69a2c0a9d6a57cc637b0e9a998495fc0bcbd7 (patch) | |
| tree | a26589c47699f71f450ac7a68290c2ebf2e71e77 | |
| parent | 54393493effd69b8e5a0362333ef74856accd312 (diff) | |
Fixed #16076 -- Updated Hungarian l10n formats. Thanks, slink.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16429 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/conf/locale/hu/formats.py | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/django/conf/locale/hu/formats.py b/django/conf/locale/hu/formats.py index db9fb85512..8ee1c0feea 100644 --- a/django/conf/locale/hu/formats.py +++ b/django/conf/locale/hu/formats.py @@ -5,19 +5,28 @@ # The *_FORMAT strings use the Django date format syntax, # see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date DATE_FORMAT = 'Y. F j.' -TIME_FORMAT = 'G:i:s' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = +TIME_FORMAT = 'G.i.s' +DATETIME_FORMAT = 'Y. F j. G.i.s' +YEAR_MONTH_FORMAT = 'Y. F' MONTH_DAY_FORMAT = 'F j.' SHORT_DATE_FORMAT = 'Y.m.d.' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = +SHORT_DATETIME_FORMAT = 'Y.m.d. G.i.s' +FIRST_DAY_OF_WEEK = 1 # Monday # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = +DATE_INPUT_FORMATS = ( + '%Y.%m.%d.', # '2006.10.25.' +) +TIME_INPUT_FORMATS = ( + '%H.%M.%S', # '14.30.59' + '%H.%M', # '14.30' +) +DATETIME_INPUT_FORMATS = ( + '%Y.%m.%d. %H.%m.%S', # '2006.10.25. 14.30.59' + '%Y.%m.%d. %H.%M', # '2006.10.25. 14.30' + '%Y.%m.%d.', # '2006.10.25.' +) DECIMAL_SEPARATOR = ',' THOUSAND_SEPARATOR = u' ' # Non-breaking space -# NUMBER_GROUPING = +NUMBER_GROUPING = 3 |
