stages/user_write: add more user creation options (#4367)
* add more user creation options Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * update blueprints and docs Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
@ -1,8 +1,10 @@
|
||||
import { UserCreationModeEnum } from "@goauthentik/api/dist/models/UserCreationModeEnum";
|
||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
|
||||
import { first } from "@goauthentik/common/utils";
|
||||
import "@goauthentik/elements/forms/FormGroup";
|
||||
import "@goauthentik/elements/forms/HorizontalFormElement";
|
||||
import { ModelForm } from "@goauthentik/elements/forms/ModelForm";
|
||||
import "@goauthentik/elements/forms/Radio";
|
||||
import "@goauthentik/elements/forms/SearchSelect";
|
||||
|
||||
import { t } from "@lingui/macro";
|
||||
@ -60,17 +62,28 @@ export class UserWriteStageForm extends ModelForm<UserWriteStage, string> {
|
||||
<span slot="header"> ${t`Stage-specific settings`} </span>
|
||||
<div slot="body" class="pf-c-form">
|
||||
<ak-form-element-horizontal name="canCreateUsers">
|
||||
<div class="pf-c-check">
|
||||
<input
|
||||
type="checkbox"
|
||||
class="pf-c-check__input"
|
||||
?checked=${first(this.instance?.canCreateUsers, false)}
|
||||
/>
|
||||
<label class="pf-c-check__label"> ${t`Can create users`} </label>
|
||||
</div>
|
||||
<p class="pf-c-form__helper-text">
|
||||
${t`When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail.`}
|
||||
</p>
|
||||
<ak-radio
|
||||
.options=${[
|
||||
{
|
||||
label: t`Never create users`,
|
||||
value: UserCreationModeEnum.NeverCreate,
|
||||
description: html`${t`When no user is present in the flow context, the stage will fail.`}`,
|
||||
},
|
||||
{
|
||||
label: t`Create users when required`,
|
||||
value: UserCreationModeEnum.CreateWhenRequired,
|
||||
default: true,
|
||||
description: html`${t`When no user is present in the the flow context, a new user is created.`}`,
|
||||
},
|
||||
{
|
||||
label: t`Always create new users`,
|
||||
value: UserCreationModeEnum.AlwaysCreate,
|
||||
description: html`${t`Create a new user even if a user is in the flow context.`}`,
|
||||
},
|
||||
]}
|
||||
.value=${this.instance?.userCreationMode}
|
||||
>
|
||||
</ak-radio>
|
||||
</ak-form-element-horizontal>
|
||||
<ak-form-element-horizontal name="createUsersAsInactive">
|
||||
<div class="pf-c-check">
|
||||
|
@ -446,6 +446,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "Alternativ kannst Du auch auf diesen Link klicken, wenn Du Duo auf Deinem Gerät installiert hast: "
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -968,8 +972,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr "Kann das Format 'unix://' haben, wenn eine Verbindung zu einem lokalen Docker-Daemon hergestellt wird, oder 'ssh://', wenn eine Verbindung über SSH hergestellt wird, oder 'https://:2376', wenn eine Verbindung zu einem entfernten System hergestellt wird."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1647,6 +1651,10 @@ msgstr "Neue Quelle erstellen."
|
||||
msgid "Create a new stage."
|
||||
msgstr "Neue Stufe erstellen."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1677,6 +1685,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr "Benutzer als inaktiv anlegen"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3793,6 +3805,10 @@ msgstr "Ergebnis verneinen"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "Negiert das Ergebnis der Bindung. Nachrichten sind nicht betroffen."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7323,8 +7339,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "Wenn diese Option aktiviert ist, wird die Einladung nach ihrer Benutzung gelöscht."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7334,6 +7350,14 @@ msgstr "Wenn diese Option aktiviert ist, werden Benutzerfelder unabhängig von i
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr "Wenn mehrere Stufen ausgewählt sind, kann der Benutzer wählen, welche er registrieren möchte."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "Wenn diese Option ausgewählt ist, wird ein Passwortfeld auf derselben Seite statt auf einer separaten Seite angezeigt. Dadurch werden Angriffe auf die Aufzählung von Benutzernamen verhindert."
|
||||
|
@ -429,6 +429,10 @@ msgstr "Also known as EntityID."
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr "Always create new users"
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr "Always execute the configured bind flow to authenticate the user"
|
||||
@ -961,8 +965,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr "Can be in the format of 'unix://' when connecting to a local docker daemon, using 'ssh://' to connect via SSH, or 'https://:2376' when connecting to a remote system."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr "Can create users"
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr "Can create users"
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1651,6 +1655,10 @@ msgstr "Create a new source."
|
||||
msgid "Create a new stage."
|
||||
msgstr "Create a new stage."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr "Create a new user even if a user is in the flow context."
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr "Create application"
|
||||
@ -1681,6 +1689,10 @@ msgstr "Create user"
|
||||
msgid "Create users as inactive"
|
||||
msgstr "Create users as inactive"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr "Create users when required"
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3850,6 +3862,10 @@ msgstr "Negate result"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "Negates the outcome of the binding. Messages are unaffected."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr "Never create users"
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr "New application"
|
||||
@ -7482,8 +7498,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "When enabled, the invitation will be deleted after usage."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7493,6 +7509,14 @@ msgstr "When enabled, user fields are matched regardless of their casing."
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr "When no user is present in the flow context, the stage will fail."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr "When no user is present in the the flow context, a new user is created."
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
|
@ -424,6 +424,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "Como alternativa, si su dispositivo actual tiene instalado Duo, haga clic en este enlace:"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -946,8 +950,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr "Puede tener el formato 'unix: //' cuando se conecta a un servicio local de docker, usando 'ssh: //' para conectarse a través de SSH, o 'https://:2376' cuando se conecta a un sistema remoto."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1623,6 +1627,10 @@ msgstr ""
|
||||
msgid "Create a new stage."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1653,6 +1661,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr "Crear usuarios como inactivos"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3769,6 +3781,10 @@ msgstr "Negar el resultado"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "Negar el resultado de la vinculación. Los mensajes no se ven afectados."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7299,8 +7315,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "Cuando se habilita, la invitación se eliminará después de su uso."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7310,6 +7326,14 @@ msgstr "Cuando se habilita, los campos de usuario coinciden independientemente d
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "Cuando se selecciona, se muestra un campo de contraseña en la misma página en lugar de en una página separada. Esto evita ataques de enumeración de nombres de usuario."
|
||||
|
@ -429,6 +429,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "Sinon, si Duo est installé sur cet appareil, cliquez sur ce lien :"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -951,8 +955,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1628,6 +1632,10 @@ msgstr "Créer une nouvelle source."
|
||||
msgid "Create a new stage."
|
||||
msgstr "Créer une nouvelle étape."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1658,6 +1666,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr "Créer des utilisateurs inactifs"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3770,6 +3782,10 @@ msgstr "Inverser le résultat"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "Inverse le résultat de la liaison. Les messages ne sont pas affectés."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7290,8 +7306,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "Si activée, l'invitation sera supprimée après utilisation."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7301,6 +7317,14 @@ msgstr "Si activé, les champs de l'utilisateur sont mis en correspondance en ig
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr "Lorsque plusieurs étapes sont sélectionnées, les utilisateurs peuvent choisir celle qu’ils souhaient utiliser pour s’enrôler."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "Si activée, un champ de mot de passe est affiché sur la même page au lieu d'une page séparée. Cela permet d'éviter les attaques par énumération de noms d'utilisateur."
|
||||
|
@ -428,6 +428,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "Alternatywnie, jeśli na Twoim obecnym urządzeniu jest zainstalowany Duo, kliknij ten link:"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -950,8 +954,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr "Może mieć format „unix://” podczas łączenia się z lokalnym demonem dockera, używając „ssh://” do łączenia się przez SSH lub „https://:2376” podczas łączenia się z systemem zdalnym."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1629,6 +1633,10 @@ msgstr "Utwórz nowe źródło."
|
||||
msgid "Create a new stage."
|
||||
msgstr "Utwórz nowy etap."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1659,6 +1667,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr "Utwórz użytkowników jako nieaktywnych"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3777,6 +3789,10 @@ msgstr "Neguj wynik"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "Neguje wynik wiązania. Wiadomości pozostają nienaruszone."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7311,8 +7327,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "Po włączeniu zaproszenie zostanie usunięte po użyciu."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7322,6 +7338,14 @@ msgstr "Po włączeniu pola użytkownika są dopasowywane niezależnie od wielko
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr "W przypadku wybrania wielu etapów użytkownik może wybrać, na który chce się zapisać."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "Po wybraniu pole hasła jest wyświetlane na tej samej stronie zamiast na osobnej stronie. Zapobiega to atakom polegającym na wyliczaniu nazw użytkowników."
|
||||
|
@ -425,6 +425,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -953,8 +957,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1639,6 +1643,10 @@ msgstr ""
|
||||
msgid "Create a new stage."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1669,6 +1677,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3832,6 +3844,10 @@ msgstr ""
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7450,8 +7466,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7461,6 +7477,14 @@ msgstr ""
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr ""
|
||||
|
@ -424,6 +424,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "Alternatif olarak, mevcut cihazınızda Duo yüklüyse, şu bağlantıya tıklayın:"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -946,8 +950,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr "SSH üzerinden bağlanmak için 'ssh: //' veya uzak bir sisteme bağlanırken 'https://:2376' kullanarak yerel bir docker daemonuna bağlanırken 'unix: //' biçiminde olabilir."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1623,6 +1627,10 @@ msgstr ""
|
||||
msgid "Create a new stage."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1653,6 +1661,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr "Kullanıcıları etkin olmayan olarak oluşturma"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3769,6 +3781,10 @@ msgstr "Negate sonucu"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "Bağlamanın sonucunu susturur. Mesajlar etkilenmez."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7299,8 +7315,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "Etkinleştirildiğinde, davetiye kullanımdan sonra silinir."
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7310,6 +7326,14 @@ msgstr "Etkinleştirildiğinde, kullanıcı alanları muhafazası ne olursa olsu
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "Seçildiğinde, ayrı bir sayfa yerine aynı sayfada bir parola alanı gösterilir. Bu, kullanıcı adı numaralandırma saldırılarını engeller."
|
||||
|
@ -430,6 +430,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "或者,如果您当前的设备已安装 Duo,请点击此链接:"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -952,8 +956,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr "连接到本地 Docker 守护进程时可以采用 'unix://' 格式,通过 SSH 连接时采用 'ssh://' 格式,或者在连接到远程系统时采用 'https://:2376' 格式。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1631,6 +1635,10 @@ msgstr "创建一个新身份来源。"
|
||||
msgid "Create a new stage."
|
||||
msgstr "创建一个新阶段。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1661,6 +1669,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr "创建未激活用户"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3777,6 +3789,10 @@ msgstr "反转结果"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "反转绑定的结果。消息不受影响。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7309,8 +7325,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "启用后,邀请将在使用后被删除。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7320,6 +7336,14 @@ msgstr "启用后,无论大小写如何,都将匹配用户字段。"
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr "选中多个阶段时,用户可以选择要注册哪个。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "选中后,密码字段将显示在同一页面,而不是单独的页面上。这样可以防止用户名枚举攻击。"
|
||||
|
@ -430,6 +430,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "或者,如果您当前的设备已安装 Duo,请单击此链接:"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -952,8 +956,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr "连接到本地 docker 守护进程时可以采用 'unix: //' 的格式,通过 SSH 连接时使用 'ssh: //',或者在连接到远程系统时使用 'https://:2376' 的格式。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1631,6 +1635,10 @@ msgstr "创建一个新身份来源。"
|
||||
msgid "Create a new stage."
|
||||
msgstr "创建一个新阶段。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1661,6 +1669,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr "将用户创建为非活动用户"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3777,6 +3789,10 @@ msgstr "否定结果"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "否定绑定的结果。消息不受影响。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7309,8 +7325,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "启用后,邀请将在使用后被删除。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7320,6 +7336,14 @@ msgstr "启用后,无论用户字段大小写如何,都将匹配用户字段
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr "选中多个阶段时,用户可以选择要注册哪个。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "选中后,密码字段将显示在同一页面上,而不是单独的页面上。这样可以防止用户名枚举攻击。"
|
||||
|
@ -430,6 +430,10 @@ msgstr ""
|
||||
msgid "Alternatively, if your current device has Duo installed, click on this link:"
|
||||
msgstr "或者,如果您当前的设备已安装 Duo,请单击此链接:"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Always create new users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/providers/ldap/LDAPProviderForm.ts
|
||||
msgid "Always execute the configured bind flow to authenticate the user"
|
||||
msgstr ""
|
||||
@ -952,8 +956,8 @@ msgid "Can be in the format of 'unix://' when connecting to a local docker daemo
|
||||
msgstr "连接到本地 docker 守护进程时可以采用 'unix: //' 的格式,通过 SSH 连接时使用 'ssh: //',或者在连接到远程系统时使用 'https://:2376' 的格式。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Can create users"
|
||||
msgstr ""
|
||||
#~ msgid "Can create users"
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/groups/MemberSelectModal.ts
|
||||
#: src/admin/users/GroupSelectModal.ts
|
||||
@ -1631,6 +1635,10 @@ msgstr "创建一个新身份来源。"
|
||||
msgid "Create a new stage."
|
||||
msgstr "创建一个新阶段。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create a new user even if a user is in the flow context."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/InitialApplicationWizardPage.ts
|
||||
msgid "Create application"
|
||||
msgstr ""
|
||||
@ -1661,6 +1669,10 @@ msgstr ""
|
||||
msgid "Create users as inactive"
|
||||
msgstr "将用户创建为非活动用户"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Create users when required"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/outposts/ServiceConnectionWizard.ts
|
||||
#: src/admin/policies/PolicyWizard.ts
|
||||
#: src/admin/property-mappings/PropertyMappingWizard.ts
|
||||
@ -3777,6 +3789,10 @@ msgstr "否定结果"
|
||||
msgid "Negates the outcome of the binding. Messages are unaffected."
|
||||
msgstr "否定绑定的结果。消息不受影响。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "Never create users"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/applications/wizard/ApplicationWizard.ts
|
||||
msgid "New application"
|
||||
msgstr ""
|
||||
@ -7309,8 +7325,8 @@ msgid "When enabled, the invitation will be deleted after usage."
|
||||
msgstr "启用后,邀请将在使用后被删除。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
msgstr ""
|
||||
#~ msgid "When enabled, this stage has the ability to create new users. If no user is available in the flow with this disabled, the stage will fail."
|
||||
#~ msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When enabled, user fields are matched regardless of their casing."
|
||||
@ -7320,6 +7336,14 @@ msgstr "启用后,无论用户字段大小写如何,都将匹配用户字段
|
||||
msgid "When multiple stages are selected, the user can choose which one they want to enroll."
|
||||
msgstr "选中多个阶段时,用户可以选择要注册哪个。"
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the flow context, the stage will fail."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/user_write/UserWriteStageForm.ts
|
||||
msgid "When no user is present in the the flow context, a new user is created."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/stages/identification/IdentificationStageForm.ts
|
||||
msgid "When selected, a password field is shown on the same page instead of a separate page. This prevents username enumeration attacks."
|
||||
msgstr "选中后,密码字段将显示在同一页面上,而不是单独的页面上。这样可以防止用户名枚举攻击。"
|
||||
|
Reference in New Issue
Block a user