~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to django/conf/locale/sr_Latn/formats.py

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (1.2.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: james.westby@ubuntu.com-20101012113435-9lnsrh0i3mxozbt0
Tags: upstream-1.2.3
ImportĀ upstreamĀ versionĀ 1.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
SHORT_DATETIME_FORMAT = 'j.m.Y. H:i'
12
12
FIRST_DAY_OF_WEEK = 1
13
13
DATE_INPUT_FORMATS = (
14
 
    '%Y-%m-%d',                     # '2006-10-25'
15
14
    '%d.%m.%Y.', '%d.%m.%y.',       # '25.10.2006.', '25.10.06.'
16
15
    '%d. %m. %Y.', '%d. %m. %y.',   # '25. 10. 2006.', '25. 10. 06.'
 
16
    '%Y-%m-%d',                     # '2006-10-25'
17
17
    # '%d. %b %y.', '%d. %B %y.',     # '25. Oct 06.', '25. October 06.'
18
18
    # '%d. %b \'%y.', '%d. %B \'%y.', # '25. Oct '06.', '25. October '06.'
19
19
    # '%d. %b %Y.', '%d. %B %Y.',     # '25. Oct 2006.', '25. October 2006.'
23
23
    '%H:%M',        # '14:30'
24
24
)
25
25
DATETIME_INPUT_FORMATS = (
26
 
    '%Y-%m-%d %H:%M:%S',      # '2006-10-25 14:30:59'
27
 
    '%Y-%m-%d %H:%M',         # '2006-10-25 14:30'
28
 
    '%Y-%m-%d',               # '2006-10-25'
29
26
    '%d.%m.%Y. %H:%M:%S',     # '25.10.2006. 14:30:59'
30
27
    '%d.%m.%Y. %H:%M',        # '25.10.2006. 14:30'
31
28
    '%d.%m.%Y.',              # '25.10.2006.'
38
35
    '%d. %m. %y. %H:%M:%S',   # '25. 10. 06. 14:30:59'
39
36
    '%d. %m. %y. %H:%M',      # '25. 10. 06. 14:30'
40
37
    '%d. %m. %y.',            # '25. 10. 06.'
 
38
    '%Y-%m-%d %H:%M:%S',      # '2006-10-25 14:30:59'
 
39
    '%Y-%m-%d %H:%M',         # '2006-10-25 14:30'
 
40
    '%Y-%m-%d',               # '2006-10-25'
41
41
)
42
 
DECIMAL_SEPARATOR = '.'
43
 
THOUSAND_SEPARATOR = ','
 
42
DECIMAL_SEPARATOR = ','
 
43
THOUSAND_SEPARATOR = '.'
44
44
NUMBER_GROUPING = 3