From 4b65dc2f217d705ad9438212f38a31ac8c7d58ba Mon Sep 17 00:00:00 2001 From: r0Zh-ovanya Date: Thu, 19 Sep 2024 15:18:05 +0300 Subject: [PATCH] Updated link with valid options for LANGUAGE_CODE in global_settings.py. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> --- django/conf/global_settings.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 8e1d2ace09c..f4535acb09c 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -43,8 +43,10 @@ TIME_ZONE = "America/Chicago" # If you set this to True, Django will use timezone-aware datetimes. USE_TZ = True -# Language code for this installation. All choices can be found here: -# http://www.i18nguy.com/unicode/language-identifiers.html +# Language code for this installation. Valid choices can be found here: +# https://www.iana.org/assignments/language-subtag-registry/ +# If LANGUAGE_CODE is not listed in LANGUAGES (below), the project must +# provide the necessary translations and locale definitions. LANGUAGE_CODE = "en-us" # Languages we provide translations for, out of the box.