Adds test localization file

This commit is contained in:
Mouse Reeve
2021-02-27 15:00:19 -08:00
parent 8e5e3a84d6
commit b2e431daed
4 changed files with 433 additions and 10 deletions

View File

@ -30,6 +30,11 @@ EMAIL_USE_TLS = env('EMAIL_USE_TLS', True)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
LOCALE_PATHS = [os.path.join(BASE_DIR, 'locale'),]
LANGUAGES = [
('en-US', _('English')),
('en-beep', _('Beep')),
]
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/