Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / conf / locale / es_AR / formats.py @ 1a305335

History | View | Annotate | Download (985 Bytes)

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
7
DATE_FORMAT = r'j N Y'
8
TIME_FORMAT = r'H:i:s'
9
DATETIME_FORMAT = r'j N Y H:i:s'
10
YEAR_MONTH_FORMAT = r'F Y'
11
MONTH_DAY_FORMAT = r'j \d\e F'
12
SHORT_DATE_FORMAT = r'd/m/Y'
13
SHORT_DATETIME_FORMAT = r'd/m/Y H:i'
14
FIRST_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
18
DATE_INPUT_FORMATS = (
19
    '%d/%m/%Y', # '31/12/2009'
20
    '%d/%m/%y', # '31/12/09'
21
)
22
TIME_INPUT_FORMATS = (
23
    '%H:%M:%S', # '14:30:59'
24
    '%H:%M',    # '14:30'
25
)
26
DATETIME_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
)
32
DECIMAL_SEPARATOR = ','
33
THOUSAND_SEPARATOR = '.'
34
NUMBER_GROUPING = 3