Ticket #13833: id_locale_againts_r15368.diff

File id_locale_againts_r15368.diff, 2.8 KB (added by rodin, 13 years ago)

Diff against r15368, only at django/conf/locale/id/formats.py

  • django/conf/locale/id/formats.py

     
    55# The *_FORMAT strings use the Django date format syntax,
    66# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
    77DATE_FORMAT = 'j N Y'
    8 DATETIME_FORMAT = "j N Y, G:i:s"
    9 TIME_FORMAT = 'G:i:s'
     8DATETIME_FORMAT = "j N Y, G.i.s"
     9TIME_FORMAT = 'G.i.s'
    1010YEAR_MONTH_FORMAT = 'F Y'
    1111MONTH_DAY_FORMAT = 'j F'
    1212SHORT_DATE_FORMAT = 'd-m-Y'
    13 SHORT_DATETIME_FORMAT = 'd-m-Y G:i:s'
     13SHORT_DATETIME_FORMAT = 'd-m-Y G.i.s'
    1414FIRST_DAY_OF_WEEK = 1 #Monday
    1515
    1616# The *_INPUT_FORMATS strings use the Python strftime format syntax,
    1717# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior
    1818DATE_INPUT_FORMATS = (
    19     '%d-%m-%y', '%d/%m/%y',             # '25-10-09' , 25/10/09'
    20     '%d-%m-%Y', '%d/%m/%Y',             # '25-10-2009' , 25/10/2009'
    21     # '%d %b %Y', '%d %b, %Y',          # '25 Oct 2006', '25 Oct, 2006'
    22     # '%d %B %Y', '%d %B, %Y',          # '25 October 2006', '25 October, 2006'
     19    '%d-%m-%y', '%d/%m/%y',             # '25-10-09', 25/10/09'
     20    '%d-%m-%Y', '%d/%m/%Y',             # '25-10-2009', 25/10/2009'
     21    '%d %b %Y',                         # '25 Oct 2006',
     22    '%d %B %Y',                         # '25 October 2006'
    2323)
    2424
    2525TIME_INPUT_FORMATS = (
    26     '%H:%M:%S',                         # '14:30:59'
    27     '%H:%M',                            # '14:30'
     26    '%H.%M.%S',                         # '14.30.59'
     27    '%H.%M',                            # '14.30'
    2828)
    2929
    3030DATETIME_INPUT_FORMATS = (
    31     '%d-%m-%Y %H:%M:%S',                # '25-10-2009 14:30:59'
    32     '%d-%m-%Y %H:%M',                   # '25-10-2009 14:30'
     31    '%d-%m-%Y %H.%M.%S',                # '25-10-2009 14.30.59'
     32    '%d-%m-%Y %H.%M',                   # '25-10-2009 14.30'
    3333    '%d-%m-%Y',                         # '25-10-2009'
    34     '%d-%m-%y %H:%M:%S',                # '25-10-09' 14:30:59'
    35     '%d-%m-%y %H:%M',                   # '25-10-09' 14:30'
     34    '%d-%m-%y %H.%M.%S',                # '25-10-09' 14.30.59'
     35    '%d-%m-%y %H.%M',                   # '25-10-09' 14.30'
    3636    '%d-%m-%y',                         # '25-10-09''
    37     '%m/%d/%y %H:%M:%S',                # '10/25/06 14:30:59'
    38     '%m/%d/%y %H:%M',                   # '10/25/06 14:30'
     37    '%m/%d/%y %H.%M.%S',                # '10/25/06 14.30.59'
     38    '%m/%d/%y %H.%M',                   # '10/25/06 14.30'
    3939    '%m/%d/%y',                         # '10/25/06'
    40     '%m/%d/%Y %H:%M:%S',                # '25/10/2009 14:30:59'
    41     '%m/%d/%Y %H:%M',                   # '25/10/2009 14:30'
     40    '%m/%d/%Y %H.%M.%S',                # '25/10/2009 14.30.59'
     41    '%m/%d/%Y %H.%M',                   # '25/10/2009 14.30'
    4242    '%m/%d/%Y',                         # '10/25/2009'
    4343)
    4444
Back to Top