From 0b55d34d74ce092de75b9285d62b946b0942d809 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Thu, 17 Oct 2024 18:38:57 +0200 Subject: [PATCH] locale in settings --- dhub/settings.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dhub/settings.py b/dhub/settings.py index c307073..e109072 100644 --- a/dhub/settings.py +++ b/dhub/settings.py @@ -164,6 +164,11 @@ USE_I18N = True USE_TZ = True +USE_L10N = True +LANGUAGES = [ + ('es', 'Spanish'), + ('en', 'English'), +] # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/5.0/howto/static-files/