-
diff --git a/django/conf/locale/ar/formats.py b/django/conf/locale/ar/formats.py
index d8d627f..0c14e6e 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F، Y' |
6 | 8 | TIME_FORMAT = 'g:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd/m/Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/bg/formats.py b/django/conf/locale/bg/formats.py
index ea5f300..b5b54fa 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/bn/formats.py b/django/conf/locale/bn/formats.py
index 46e5da9..568ebef 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F, Y' |
6 | 8 | TIME_FORMAT = 'g:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M, Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/bs/formats.py b/django/conf/locale/bs/formats.py
index fc21ff8..fbaff62 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. N Y.' |
6 | 8 | TIME_FORMAT = 'G:i' |
7 | 9 | DATETIME_FORMAT = 'j. N. Y. G:i T' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y M j' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/ca/formats.py b/django/conf/locale/ca/formats.py
index 171f48f..be5c317 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'j \de F \de Y' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | DATETIME_FORMAT = r'j \de F \de Y \a \le\s G:i' |
… |
… |
MONTH_DAY_FORMAT = r'j \de F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd/m/Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd/m/Y G:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | # '31/12/2009', '31/12/09' |
15 | 20 | '%d/%m/%Y', '%d/%m/%y' |
-
diff --git a/django/conf/locale/cs/formats.py b/django/conf/locale/cs/formats.py
index bf90c1a..bc447ad 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | DATETIME_FORMAT = 'j. F Y G:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y G:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' |
15 | 20 | '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' |
-
diff --git a/django/conf/locale/cy/formats.py b/django/conf/locale/cy/formats.py
index a58d81f..1204b2f 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' |
6 | 8 | TIME_FORMAT = 'g:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
TIME_FORMAT = 'g:i:s A'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/da/formats.py b/django/conf/locale/da/formats.py
index ae34907..621d372 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y' |
6 | 8 | TIME_FORMAT = 'H:i' |
7 | 9 | DATETIME_FORMAT = 'j. F Y H:i' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d.%m.%Y', # '25.10.2006' |
15 | 20 | ) |
-
diff --git a/django/conf/locale/de/formats.py b/django/conf/locale/de/formats.py
index 7ea1d63..f20ea90 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = 'j. F Y H:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y H:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' |
15 | 20 | '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' |
-
diff --git a/django/conf/locale/el/formats.py b/django/conf/locale/el/formats.py
index d476ab3..07e105b 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' |
6 | 8 | TIME_FORMAT = 'g:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd M Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/en/formats.py b/django/conf/locale/en/formats.py
index c59a94a..b5ec639 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'N j, Y' |
6 | 8 | TIME_FORMAT = 'P' |
7 | 9 | DATETIME_FORMAT = 'N j, Y, P' |
… |
… |
MONTH_DAY_FORMAT = 'F j'
|
10 | 12 | SHORT_DATE_FORMAT = 'm/d/Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'm/d/Y P' |
12 | 14 | FIRST_DAY_OF_WEEK = 0 # Sunday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' |
15 | 20 | # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' |
-
diff --git a/django/conf/locale/en_GB/formats.py b/django/conf/locale/en_GB/formats.py
index b099797..1e9a984 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'N j, Y' # 'Oct. 25, 2006' |
6 | 8 | TIME_FORMAT = 'P' # '2:30 pm' |
7 | 9 | DATETIME_FORMAT = 'N j, Y, P' # 'Oct. 25, 2006, 2:30 pm' |
… |
… |
MONTH_DAY_FORMAT = 'F j' # 'October 25'
|
10 | 12 | SHORT_DATE_FORMAT = 'd/m/Y' # '25/10/2006' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd/m/Y P' # '25/10/2006 2:30 pm' |
12 | 14 | FIRST_DAY_OF_WEEK = 0 # Sunday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' |
15 | 20 | '%Y-%m-%d', # '2006-10-25' |
-
diff --git a/django/conf/locale/es/formats.py b/django/conf/locale/es/formats.py
index 58fd5fc..a3bab15 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'j \de F \de Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = r'j \de F \de Y \a \l\a\s H:i' |
… |
… |
MONTH_DAY_FORMAT = r'j \de F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd/m/Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd/m/Y H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | # '31/12/2009', '31/12/09' |
15 | 20 | '%d/%m/%Y', '%d/%m/%y' |
-
diff --git a/django/conf/locale/es_AR/formats.py b/django/conf/locale/es_AR/formats.py
index ac8c2eb..51a429d 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'j N Y' |
6 | 8 | TIME_FORMAT = r'H:i:s' |
7 | 9 | DATETIME_FORMAT = r'j N Y H:i:s' |
… |
… |
MONTH_DAY_FORMAT = r'j \de F'
|
10 | 12 | SHORT_DATE_FORMAT = r'd/m/Y' |
11 | 13 | SHORT_DATETIME_FORMAT = r'd/m/Y H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 0 # 0: Sunday, 1: Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d/%m/%Y', # '31/12/2009' |
15 | 20 | '%d/%m/%y', # '31/12/09' |
-
diff --git a/django/conf/locale/et/formats.py b/django/conf/locale/et/formats.py
index 101fcee..421cedb 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/eu/formats.py b/django/conf/locale/eu/formats.py
index 822dbfa..948d6b0 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'Yeko M\re\n d\a' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
TIME_FORMAT = 'H:i:s'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y M j' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/fa/formats.py b/django/conf/locale/fa/formats.py
index dc11281..4265eed 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | DATETIME_FORMAT = 'j F Y، ساعت G:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y/n/j' |
11 | 13 | SHORT_DATETIME_FORMAT = 'Y/n/j، G:i:s' |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/fi/formats.py b/django/conf/locale/fi/formats.py
index d6cc7d7..03f2e5d 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y' |
6 | 8 | TIME_FORMAT = 'G.i.s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j.n.Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/fr/formats.py b/django/conf/locale/fr/formats.py
index 121bb9b..bf2e377 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = 'j F Y H:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j N Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j N Y H:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' |
15 | 20 | '%d.%m.%Y', '%d.%m.%y', # Swiss (fr_CH), '25.10.2006', '25.10.06' |
-
diff --git a/django/conf/locale/fy_NL/formats.py b/django/conf/locale/fy_NL/formats.py
index 6d71786..ec73c96 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | # DATE_FORMAT = |
6 | 8 | # TIME_FORMAT = |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
|
10 | 12 | # SHORT_DATE_FORMAT = |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/ga/formats.py b/django/conf/locale/ga/formats.py
index f177bb2..0144ce0 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/gl/formats.py b/django/conf/locale/gl/formats.py
index e0a95d5..18dd596 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M, Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/he/formats.py b/django/conf/locale/he/formats.py
index 8d7c7f2..f5bcc3c 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j בF Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = 'j בF Y H:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j בF'
|
10 | 12 | SHORT_DATE_FORMAT = 'd/m/Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd/m/Y H:i:s' |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/hi/formats.py b/django/conf/locale/hi/formats.py
index 6afa258..4472981 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'g:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd-m-Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/hr/formats.py b/django/conf/locale/hr/formats.py
index 2f533a7..c37104e 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y.' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = 'j. F Y. H:i' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j.m.Y.' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j.m.Y. H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', # '2006-10-25' |
15 | 20 | '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' |
-
diff --git a/django/conf/locale/hu/formats.py b/django/conf/locale/hu/formats.py
index cb93e2f..c48350f 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'Y. F j.' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'F j.'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y.m.d.' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/id/formats.py b/django/conf/locale/id/formats.py
index 46b7486..923aaad 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j N Y' |
6 | 8 | DATETIME_FORMAT = "j N Y, G:i:s" |
7 | 9 | TIME_FORMAT = 'G:i:s' |
… |
… |
SHORT_DATE_FORMAT = 'd-m-Y'
|
11 | 13 | SHORT_DATETIME_FORMAT = 'd-m-Y G:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 #Monday |
13 | 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
14 | 18 | DATE_INPUT_FORMATS = ( |
15 | 19 | '%d-%m-%y', '%d/%m/%y', # '25-10-09' , 25/10/09' |
16 | 20 | '%d-%m-%Y', '%d/%m/%Y', # '25-10-2009' , 25/10/2009' |
-
diff --git a/django/conf/locale/is/formats.py b/django/conf/locale/is/formats.py
index b6377db..2aba813 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j.n.Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/it/formats.py b/django/conf/locale/it/formats.py
index f20f00c..9292a3a 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' # 25 Ottobre 2006 |
6 | 8 | TIME_FORMAT = 'H:i:s' # 14:30:59 |
7 | 9 | DATETIME_FORMAT = 'l d F Y H:i:s' # Mercoledì 25 Ottobre 2006 14:30:59 |
… |
… |
MONTH_DAY_FORMAT = 'j/F' # 10/2006
|
10 | 12 | SHORT_DATE_FORMAT = 'd/M/Y' # 25/12/2009 |
11 | 13 | SHORT_DATETIME_FORMAT = 'd/M/Y H:i:s' # 25/10/2009 14:30:59 |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Lunedì |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', '%Y/%m/%d', # '2008-10-25', '2008/10/25' |
15 | 20 | '%d-%m-%Y', '%d/%m/%Y', # '25-10-2006', '25/10/2006' |
-
diff --git a/django/conf/locale/ja/formats.py b/django/conf/locale/ja/formats.py
index 853056d..775811d 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'Y年n月j日' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | DATETIME_FORMAT = 'Y年n月j日G:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'n月j日'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y/m/d' |
11 | 13 | SHORT_DATETIME_FORMAT = 'Y/m/d G:i:s' |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/ka/formats.py b/django/conf/locale/ka/formats.py
index 01167a7..c69abf7 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'l, j F, Y' |
6 | 8 | TIME_FORMAT = 'h:i:s a' |
7 | 9 | DATETIME_FORMAT = 'j F, Y h:i:s a' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j.M.Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j.M.Y H:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # (Monday) |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' |
15 | 20 | # '%d %b %Y', '%d %b, %Y', '%d %b. %Y', # '25 Oct 2006', '25 Oct, 2006', '25 Oct. 2006' |
-
diff --git a/django/conf/locale/km/formats.py b/django/conf/locale/km/formats.py
index 3736d57..043901f 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j ខែ F ឆ្នាំ Y' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | DATETIME_FORMAT = 'j ខែ F ឆ្នាំ Y, G:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j M Y, G:i:s' |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/kn/formats.py b/django/conf/locale/kn/formats.py
index fa7a7b9..f8086e5 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'h:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/ko/formats.py b/django/conf/locale/ko/formats.py
index 7b0011c..2712aeb 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'Y년 n월 j일' |
6 | 8 | TIME_FORMAT = 'A g:i:s' |
7 | 9 | DATETIME_FORMAT = 'Y년 n월 j일 g:i:s A' |
… |
… |
MONTH_DAY_FORMAT = 'F월 j일'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y-n-j.' |
11 | 13 | SHORT_DATETIME_FORMAT = 'Y-n-j H:i' |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' |
15 | 20 | # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' |
-
diff --git a/django/conf/locale/lt/formats.py b/django/conf/locale/lt/formats.py
index 0b2cc78..fad24ab 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'Y \m. F j \d.' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
TIME_FORMAT = 'H:i:s'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y.m.d' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/lv/formats.py b/django/conf/locale/lv/formats.py
index 15637d1..e75fff2 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'Y. \g\a\d\a j. F' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = r'Y. \g\a\d\a j. F, H:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = r'j.m.Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j.m.Y H:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 #Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' |
15 | 20 | ) |
-
diff --git a/django/conf/locale/mk/formats.py b/django/conf/locale/mk/formats.py
index 746ac0e..cbd950f 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
TIME_FORMAT = 'H:i:s'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.n.Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/ml/formats.py b/django/conf/locale/ml/formats.py
index 141f705..ad8dbaa 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'N j, Y' |
6 | 8 | TIME_FORMAT = 'P' |
7 | 9 | DATETIME_FORMAT = 'N j, Y, P' |
… |
… |
MONTH_DAY_FORMAT = 'F j'
|
10 | 12 | SHORT_DATE_FORMAT = 'm/d/Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'm/d/Y P' |
12 | 14 | FIRST_DAY_OF_WEEK = 0 # Sunday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' |
15 | 20 | # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' |
-
diff --git a/django/conf/locale/mn/formats.py b/django/conf/locale/mn/formats.py
index a8e7783..aaa60ba 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' |
6 | 8 | TIME_FORMAT = 'g:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
TIME_FORMAT = 'g:i:s A'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/nb/formats.py b/django/conf/locale/nb/formats.py
index fbc6142..7320e50 100644
a
|
b
|
|
| 1 | # -*- encoding: utf-8 -*- |
| 2 | # This file is distributed under the same license as the Django package. |
| 3 | # |
| 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
1 | 7 | DATE_FORMAT = 'j. F Y' |
2 | 8 | TIME_FORMAT = 'H:i' |
3 | 9 | DATETIME_FORMAT = 'j. F Y H:i' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
6 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
7 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y H:i' |
8 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
9 | 18 | DATE_INPUT_FORMATS = ( |
10 | 19 | '%Y-%m-%d', '%j.%m.%Y', '%j.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' |
11 | 20 | '%Y-%m-%j', # '2006-10-25', |
-
diff --git a/django/conf/locale/nl/formats.py b/django/conf/locale/nl/formats.py
index cdbedb0..88a0285 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' # '20 januari 2009' |
6 | 8 | TIME_FORMAT = 'H:i' # '15:23' |
7 | 9 | DATETIME_FORMAT = 'j F Y H:i' # '20 januari 2009 15:23' |
… |
… |
MONTH_DAY_FORMAT = 'j F' # '20 januari'
|
10 | 12 | SHORT_DATE_FORMAT = 'j-n-Y' # '20-1-2009' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j-n-Y H:i' # '20-1-2009 15:23' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday (in Dutch 'maandag') |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d-%m-%Y', '%d-%m-%y', '%Y-%m-%d', # '20-01-2009', '20-01-09', '2009-01-20' |
15 | 20 | # '%d %b %Y', '%d %b %y', # '20 jan 2009', '20 jan 09' |
-
diff --git a/django/conf/locale/nn/formats.py b/django/conf/locale/nn/formats.py
index fbc6142..7320e50 100644
a
|
b
|
|
| 1 | # -*- encoding: utf-8 -*- |
| 2 | # This file is distributed under the same license as the Django package. |
| 3 | # |
| 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
1 | 7 | DATE_FORMAT = 'j. F Y' |
2 | 8 | TIME_FORMAT = 'H:i' |
3 | 9 | DATETIME_FORMAT = 'j. F Y H:i' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
6 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
7 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y H:i' |
8 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
9 | 18 | DATE_INPUT_FORMATS = ( |
10 | 19 | '%Y-%m-%d', '%j.%m.%Y', '%j.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' |
11 | 20 | '%Y-%m-%j', # '2006-10-25', |
-
diff --git a/django/conf/locale/no/formats.py b/django/conf/locale/no/formats.py
index fbc6142..7320e50 100644
a
|
b
|
|
| 1 | # -*- encoding: utf-8 -*- |
| 2 | # This file is distributed under the same license as the Django package. |
| 3 | # |
| 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
1 | 7 | DATE_FORMAT = 'j. F Y' |
2 | 8 | TIME_FORMAT = 'H:i' |
3 | 9 | DATETIME_FORMAT = 'j. F Y H:i' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
6 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
7 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y H:i' |
8 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
9 | 18 | DATE_INPUT_FORMATS = ( |
10 | 19 | '%Y-%m-%d', '%j.%m.%Y', '%j.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' |
11 | 20 | '%Y-%m-%j', # '2006-10-25', |
-
diff --git a/django/conf/locale/pl/formats.py b/django/conf/locale/pl/formats.py
index 4520f7c..619eff5 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = 'j F Y H:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd-m-Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd-m-Y H:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' |
15 | 20 | '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' |
-
diff --git a/django/conf/locale/pt/formats.py b/django/conf/locale/pt/formats.py
index 9317595..7c35a44 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'j \de F \de Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = r'j \de F \de Y à\s H:i' |
… |
… |
MONTH_DAY_FORMAT = r'j \de F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd/m/Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd/m/Y H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 0 # Sunday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', '%d/%m/%Y', '%d/%m/%y', # '2006-10-25', '25/10/2006', '25/10/06' |
15 | 20 | # '%d de %b de %Y', '%d de %b, %Y', # '25 de Out de 2006', '25 Out, 2006' |
-
diff --git a/django/conf/locale/pt_BR/formats.py b/django/conf/locale/pt_BR/formats.py
index 9cb5701..9d37801 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'j \de N \de Y' |
6 | 8 | TIME_FORMAT = 'H:i' |
7 | 9 | DATETIME_FORMAT = r'j \de N \de Y à\s H:i' |
… |
… |
MONTH_DAY_FORMAT = r'j \de F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd/m/Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd/m/Y H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 0 # Sunday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', '%d/%m/%Y', '%d/%m/%y', # '2006-10-25', '25/10/2006', '25/10/06' |
15 | 20 | # '%d de %b de %Y', '%d de %b, %Y', # '25 de Out de 2006', '25 Out, 2006' |
-
diff --git a/django/conf/locale/ro/formats.py b/django/conf/locale/ro/formats.py
index 6d6e800..ce93b28 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = 'j F Y, H:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y, H:i:s' |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/ru/formats.py b/django/conf/locale/ru/formats.py
index 6a32e5c..fe5c85d 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y г.' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | DATETIME_FORMAT = 'j F Y г. G:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d.%m.%Y', # '25.10.2006' |
15 | 20 | '%d.%m.%y', # '25.10.06' |
-
diff --git a/django/conf/locale/sk/formats.py b/django/conf/locale/sk/formats.py
index bf90c1a..bc447ad 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | DATETIME_FORMAT = 'j. F Y G:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd.m.Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd.m.Y G:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Monday |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' |
15 | 20 | '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' |
-
diff --git a/django/conf/locale/sl/formats.py b/django/conf/locale/sl/formats.py
index 4007f10..650333d 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd. F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j. M. Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/sq/formats.py b/django/conf/locale/sq/formats.py
index 1a66876..dddad4d 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' |
6 | 8 | TIME_FORMAT = 'g.i.s.A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y-m-d' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/sr/formats.py b/django/conf/locale/sr/formats.py
index cb0478e..e5324bc 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y.' |
6 | 8 | TIME_FORMAT = 'H:i' |
7 | 9 | DATETIME_FORMAT = 'j. F Y. H:i' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j.m.Y.' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j.m.Y. H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' |
15 | 20 | '%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.' |
-
diff --git a/django/conf/locale/sr_Latn/formats.py b/django/conf/locale/sr_Latn/formats.py
index cb0478e..e5324bc 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j. F Y.' |
6 | 8 | TIME_FORMAT = 'H:i' |
7 | 9 | DATETIME_FORMAT = 'j. F Y. H:i' |
… |
… |
MONTH_DAY_FORMAT = 'j. F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j.m.Y.' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j.m.Y. H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' |
15 | 20 | '%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.' |
-
diff --git a/django/conf/locale/sv/formats.py b/django/conf/locale/sv/formats.py
index 4f215b2..defe8d5 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'H:i' |
7 | 9 | DATETIME_FORMAT = 'j F Y H:i' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'Y-m-d' |
11 | 13 | SHORT_DATETIME_FORMAT = 'Y-m-d H:i' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%Y-%m-%d', # '2006-10-25' |
15 | 20 | '%m/%d/%Y', # '10/25/2006' |
-
diff --git a/django/conf/locale/ta/formats.py b/django/conf/locale/ta/formats.py
index 69fa17d..4c8eeb6 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F, Y' |
6 | 8 | TIME_FORMAT = 'g:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M, Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/te/formats.py b/django/conf/locale/te/formats.py
index e805872..d8f1d75 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'g:i:s A' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/th/formats.py b/django/conf/locale/th/formats.py
index 7091dc6..8cd192e 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y' |
6 | 8 | TIME_FORMAT = 'G:i:s' |
7 | 9 | DATETIME_FORMAT = 'j F Y, G:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'j M Y, G:i:s' |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/tr/formats.py b/django/conf/locale/tr/formats.py
index 9872980..03015e5 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'd F Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = 'd F Y H:i:s' |
… |
… |
MONTH_DAY_FORMAT = 'd F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd M Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'd M Y H:i:s' |
12 | 14 | FIRST_DAY_OF_WEEK = 1 # Pazartesi |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | DATE_INPUT_FORMATS = ( |
14 | 19 | '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' |
15 | 20 | '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' |
-
diff --git a/django/conf/locale/uk/formats.py b/django/conf/locale/uk/formats.py
index 8c01f3d..d5ea44b 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = 'j F Y р.' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'j M Y' |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/vi/formats.py b/django/conf/locale/vi/formats.py
index 3a42079..4c57a6a 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | DATE_FORMAT = r'\N\gà\y d \t\há\n\g n \nă\m Y' |
6 | 8 | TIME_FORMAT = 'H:i:s' |
7 | 9 | DATETIME_FORMAT = r'H:i:s \N\gà\y d \t\há\n\g n \nă\m Y' |
… |
… |
MONTH_DAY_FORMAT = 'j F'
|
10 | 12 | SHORT_DATE_FORMAT = 'd-m-Y' |
11 | 13 | SHORT_DATETIME_FORMAT = 'H:i:s d-m-Y' |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/zh_CN/formats.py b/django/conf/locale/zh_CN/formats.py
index 6d71786..ec73c96 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | # DATE_FORMAT = |
6 | 8 | # TIME_FORMAT = |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
|
10 | 12 | # SHORT_DATE_FORMAT = |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |
-
diff --git a/django/conf/locale/zh_TW/formats.py b/django/conf/locale/zh_TW/formats.py
index 6d71786..ec73c96 100644
a
|
b
|
|
2 | 2 | # This file is distributed under the same license as the Django package. |
3 | 3 | # |
4 | 4 | |
| 5 | # FORMAT strings are using the Django date syntax |
| 6 | # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | 7 | # DATE_FORMAT = |
6 | 8 | # TIME_FORMAT = |
7 | 9 | # DATETIME_FORMAT = |
… |
… |
|
10 | 12 | # SHORT_DATE_FORMAT = |
11 | 13 | # SHORT_DATETIME_FORMAT = |
12 | 14 | # FIRST_DAY_OF_WEEK = |
| 15 | |
| 16 | # Input formats are using the python strftime syntax |
| 17 | # http://docs.python.org/library/datetime.html#strftime-strptime-behavior |
13 | 18 | # DATE_INPUT_FORMATS = |
14 | 19 | # TIME_INPUT_FORMATS = |
15 | 20 | # DATETIME_INPUT_FORMATS = |