summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
Diffstat (limited to 'django')
-rw-r--r--django/conf/locale/th/formats.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/conf/locale/th/formats.py b/django/conf/locale/th/formats.py
index d4f478e0c1..5a980f097c 100644
--- a/django/conf/locale/th/formats.py
+++ b/django/conf/locale/th/formats.py
@@ -19,13 +19,13 @@ DATE_INPUT_FORMATS = [
'%d %B %Y', # 25 ตุลาคม 2006
]
TIME_INPUT_FORMATS = [
- '%H:%M:%S.%f', # 14:30:59.000200
'%H:%M:%S', # 14:30:59
+ '%H:%M:%S.%f', # 14:30:59.000200
'%H:%M', # 14:30
]
DATETIME_INPUT_FORMATS = [
- '%d/%m/%Y %H:%M:%S.%f', # 25/10/2006 14:30:59.000200
'%d/%m/%Y %H:%M:%S', # 25/10/2006 14:30:59
+ '%d/%m/%Y %H:%M:%S.%f', # 25/10/2006 14:30:59.000200
'%d/%m/%Y %H:%M', # 25/10/2006 14:30
]
DECIMAL_SEPARATOR = '.'