feat(settings/base.py): add LOCALE_PATHS

This commit is contained in:
2026-03-11 12:35:26 +01:00
parent 6c56696240
commit f26da36700

View File

@@ -171,10 +171,15 @@ USE_I18N = True
USE_TZ = True USE_TZ = True
LANGUAGES = [ LANGUAGES = [
("pl", "Polski"), ("pl", "polski"),
("en", "English"), ("en", "English"),
] ]
LOCALE_PATHS = [
PROJECT_DIR / "locale",
BASE_DIR / "home" / "locale",
]
# Static files (CSS, JavaScript, Images) # Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/6.0/howto/static-files/ # https://docs.djangoproject.com/en/6.0/howto/static-files/