Ticket #29090: patch_hun.diff

File patch_hun.diff, 1.4 KB (added by danieltatraivertis, 6 years ago)
  • django/conf/locale/hu/formats.py

    diff --git a/django/conf/locale/hu/formats.py b/django/conf/locale/hu/formats.py
    index 33b9b6e..4c52d7d 100644
    a b  
    33# The *_FORMAT strings use the Django date format syntax,
    44# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
    55DATE_FORMAT = 'Y. F j.'
    6 TIME_FORMAT = 'G.i'
    7 DATETIME_FORMAT = 'Y. F j. G.i'
     6TIME_FORMAT = 'H:i'
     7DATETIME_FORMAT = 'Y. F j. H:i'
    88YEAR_MONTH_FORMAT = 'Y. F'
    99MONTH_DAY_FORMAT = 'F j.'
    1010SHORT_DATE_FORMAT = 'Y.m.d.'
    11 SHORT_DATETIME_FORMAT = 'Y.m.d. G.i'
     11SHORT_DATETIME_FORMAT = 'Y.m.d. H:i'
    1212FIRST_DAY_OF_WEEK = 1  # Monday
    1313
    1414# The *_INPUT_FORMATS strings use the Python strftime format syntax,
    DATE_INPUT_FORMATS = [  
    1717    '%Y.%m.%d.',  # '2006.10.25.'
    1818]
    1919TIME_INPUT_FORMATS = [
    20     '%H.%M.%S',  # '14.30.59'
    21     '%H.%M',    # '14.30'
     20    '%H:%M:%S',  # '14:30:59'
     21    '%H:%M',    # '14:30'
    2222]
    2323DATETIME_INPUT_FORMATS = [
    24     '%Y.%m.%d. %H.%M.%S',   # '2006.10.25. 14.30.59'
    25     '%Y.%m.%d. %H.%M.%S.%f',  # '2006.10.25. 14.30.59.000200'
    26     '%Y.%m.%d. %H.%M',      # '2006.10.25. 14.30'
     24    '%Y.%m.%d. %H:%M:%S',   # '2006.10.25. 14:30:59'
     25    '%Y.%m.%d. %H:%M:%S.%f',  # '2006.10.25. 14:30:59.000200'
     26    '%Y.%m.%d. %H:%M',      # '2006.10.25. 14:30'
    2727    '%Y.%m.%d.',            # '2006.10.25.'
    2828]
    2929DECIMAL_SEPARATOR = ','
Back to Top