~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2014-09-17 14:15:11 UTC
  • mfrom: (1.3.17) (6.2.18 experimental)
  • Revision ID: package-import@ubuntu.com-20140917141511-icneokthe9ww5sk4
Tags: 1.7-2
* Release to unstable.
* Add a migrate-south sample script to help users apply their South
  migrations. Thanks to Brian May.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    # '%d. %b %Y.', '%d. %B %Y.',     # '25. Oct 2006.', '25. October 2006.'
25
25
)
26
26
DATETIME_INPUT_FORMATS = (
27
 
    '%d.%m.%Y. %H:%M:%S',     # '25.10.2006. 14:30:59'
28
 
    '%d.%m.%Y. %H:%M:%S.%f',  # '25.10.2006. 14:30:59.000200'
29
 
    '%d.%m.%Y. %H:%M',        # '25.10.2006. 14:30'
30
 
    '%d.%m.%Y.',              # '25.10.2006.'
31
 
    '%d.%m.%y. %H:%M:%S',     # '25.10.06. 14:30:59'
32
 
    '%d.%m.%y. %H:%M:%S.%f',  # '25.10.06. 14:30:59.000200'
33
 
    '%d.%m.%y. %H:%M',        # '25.10.06. 14:30'
34
 
    '%d.%m.%y.',              # '25.10.06.'
35
 
    '%d. %m. %Y. %H:%M:%S',   # '25. 10. 2006. 14:30:59'
36
 
    '%d. %m. %Y. %H:%M:%S.%f', # '25. 10. 2006. 14:30:59.000200'
37
 
    '%d. %m. %Y. %H:%M',      # '25. 10. 2006. 14:30'
38
 
    '%d. %m. %Y.',            # '25. 10. 2006.'
39
 
    '%d. %m. %y. %H:%M:%S',   # '25. 10. 06. 14:30:59'
40
 
    '%d. %m. %y. %H:%M:%S.%f', # '25. 10. 06. 14:30:59.000200'
41
 
    '%d. %m. %y. %H:%M',      # '25. 10. 06. 14:30'
42
 
    '%d. %m. %y.',            # '25. 10. 06.'
 
27
    '%d.%m.%Y. %H:%M:%S',       # '25.10.2006. 14:30:59'
 
28
    '%d.%m.%Y. %H:%M:%S.%f',    # '25.10.2006. 14:30:59.000200'
 
29
    '%d.%m.%Y. %H:%M',          # '25.10.2006. 14:30'
 
30
    '%d.%m.%Y.',                # '25.10.2006.'
 
31
    '%d.%m.%y. %H:%M:%S',       # '25.10.06. 14:30:59'
 
32
    '%d.%m.%y. %H:%M:%S.%f',    # '25.10.06. 14:30:59.000200'
 
33
    '%d.%m.%y. %H:%M',          # '25.10.06. 14:30'
 
34
    '%d.%m.%y.',                # '25.10.06.'
 
35
    '%d. %m. %Y. %H:%M:%S',     # '25. 10. 2006. 14:30:59'
 
36
    '%d. %m. %Y. %H:%M:%S.%f',  # '25. 10. 2006. 14:30:59.000200'
 
37
    '%d. %m. %Y. %H:%M',        # '25. 10. 2006. 14:30'
 
38
    '%d. %m. %Y.',              # '25. 10. 2006.'
 
39
    '%d. %m. %y. %H:%M:%S',     # '25. 10. 06. 14:30:59'
 
40
    '%d. %m. %y. %H:%M:%S.%f',  # '25. 10. 06. 14:30:59.000200'
 
41
    '%d. %m. %y. %H:%M',        # '25. 10. 06. 14:30'
 
42
    '%d. %m. %y.',              # '25. 10. 06.'
43
43
)
44
44
DECIMAL_SEPARATOR = ','
45
45
THOUSAND_SEPARATOR = '.'