diff options
| author | Candide U <55474996+candideu@users.noreply.github.com> | 2024-01-29 20:40:33 -0500 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-02-01 05:22:31 +0100 |
| commit | 55f9512489214e6c8f92eb5a74c16475a8e89258 (patch) | |
| tree | e8189a4b28d6c7b02ed1f8b6f3c5106796594020 /django/conf | |
| parent | 11393ab1316f973c5fbb534305750740d909b4e4 (diff) | |
Corrected FIRST_DAY_OF_WEEK for fr_CA.
Thanks Simon Charette for the review.
Diffstat (limited to 'django/conf')
| -rw-r--r-- | django/conf/locale/fr_CA/formats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/locale/fr_CA/formats.py b/django/conf/locale/fr_CA/formats.py index b03e4ee4c3..4f1a017f16 100644 --- a/django/conf/locale/fr_CA/formats.py +++ b/django/conf/locale/fr_CA/formats.py @@ -9,7 +9,7 @@ YEAR_MONTH_FORMAT = "F Y" MONTH_DAY_FORMAT = "j F" SHORT_DATE_FORMAT = "Y-m-d" SHORT_DATETIME_FORMAT = "Y-m-d H\xa0h\xa0i" -FIRST_DAY_OF_WEEK = 1 # Lundi +FIRST_DAY_OF_WEEK = 0 # Dimanche # The *_INPUT_FORMATS strings use the Python strftime format syntax, # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior |
