Updated translations

This commit is contained in:
Emanuel Schütze 2021-03-19 11:03:34 +01:00
parent eadb0e2f0e
commit bd29777d83
6 changed files with 27 additions and 7 deletions

View File

@ -431,8 +431,10 @@ _(
// users misc // users misc
_('Username or password is not correct.'); _('Username or password is not correct.');
_('Please login via your identity provider'); _('Please login via your identity provider.');
_('Your account is not active.');
_('You are not authenticated.'); _('You are not authenticated.');
_('Cookies have to be enabled to use OpenSlides.');
_('Guest'); _('Guest');
_('Participant'); _('Participant');
_('No users with email {0} found.'); _('No users with email {0} found.');

File diff suppressed because one or more lines are too long

View File

@ -785,6 +785,9 @@ msgstr "Alle Nutzer automatisch mit der Livekonferenz verbinden"
msgid "Content" msgid "Content"
msgstr "Inhalt" msgstr "Inhalt"
msgid "Cookies have to be enabled to use OpenSlides."
msgstr "Cookies müssen aktiviert sein, um OpenSlides verwenden zu können."
msgid "Copy and paste your participant names in this textbox." msgid "Copy and paste your participant names in this textbox."
msgstr "Kopieren Sie die Name Ihrer Teilnehmer*innen in diese Textbox." msgstr "Kopieren Sie die Name Ihrer Teilnehmer*innen in diese Textbox."
@ -1651,6 +1654,9 @@ msgstr "Teilnehmendenliste (PDF)"
msgid "List of speakers" msgid "List of speakers"
msgstr "Redeliste" msgstr "Redeliste"
msgid "List of speakers is initially closed"
msgstr "Redelisten sind zunächst geschlossen"
msgid "List of speakers overlay" msgid "List of speakers overlay"
msgstr "Redelisten-Einblendung" msgstr "Redelisten-Einblendung"
@ -2267,8 +2273,8 @@ msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein!"
msgid "Please enter your new password" msgid "Please enter your new password"
msgstr "Bitte geben Sie Ihr neues Passwort ein" msgstr "Bitte geben Sie Ihr neues Passwort ein"
msgid "Please login via your identity provider" msgid "Please login via your identity provider."
msgstr "Bitte melden Sie sich über Ihren Identity Provider an" msgstr "Bitte melden Sie sich über Ihren Identity Provider an."
msgid "Please select the directory:" msgid "Please select the directory:"
msgstr "Bitte wählen Sie das Verzeichnis aus:" msgstr "Bitte wählen Sie das Verzeichnis aus:"
@ -3484,6 +3490,9 @@ msgstr ""
"Sie haben die maximale Anzahl von Stimmen erreicht. Deselektieren Sie zuerst" "Sie haben die maximale Anzahl von Stimmen erreicht. Deselektieren Sie zuerst"
" eine Auswahl." " eine Auswahl."
msgid "Your account is not active."
msgstr "Ihr Nutzerkonto ist nicht aktiv."
msgid "Your browser" msgid "Your browser"
msgstr "Ihr Browser" msgstr "Ihr Browser"

View File

@ -738,6 +738,9 @@ msgstr ""
msgid "Content" msgid "Content"
msgstr "" msgstr ""
msgid "Cookies have to be enabled to use OpenSlides."
msgstr ""
msgid "Copy and paste your participant names in this textbox." msgid "Copy and paste your participant names in this textbox."
msgstr "" msgstr ""
@ -1562,6 +1565,9 @@ msgstr ""
msgid "List of speakers" msgid "List of speakers"
msgstr "" msgstr ""
msgid "List of speakers is initially closed"
msgstr ""
msgid "List of speakers overlay" msgid "List of speakers overlay"
msgstr "" msgstr ""
@ -2163,7 +2169,7 @@ msgstr ""
msgid "Please enter your new password" msgid "Please enter your new password"
msgstr "" msgstr ""
msgid "Please login via your identity provider" msgid "Please login via your identity provider."
msgstr "" msgstr ""
msgid "Please select the directory:" msgid "Please select the directory:"
@ -3294,6 +3300,9 @@ msgstr ""
msgid "You reached the maximum amount of votes. Deselect somebody first." msgid "You reached the maximum amount of votes. Deselect somebody first."
msgstr "" msgstr ""
msgid "Your account is not active."
msgstr ""
msgid "Your browser" msgid "Your browser"
msgstr "" msgstr ""

View File

@ -895,7 +895,7 @@ class UserLoginView(WhoAmIDataView):
if user is None: if user is None:
raise ValidationError({"detail": "Username or password is not correct."}) raise ValidationError({"detail": "Username or password is not correct."})
elif not user.is_active: elif not user.is_active:
raise ValidationError({"detail": "You are not active."}) raise ValidationError({"detail": "Your account is not active."})
elif user.auth_type != "default": elif user.auth_type != "default":
raise ValidationError( raise ValidationError(
{"detail": "Please login via your identity provider."} {"detail": "Please login via your identity provider."}

View File

@ -137,7 +137,7 @@ class TestUserLoginView(TestCase):
) )
self.assertEqual(response.status_code, 400) self.assertEqual(response.status_code, 400)
content = json.loads(response.content.decode()) content = json.loads(response.content.decode())
self.assertEqual(content.get("detail"), "You are not active.") self.assertEqual(content.get("detail"), "Your account is not active.")
def test_user_wrong_auth_type(self): def test_user_wrong_auth_type(self):
admin = User.objects.get() admin = User.objects.get()