From 55f9512489214e6c8f92eb5a74c16475a8e89258 Mon Sep 17 00:00:00 2001 From: Candide U <55474996+candideu@users.noreply.github.com> Date: Mon, 29 Jan 2024 20:40:33 -0500 Subject: [PATCH] Corrected FIRST_DAY_OF_WEEK for fr_CA. Thanks Simon Charette for the review. --- django/conf/locale/fr_CA/formats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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