keycloak-scim/src/authentication/messages.ts

148 lines
5.6 KiB
TypeScript
Raw Normal View History

export default {
authentication: {
title: "Authentication",
authenticationExplain: "Placeholder for authentication explanation.",
flows: "Flows",
2021-10-19 15:30:57 +00:00
requiredActions: "Required actions",
policies: "Policies",
passwordPolicy: "Password policy",
otpPolicy: "OTP Policy",
webauthnPolicy: "Webauthn Policy",
webauthnPasswordlessPolicy: "Webauthn Passwordless Policy",
noPasswordPolicies: "No password policies",
noPasswordPoliciesInstructions:
"You haven't added any password policies to this realm. Add a policy to get started.",
updatePasswordPolicySuccess: "Password policies successfully updated",
updatePasswordPolicyError:
"Could not update the password policies: '{{error}}'",
2021-12-14 14:56:36 +00:00
webAuthnPolicyRpEntityName: "Relying party entity name",
addPolicy: "Add policy",
2021-12-13 10:39:41 +00:00
otpType: "OTP type",
policyType: {
totp: "Time based",
hotp: "Counter based",
},
otpHashAlgorithm: "OTP hash algorithm",
otpPolicyDigits: "Number of digits",
lookAhead: "Look ahead window",
otpPolicyPeriod: "OTP Token period",
otpPolicyPeriodErrorHint:
"Value needs to be between 1 second and 2 minutes",
initialCounter: "Initial counter",
initialCounterErrorHint: "Value needs to be between 1 and 120",
supportedActions: "Supported actions",
updateOtpSuccess: "OTP policy successfully updated",
updateOtpError: "Could not update OTP policy: {{error}}",
webAuthnPolicySignatureAlgorithms: "Signature algorithms",
webAuthnPolicyRpId: "Relying party ID",
webAuthnPolicyAttestationConveyancePreference:
"Attestation conveyance preference",
attestationPreference: {
"not specified": "Not specified",
none: "None",
indirect: "Indirect",
direct: "Direct",
},
webAuthnPolicyAuthenticatorAttachment: "Authenticator Attachment",
authenticatorAttachment: {
"not specified": "Not specified",
platform: "Platform",
"cross-platform": "Cross platform",
},
webAuthnPolicyRequireResidentKey: "Require resident key",
residentKey: {
"not specified": "Not specified",
Yes: "Yes",
No: "No",
},
webAuthnPolicyUserVerificationRequirement: "User verification requirement",
userVerify: {
"not specified": "Not specified",
required: "Required",
preferred: "Preferred",
discouraged: "Discouraged",
},
webAuthnPolicyCreateTimeout: "Timeout",
webAuthnPolicyCreateTimeoutHint:
"Timeout needs to be between 0 seconds and 8 hours",
webAuthnPolicyAvoidSameAuthenticatorRegister:
"Avoid same authenticator registration",
webAuthnPolicyAcceptableAaguids: "Acceptable AAGUIDs",
addAaguids: "Add AAGUID",
webAuthnUpdateSuccess: "Updated webauthn policies successfully",
webAuthnUpdateError: "Could not update webauthn policies due to {{error}}",
flowName: "Flow name",
searchForFlow: "Search for flow",
usedBy: "Used by",
buildIn: "Built-in",
appliedByProviders: "Applied by the following providers",
appliedByClients: "Applied by the following clients",
specificProviders: "Specific providers",
specificClients: "Specific clients",
default: "Default",
notInUse: "Not in use",
duplicate: "Duplicate",
setAsDefault: "Set as default",
editInfo: "Edit info",
editFlow: "Edit flow",
edit: "Edit",
deleteConfirmFlow: "Delete flow?",
deleteConfirmFlowMessage:
'Are you sure you want to permanently delete the flow "<1>{{flow}}</1>".',
deleteFlowSuccess: "Flow successfully deleted",
deleteFlowError: "Could not delete flow: {{error}}",
duplicateFlow: "Duplicate flow",
deleteConfirmExecution: "Delete execution?",
deleteConfirmExecutionMessage:
'Are you sure you want to permanently delete the execution "<1>{{name}}</1>".',
deleteExecutionSuccess: "Execution successfully deleted",
deleteExecutionError: "Could not delete execution: {{error}}",
Initial version of the authentication section (#887) * initial version of create authentication screen * initial version of authentication details * added flow details labels to view header * not in use fix * create execution tree * fixed collapsable row layout * fix drag and drop expand * fix merge error * move to modal * diff and post drag and drop changes * fixed locating the parent row * move "live text" for d&d to common messages * firefox fix * initial version of the diagram * use dagre to layout automatically * moved to sperate file * conditional node * now renders subflows sequential * changed to render sequential or parallel flows * fixed render of sub flows * added button edge, drawer and selectable nodes * add requirement dropdown * also do move so we can merge * also do move so we can merge * fixed merge * added refresh * change requirement * fixed merge error * now uses the new routes * Split out routes into multiple files * Update src/authentication/AuthenticationSection.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * fixed labels * merge fix * make execution of these parrallel * added some tests * Update src/authentication/components/FlowRequirementDropdown.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * more review changes * fixed merge error Co-authored-by: Jon Koops <jonkoops@gmail.com>
2021-08-09 08:47:34 +00:00
updateFlowSuccess: "Flow successfully updated",
updateFlowError: "Could not update flow: {{error}}",
copyOf: "Copy of {{name}}",
copyFlowSuccess: "Flow successfully duplicated",
copyFlowError: "Could not duplicate flow: {{error}}",
Initial version of the authentication section (#887) * initial version of create authentication screen * initial version of authentication details * added flow details labels to view header * not in use fix * create execution tree * fixed collapsable row layout * fix drag and drop expand * fix merge error * move to modal * diff and post drag and drop changes * fixed locating the parent row * move "live text" for d&d to common messages * firefox fix * initial version of the diagram * use dagre to layout automatically * moved to sperate file * conditional node * now renders subflows sequential * changed to render sequential or parallel flows * fixed render of sub flows * added button edge, drawer and selectable nodes * add requirement dropdown * also do move so we can merge * also do move so we can merge * fixed merge * added refresh * change requirement * fixed merge error * now uses the new routes * Split out routes into multiple files * Update src/authentication/AuthenticationSection.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * fixed labels * merge fix * make execution of these parrallel * added some tests * Update src/authentication/components/FlowRequirementDropdown.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * more review changes * fixed merge error Co-authored-by: Jon Koops <jonkoops@gmail.com>
2021-08-09 08:47:34 +00:00
createFlow: "Create flow",
flowType: "Flow type",
"flow-type": {
"basic-flow": "Generic",
"form-flow": "Form",
},
"top-level-flow-type": {
Initial version of the authentication section (#887) * initial version of create authentication screen * initial version of authentication details * added flow details labels to view header * not in use fix * create execution tree * fixed collapsable row layout * fix drag and drop expand * fix merge error * move to modal * diff and post drag and drop changes * fixed locating the parent row * move "live text" for d&d to common messages * firefox fix * initial version of the diagram * use dagre to layout automatically * moved to sperate file * conditional node * now renders subflows sequential * changed to render sequential or parallel flows * fixed render of sub flows * added button edge, drawer and selectable nodes * add requirement dropdown * also do move so we can merge * also do move so we can merge * fixed merge * added refresh * change requirement * fixed merge error * now uses the new routes * Split out routes into multiple files * Update src/authentication/AuthenticationSection.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * fixed labels * merge fix * make execution of these parrallel * added some tests * Update src/authentication/components/FlowRequirementDropdown.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * more review changes * fixed merge error Co-authored-by: Jon Koops <jonkoops@gmail.com>
2021-08-09 08:47:34 +00:00
"basic-flow": "Basic flow",
"client-flow": "Client flow",
},
flowCreatedSuccess: "Flow created",
flowCreateError: "Could not create flow: {{error}}",
flowDetails: "Flow details",
tableView: "Table view",
diagramView: "Diagram view",
emptyExecution: "No steps",
emptyExecutionInstructions:
"You can start defining this flow by adding a sub-flow or an execution",
addExecutionTitle: "Add an execution",
addExecution: "Add execution",
addSubFlowTitle: "Add a sub-flow",
addSubFlow: "Add sub-flow",
addCondition: "Add condition",
addStep: "Add step",
addStepTo: "Add step to {{name}}",
Initial version of the authentication section (#887) * initial version of create authentication screen * initial version of authentication details * added flow details labels to view header * not in use fix * create execution tree * fixed collapsable row layout * fix drag and drop expand * fix merge error * move to modal * diff and post drag and drop changes * fixed locating the parent row * move "live text" for d&d to common messages * firefox fix * initial version of the diagram * use dagre to layout automatically * moved to sperate file * conditional node * now renders subflows sequential * changed to render sequential or parallel flows * fixed render of sub flows * added button edge, drawer and selectable nodes * add requirement dropdown * also do move so we can merge * also do move so we can merge * fixed merge * added refresh * change requirement * fixed merge error * now uses the new routes * Split out routes into multiple files * Update src/authentication/AuthenticationSection.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * Update src/authentication/FlowDetails.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * fixed labels * merge fix * make execution of these parrallel * added some tests * Update src/authentication/components/FlowRequirementDropdown.tsx Co-authored-by: Jon Koops <jonkoops@gmail.com> * more review changes * fixed merge error Co-authored-by: Jon Koops <jonkoops@gmail.com>
2021-08-09 08:47:34 +00:00
steps: "Steps",
requirement: "Requirement",
requirements: {
REQUIRED: "Required",
ALTERNATIVE: "Alternative",
DISABLED: "Disabled",
CONDITIONAL: "Conditional",
},
executionConfig: "{{name}} config",
alias: "Alias",
configSaveSuccess: "Successfully saved the execution config",
configSaveError: "Could not save the execution config: {{error}}",
2021-10-19 15:30:57 +00:00
setAsDefaultAction: "Set as default action",
disabledOff: "Disabled off",
updatedRequiredActionSuccess: "Updated required action successfully",
updatedRequiredActionError: "Could not update required action: {{error}}",
},
};