/django/conf/locale/es_AR/formats.py
Python | 34 lines | 25 code | 2 blank | 7 comment | 0 complexity | af1dc3c93fdb4c23acc6a1ede7466b1b MD5 | raw file
1# -*- encoding: utf-8 -*- 2# This file is distributed under the same license as the Django package. 3# 4 5# The *_FORMAT strings use the Django date format syntax, 6# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date 7DATE_FORMAT = r'j N Y' 8TIME_FORMAT = r'H:i:s' 9DATETIME_FORMAT = r'j N Y H:i:s' 10YEAR_MONTH_FORMAT = r'F Y' 11MONTH_DAY_FORMAT = r'j \de F' 12SHORT_DATE_FORMAT = r'd/m/Y' 13SHORT_DATETIME_FORMAT = r'd/m/Y H:i' 14FIRST_DAY_OF_WEEK = 0 # 0: Sunday, 1: Monday 15 16# The *_INPUT_FORMATS strings use the Python strftime format syntax, 17# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior 18DATE_INPUT_FORMATS = ( 19 '%d/%m/%Y', # '31/12/2009' 20 '%d/%m/%y', # '31/12/09' 21) 22TIME_INPUT_FORMATS = ( 23 '%H:%M:%S', # '14:30:59' 24 '%H:%M', # '14:30' 25) 26DATETIME_INPUT_FORMATS = ( 27 '%d/%m/%Y %H:%M:%S', 28 '%d/%m/%Y %H:%M', 29 '%d/%m/%y %H:%M:%S', 30 '%d/%m/%y %H:%M', 31) 32DECIMAL_SEPARATOR = ',' 33THOUSAND_SEPARATOR = '.' 34NUMBER_GROUPING = 3