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

« back to all changes in this revision

Viewing changes to django/conf/locale/ko/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:
18
18
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior
19
19
# Kept ISO formats as they are in first position
20
20
DATE_INPUT_FORMATS = (
21
 
    '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06'
 
21
    '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y',  # '2006-10-25', '10/25/2006', '10/25/06'
22
22
    # '%b %d %Y', '%b %d, %Y',            # 'Oct 25 2006', 'Oct 25, 2006'
23
23
    # '%d %b %Y', '%d %b, %Y',            # '25 Oct 2006', '25 Oct, 2006'
24
24
    # '%B %d %Y', '%B %d, %Y',            # 'October 25 2006', 'October 25, 2006'