Translations

* adds/updates translations
This commit is contained in:
2021-10-15 09:25:26 +02:00
parent c209b2eb86
commit a5be369ee6
4 changed files with 49 additions and 44 deletions

View File

@@ -8,6 +8,7 @@ Created on: 16.11.20
from django.http import HttpRequest
from konova.sub_settings.context_settings import BASE_TITLE, HELP_LINK, BASE_FRONTEND_TITLE
from konova.sub_settings.django_settings import LANGUAGE_CODE
class BaseContext:
@@ -17,7 +18,7 @@ class BaseContext:
context = {
"base_title": BASE_TITLE,
"base_frontend_title": BASE_FRONTEND_TITLE,
"language": "en",
"language": LANGUAGE_CODE,
"user": None,
"current_role": None,
"help_link": HELP_LINK,