From 5071fbf6c964a85f11702a2e234983fd7aa1b00c Mon Sep 17 00:00:00 2001 From: "zdenek.kubala" <11-djz.88@users.noreply.gitlab> Date: Fri, 10 Sep 2021 16:22:32 +0200 Subject: [PATCH] set default language to czech in settings.py --- django_apps/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/django_apps/settings.py b/django_apps/settings.py index 4055760..2bac3e6 100644 --- a/django_apps/settings.py +++ b/django_apps/settings.py @@ -122,9 +122,10 @@ AUTH_PASSWORD_VALIDATORS = [ # Internationalization # https://docs.djangoproject.com/en/3.2/topics/i18n/ -LANGUAGE_CODE = "en-us" +#LANGUAGE_CODE = "en-us" +LANGUAGE_CODE = "cs" -TIME_ZONE = "UTC" +TIME_ZONE = "Europe/Prague" USE_I18N = True -- GitLab