checklist
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
parent
8287b05214
commit
683e634116
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2024-01-10 16:57+0000\n"
|
"POT-Creation-Date: 2024-01-16 04:49+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -431,11 +431,11 @@ msgstr ""
|
||||||
msgid "RAC Property Mappings"
|
msgid "RAC Property Mappings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: authentik/enterprise/providers/rac/views.py:103
|
#: authentik/enterprise/providers/rac/views.py:108
|
||||||
msgid "Maximum connection limit reached."
|
msgid "Maximum connection limit reached."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: authentik/enterprise/providers/rac/views.py:107
|
#: authentik/enterprise/providers/rac/views.py:112
|
||||||
msgid "(You are already connected in another tab/window)"
|
msgid "(You are already connected in another tab/window)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -2131,7 +2131,7 @@ msgstr ""
|
||||||
msgid "TOTP Devices"
|
msgid "TOTP Devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: authentik/stages/authenticator_validate/challenge.py:131
|
#: authentik/stages/authenticator_validate/challenge.py:123
|
||||||
msgid "Invalid Token"
|
msgid "Invalid Token"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
20
web/.babelrc
20
web/.babelrc
|
@ -6,27 +6,27 @@
|
||||||
[
|
[
|
||||||
"@babel/plugin-proposal-decorators",
|
"@babel/plugin-proposal-decorators",
|
||||||
{
|
{
|
||||||
"decoratorsBeforeExport": true,
|
"decoratorsBeforeExport": true
|
||||||
},
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"@babel/plugin-transform-class-properties",
|
"@babel/plugin-transform-class-properties",
|
||||||
{
|
{
|
||||||
"loose": true,
|
"loose": true
|
||||||
},
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"@babel/plugin-transform-runtime",
|
"@babel/plugin-transform-runtime",
|
||||||
{
|
{
|
||||||
"regenerator": true,
|
"regenerator": true
|
||||||
},
|
}
|
||||||
],
|
],
|
||||||
"macros",
|
"macros",
|
||||||
[
|
[
|
||||||
"@babel/plugin-transform-private-property-in-object",
|
"@babel/plugin-transform-private-property-in-object",
|
||||||
{
|
{
|
||||||
"loose": true,
|
"loose": true
|
||||||
},
|
}
|
||||||
],
|
]
|
||||||
],
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -113,21 +113,21 @@ export class AdminSettingsForm extends Form<SettingsRequest> {
|
||||||
</ak-text-input>
|
</ak-text-input>
|
||||||
<ak-switch-input
|
<ak-switch-input
|
||||||
name="defaultUserChangeName"
|
name="defaultUserChangeName"
|
||||||
label=${msg("Allow users' to change name")}
|
label=${msg("Allow users to change name")}
|
||||||
?checked="${this._settings?.defaultUserChangeName}"
|
?checked="${this._settings?.defaultUserChangeName}"
|
||||||
help=${msg("Enable the ability for users to change their name.")}
|
help=${msg("Enable the ability for users to change their name.")}
|
||||||
>
|
>
|
||||||
</ak-switch-input>
|
</ak-switch-input>
|
||||||
<ak-switch-input
|
<ak-switch-input
|
||||||
name="defaultUserChangeEmail"
|
name="defaultUserChangeEmail"
|
||||||
label=${msg("Allow users' to change email")}
|
label=${msg("Allow users to change email")}
|
||||||
?checked="${this._settings?.defaultUserChangeEmail}"
|
?checked="${this._settings?.defaultUserChangeEmail}"
|
||||||
help=${msg("Enable the ability for users to change their email.")}
|
help=${msg("Enable the ability for users to change their email.")}
|
||||||
>
|
>
|
||||||
</ak-switch-input>
|
</ak-switch-input>
|
||||||
<ak-switch-input
|
<ak-switch-input
|
||||||
name="defaultUserChangeUsername"
|
name="defaultUserChangeUsername"
|
||||||
label=${msg("Allow users' to change username")}
|
label=${msg("Allow users to change username")}
|
||||||
?checked="${this._settings?.defaultUserChangeUsername}"
|
?checked="${this._settings?.defaultUserChangeUsername}"
|
||||||
help=${msg("Enable the ability for users to change their username.")}
|
help=${msg("Enable the ability for users to change their username.")}
|
||||||
>
|
>
|
||||||
|
|
|
@ -203,9 +203,8 @@ export class LDAPProviderViewPage extends AKElement {
|
||||||
class="pf-c-form-control"
|
class="pf-c-form-control"
|
||||||
readonly
|
readonly
|
||||||
type="text"
|
type="text"
|
||||||
value=${`cn=${
|
value=${`cn=${this.me?.user
|
||||||
this.me?.user.username
|
.username},ou=users,${this.provider?.baseDn?.toLowerCase()}`}
|
||||||
},ou=users,${this.provider?.baseDn?.toLowerCase()}`}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="pf-c-form__group">
|
<div class="pf-c-form__group">
|
||||||
|
|
|
@ -6317,14 +6317,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -6592,14 +6592,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -6233,14 +6233,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -8272,14 +8272,14 @@ Les liaisons avec les groupes/utilisateurs sont vérifiées par rapport à l'uti
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -8191,14 +8191,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="s31aa94a0b3c7edb2">
|
<trans-unit id="s31aa94a0b3c7edb2">
|
||||||
<source>Select endpoint to connect to</source>
|
<source>Select endpoint to connect to</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -8031,14 +8031,14 @@ Bindingen naar groepen/gebruikers worden gecontroleerd tegen de gebruiker van de
|
||||||
<trans-unit id="s31aa94a0b3c7edb2">
|
<trans-unit id="s31aa94a0b3c7edb2">
|
||||||
<source>Select endpoint to connect to</source>
|
<source>Select endpoint to connect to</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -6440,14 +6440,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -8165,13 +8165,13 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body></file></xliff>
|
</body></file></xliff>
|
||||||
|
|
|
@ -6226,14 +6226,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -5134,14 +5134,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="sc54aafeea9c9bab0">
|
<trans-unit id="sc54aafeea9c9bab0">
|
||||||
<source>Connected services</source>
|
<source>Connected services</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -8274,14 +8274,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -6274,14 +6274,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -8150,14 +8150,14 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="see1eb81c1f734079">
|
<trans-unit id="see1eb81c1f734079">
|
||||||
<source>System settings</source>
|
<source>System settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s240ec6a18ae3199b">
|
<trans-unit id="s5faec5eb5faf62ac">
|
||||||
<source>Allow users' to change name</source>
|
<source>Allow users to change name</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9ec441cc5049a080">
|
<trans-unit id="s456d88f3679190fd">
|
||||||
<source>Allow users' to change email</source>
|
<source>Allow users to change email</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s9887891e7e8d2500">
|
<trans-unit id="s628e414bb2367057">
|
||||||
<source>Allow users' to change username</source>
|
<source>Allow users to change username</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
Reference in New Issue