set default LANGUAGE_CODE to 'de' instead of 'en-us'

This commit is contained in:
Roman 2025-09-01 12:47:24 +02:00
parent 6585eeaf78
commit 63b07bdf22
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ AUTH_PASSWORD_VALIDATORS = password_validators(
USE_I18N = True
USE_L10N = True
LANGUAGE_CODE = env('LANGUAGE_CODE', 'en-us')
LANGUAGE_CODE = env('LANGUAGE_CODE', 'de')
USE_TZ = True
TIME_ZONE = env('TIME_ZONE', 'UTC')