summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorReza Mohammadi <remohammadi@gmail.com>2015-01-17 17:23:02 +0330
committerTim Graham <timograham@gmail.com>2015-01-29 12:55:20 -0500
commitf1ff9407c94c4574d100efc3d224c1f79e2fb53d (patch)
tree4f15feda7ecf305ed2433f9d32b4f021aa991a8b /django
parent63412262e54b4814fe115502bebded9c9993b6f7 (diff)
downloaddjango-f1ff9407c94c4574d100efc3d224c1f79e2fb53d.tar.gz
Fixed Persian locale FIRST_DAY_OF_WEEK & DECIMAL/THOUSAND_SEPARATORs.
Reference: http://lh.2xlibre.net/locale/fa_IR/
Diffstat (limited to 'django')
-rw-r--r--django/conf/locale/fa/formats.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/conf/locale/fa/formats.py b/django/conf/locale/fa/formats.py
index f70cb8387a..c1678b81cd 100644
--- a/django/conf/locale/fa/formats.py
+++ b/django/conf/locale/fa/formats.py
@@ -12,13 +12,13 @@ YEAR_MONTH_FORMAT = 'F Y'
MONTH_DAY_FORMAT = 'j F'
SHORT_DATE_FORMAT = 'Y/n/j'
SHORT_DATETIME_FORMAT = 'Y/n/j،‏ G:i'
-# FIRST_DAY_OF_WEEK =
+FIRST_DAY_OF_WEEK = 6
# The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS =
-DECIMAL_SEPARATOR = ','
-THOUSAND_SEPARATOR = '.'
+DECIMAL_SEPARATOR = '.'
+THOUSAND_SEPARATOR = ','
# NUMBER_GROUPING =