diff options
| author | Reza Mohammadi <remohammadi@gmail.com> | 2015-01-17 17:23:02 +0330 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-29 13:02:49 -0500 |
| commit | 590ee3ed167ef7d1dad681efd6d9a4dc0767f02a (patch) | |
| tree | 90d9ee5a7e497908688b33acc0f98dffee6bc2d8 | |
| parent | 6002393a976c457ec1a08e59cc03ce732032371d (diff) | |
[1.8.x] Fixed Persian locale FIRST_DAY_OF_WEEK & DECIMAL/THOUSAND_SEPARATORs.
Reference: http://lh.2xlibre.net/locale/fa_IR/
Backport of f1ff9407c94c4574d100efc3d224c1f79e2fb53d from master
| -rw-r--r-- | django/conf/locale/fa/formats.py | 6 |
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 = |
