From 36072f17a99a7527b8863dd44de3a1e76fb6d765 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 7 Aug 2023 14:34:56 -0400 Subject: [PATCH] Define LOCALE_PATHS --- netbox/netbox/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index de1a55330..1fae55f2e 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -712,6 +712,10 @@ RQ_QUEUES.update({ # Localization # +LOCALE_PATHS = ( + BASE_DIR + '/translations', +) + if not ENABLE_LOCALIZATION: USE_I18N = False USE_L10N = False