From d94b12d1a0cdd62cb6cfe523cfba4733b3c6c8b0 Mon Sep 17 00:00:00 2001
From: Cayo Puigdefabregas <cayo@puigdefabregas.eu>
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/