Author: jezdez
Date: 2010-05-07 13:53:37 -0500 (Fri, 07 May 2010)
New Revision: 13122

Modified:
   django/trunk/django/conf/locale/sv/formats.py
Log:
Fixed #13485 - Updated Swedish formats. Thanks, algestam.

Modified: django/trunk/django/conf/locale/sv/formats.py
===================================================================
--- django/trunk/django/conf/locale/sv/formats.py       2010-05-07 18:53:19 UTC 
(rev 13121)
+++ django/trunk/django/conf/locale/sv/formats.py       2010-05-07 18:53:37 UTC 
(rev 13122)
@@ -11,13 +11,24 @@
 SHORT_DATETIME_FORMAT = 'Y-m-d H:i'
 FIRST_DAY_OF_WEEK = 1
 DATE_INPUT_FORMATS = (
-    '%Y-%m-%d',                     # '2006-10-25'
+    '%Y-%m-%d',              # '2006-10-25'
+    '%m/%d/%Y',              # '10/25/2006'
+    '%m/%d/%y',              # '10/25/06'
 )
 TIME_INPUT_FORMATS = (
-    '%H:%i',                        # '14:30'
+    '%H:%M:%S',     # '14:30:59'
+    '%H:%M',        # '14:30'
 )
 DATETIME_INPUT_FORMATS = (
-    '%Y-%m-%d %H:%i',               # '2006-10-25 14:30'
+    '%Y-%m-%d %H:%M:%S',     # '2006-10-25 14:30:59'
+    '%Y-%m-%d %H:%M',        # '2006-10-25 14:30'
+    '%Y-%m-%d',              # '2006-10-25'
+    '%m/%d/%Y %H:%M:%S',     # '10/25/2006 14:30:59'
+    '%m/%d/%Y %H:%M',        # '10/25/2006 14:30'
+    '%m/%d/%Y',              # '10/25/2006'
+    '%m/%d/%y %H:%M:%S',     # '10/25/06 14:30:59'
+    '%m/%d/%y %H:%M',        # '10/25/06 14:30'
+    '%m/%d/%y',              # '10/25/06'
 )
 DECIMAL_SEPARATOR = '.'
 THOUSAND_SEPARATOR = ' '

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to