From d96d22be79590eb8a078de7a6c85013650356ba6 Mon Sep 17 00:00:00 2001 From: Tomas Kubla Date: Tue, 6 Feb 2024 13:57:58 +0100 Subject: [PATCH] Remove DD_USE_L10N --- dojo/settings/settings.dist.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dojo/settings/settings.dist.py b/dojo/settings/settings.dist.py index fad2454b7ca..5b772a6daef 100644 --- a/dojo/settings/settings.dist.py +++ b/dojo/settings/settings.dist.py @@ -55,7 +55,6 @@ DD_LANGUAGE_CODE=(str, 'en-us'), DD_SITE_ID=(int, 1), DD_USE_I18N=(bool, True), - DD_USE_L10N=(bool, True), DD_USE_TZ=(bool, True), DD_MEDIA_URL=(str, '/media/'), DD_MEDIA_ROOT=(str, root('media')), @@ -345,10 +344,6 @@ def generate_url(scheme, double_slashes, user, password, host, port, path, param # to load the internationalization machinery. USE_I18N = env('DD_USE_I18N') -# If you set this to False, Django will not format dates, numbers and -# calendars according to the current locale. -USE_L10N = env('DD_USE_L10N') - # If you set this to False, Django will not use timezone-aware datetimes. USE_TZ = env('DD_USE_TZ') @@ -1665,8 +1660,6 @@ def saml2_attrib_map_format(dict): EDITABLE_MITIGATED_DATA = env('DD_EDITABLE_MITIGATED_DATA') -USE_L10N = True - # FEATURE_FINDING_GROUPS feature is moved to system_settings, will be removed from settings file FEATURE_FINDING_GROUPS = env('DD_FEATURE_FINDING_GROUPS') JIRA_TEMPLATE_ROOT = env('DD_JIRA_TEMPLATE_ROOT')