1
0
Fork 0

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
commit 047e3a324a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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)")),