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
LANGUAGES = [
("pl", "Polski"),
("pl", "polski"),
("en", "English"),
]
LOCALE_PATHS = [
PROJECT_DIR / "locale",
BASE_DIR / "home" / "locale",
]
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/6.0/howto/static-files/