diff --git a/django/conf/locale/ca/formats.py b/django/conf/locale/ca/formats.py
index 2f91009119..e6162990d1 100644
a
|
b
|
|
2 | 2 | # |
3 | 3 | # The *_FORMAT strings use the Django date format syntax, |
4 | 4 | # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date |
5 | | DATE_FORMAT = r"j \d\e F \d\e Y" |
| 5 | DATE_FORMAT = r"j E \d\e Y" |
6 | 6 | TIME_FORMAT = "G:i" |
7 | | DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\e\s G:i" |
| 7 | DATETIME_FORMAT = r"j E \d\e Y \a \l\e\s G:i" |
8 | 8 | YEAR_MONTH_FORMAT = r"F \d\e\l Y" |
9 | | MONTH_DAY_FORMAT = r"j \d\e F" |
| 9 | MONTH_DAY_FORMAT = r"j E" |
10 | 10 | SHORT_DATE_FORMAT = "d/m/Y" |
11 | 11 | SHORT_DATETIME_FORMAT = "d/m/Y G:i" |
12 | 12 | FIRST_DAY_OF_WEEK = 1 # Monday |