list of langs

This commit is contained in:
Cayo Puigdefabregas 2023-12-14 12:13:58 +01:00
parent 2ef26ab9a2
commit 1a4bb0845d
1 changed files with 6 additions and 0 deletions

View File

@ -190,6 +190,12 @@ LOCALE_PATHS = [
# LANGUAGE_CODE="en"
# LANGUAGE_CODE="es"
LANGUAGE_CODE="ca"
gettext = lambda s: s
LANGUAGES = (
('de', gettext('German')),
('en', gettext('English')),
('ca', gettext('Catalan')),
)
USE_I18N = True
USE_L10N = True