authentication method selection: provice German translations

This commit is contained in:
Helmut Merz 2025-10-25 18:13:49 +02:00
parent d588469bb5
commit 04c7c052fa
3 changed files with 19 additions and 6 deletions

View file

@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: 3.0.1\n" "Project-Id-Version: 3.0.1\n"
"POT-Creation-Date: 2007-05-22 12:00 CET\n" "POT-Creation-Date: 2007-05-22 12:00 CET\n"
"PO-Revision-Date: 2025-08-29 12:00 CET\n" "PO-Revision-Date: 2025-10-25 12:00 CET\n"
"Last-Translator: Helmut Merz <helmutm@cy55.de>\n" "Last-Translator: Helmut Merz <helmutm@cy55.de>\n"
"Language-Team: loops developers <helmutm@cy55.de>\n" "Language-Team: loops developers <helmutm@cy55.de>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -1474,3 +1474,16 @@ msgstr "E-Mail senden"
msgid "login-with-oidc" msgid "login-with-oidc"
msgstr "Mit OpenID Connect (Zitadel) anmelden" msgstr "Mit OpenID Connect (Zitadel) anmelden"
msgid "authentication-method"
msgstr "Login-Verfahren"
msgid "authentication-method-legacy"
msgstr "Klassisches Login-Verfahren"
msgid "authentication-method-oidc"
msgstr "Login mit OpenID Connect"
msgid "authentication-method-select"
msgstr "Verfahren beim Login auswählen"

View file

@ -61,16 +61,16 @@
<a href="edit_filters.html" <a href="edit_filters.html"
i18n:translate="">Edit Filters</a></li> i18n:translate="">Edit Filters</a></li>
<li tal:condition="item/selectAuthMethod"> <li tal:condition="item/selectAuthMethod">
<span>Authentication Method:</span> <span i18n:translate="authentication-method">Authentication Method</span>:
<select name="auth_method" <select name="auth_method"
onchange="document.cookie=`loops_auth_method=${this.value}; path=/`" onchange="document.cookie=`loops_auth_method=${this.value}; path=/`"
tal:define="meth item/getAuthMethod" tal:define="meth item/getAuthMethod"
tal:attributes="value meth"> tal:attributes="value meth">
<option value="legacy" <option value="legacy" i18n:translate="authentication-method-legacy"
tal:attributes="selected python:meth=='legacy'">Legacy</option> tal:attributes="selected python:meth=='legacy'">Legacy</option>
<option value="oidc" <option value="oidc" i18n:translate="authentication-method-oidc"
tal:attributes="selected python:meth=='oidc'">OpenID Connect</option> tal:attributes="selected python:meth=='oidc'">OIDC</option>
<option value="select" <option value="select" i18n:translate="authentication-method-select"
tal:attributes="selected python:meth=='select'">Selection</option> tal:attributes="selected python:meth=='select'">Selection</option>
</select> </select>
</li> </li>