~ubuntuone-pqm-team/django/stable

« back to all changes in this revision

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

  • Committer: Matias Bordese
  • Date: 2014-08-21 21:22:40 UTC
  • Revision ID: matias.bordese@canonical.com-20140821212240-tij4ms6qzjbdiioz
Tags: 1.5.9
Imported Django 1.5.9 from released tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
)
22
22
TIME_INPUT_FORMATS = (
23
23
    '%H:%M:%S',     # '14:30:59'
24
 
    '%H:%M:%S.%f',  # '14:30:59.000200'
25
 
    '%H:%M',        # '14:30'
26
 
    '%H.%M.%S',     # '14.30.59'
27
 
    '%H.%M.%S.%f',  # '14.30.59.000200'
28
 
    '%H.%M',        # '14.30'
 
24
    '%H:%M',     # '14:30'
 
25
    '%H.%M.%S', # '14.30.59'
 
26
    '%H.%M', # '14.30'
29
27
)
30
28
DATETIME_INPUT_FORMATS = (
31
29
    '%Y-%m-%d %H:%M:%S',     # '2006-10-25 14:30:59'
32
 
    '%Y-%m-%d %H:%M:%S.%f',  # '2006-10-25 14:30:59.000200'
33
30
    '%Y-%m-%d %H:%M',        # '2006-10-25 14:30'
34
31
    '%d.%m.%Y %H:%M:%S',     # '25.10.2006 14:30:59'
35
 
    '%d.%m.%Y %H:%M:%S.%f',  # '25.10.2006 14:30:59.000200'
36
32
    '%d.%m.%Y %H:%M',        # '25.10.2006 14:30'
37
33
    '%d.%m.%Y',              # '25.10.2006'
38
34
    '%d.%m.%y %H:%M:%S',     # '25.10.06 14:30:59'
39
 
    '%d.%m.%y %H:%M:%S.%f',  # '25.10.06 14:30:59.000200'
40
35
    '%d.%m.%y %H:%M',        # '25.10.06 14:30'
41
36
    '%d.%m.%y %H.%M.%S',     # '25.10.06 14.30.59'
42
 
    '%d.%m.%y %H.%M.%S.%f',  # '25.10.06 14.30.59.000200'
43
37
    '%d.%m.%y %H.%M',        # '25.10.06 14.30'
44
38
    '%d.%m.%y',              # '25.10.06'
45
39
)