Merge pull request #1855 from bookwyrm-social/instance-default-language

Makes default language configurable
This commit is contained in:
Mouse Reeve
2022-01-27 13:25:12 -08:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@ -243,7 +243,7 @@ AUTH_PASSWORD_VALIDATORS = [
# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/
LANGUAGE_CODE = "en-us"
LANGUAGE_CODE = env("LANGUAGE_CODE", "en-us")
LANGUAGES = [
("en-us", _("English")),
("de-de", _("Deutsch (German)")),