Ticket #16349: 16349-patch.diff
File 16349-patch.diff, 754 bytes (added by , 13 years ago) |
---|
-
django/conf/locale/pt_BR/formats.py
16 16 # The *_INPUT_FORMATS strings use the Python strftime format syntax, 17 17 # see http://docs.python.org/library/datetime.html#strftime-strptime-behavior 18 18 DATE_INPUT_FORMATS = ( 19 '% Y-%m-%d', '%d/%m/%Y', '%d/%m/%y', # '2006-10-25', '25/10/2006', '25/10/06'19 '%d/%m/%Y', '%d/%m/%y', '%Y-%m-%d', # '25/10/2006', '25/10/06', '2006-10-25' 20 20 # '%d de %b de %Y', '%d de %b, %Y', # '25 de Out de 2006', '25 Out, 2006' 21 21 # '%d de %B de %Y', '%d de %B, %Y', # '25 de Outubro de 2006', '25 de Outubro, 2006' 22 22 )