2021-07-14 10:15:48 +00:00
|
|
|
export default {
|
|
|
|
authentication: {
|
|
|
|
title: "Authentication",
|
2021-12-21 15:32:53 +00:00
|
|
|
authenticationExplain: "Placeholder for authentication explanation.",
|
2021-07-14 10:15:48 +00:00
|
|
|
flows: "Flows",
|
2021-10-19 15:30:57 +00:00
|
|
|
requiredActions: "Required actions",
|
2021-12-01 09:24:46 +00:00
|
|
|
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",
|
2021-12-01 09:24:46 +00:00
|
|
|
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}}",
|
2022-01-05 16:18:49 +00:00
|
|
|
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}}",
|
2021-07-14 10:15:48 +00:00
|
|
|
flowName: "Flow name",
|
2021-10-14 14:54:07 +00:00
|
|
|
searchForFlow: "Search for flow",
|
2021-07-14 10:15:48 +00:00
|
|
|
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",
|
2021-10-14 14:54:07 +00:00
|
|
|
setAsDefault: "Set as default",
|
|
|
|
editInfo: "Edit info",
|
|
|
|
editFlow: "Edit flow",
|
|
|
|
edit: "Edit",
|
2021-07-14 10:15:48 +00:00
|
|
|
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",
|
2021-09-23 15:06:58 +00:00
|
|
|
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}}",
|
2021-08-09 08:47:34 +00:00
|
|
|
updateFlowSuccess: "Flow successfully updated",
|
|
|
|
updateFlowError: "Could not update flow: {{error}}",
|
2021-07-14 10:15:48 +00:00
|
|
|
copyOf: "Copy of {{name}}",
|
|
|
|
copyFlowSuccess: "Flow successfully duplicated",
|
|
|
|
copyFlowError: "Could not duplicate flow: {{error}}",
|
2021-08-09 08:47:34 +00:00
|
|
|
createFlow: "Create flow",
|
|
|
|
flowType: "Flow type",
|
|
|
|
"flow-type": {
|
2021-09-23 15:06:58 +00:00
|
|
|
"basic-flow": "Generic",
|
|
|
|
"form-flow": "Form",
|
|
|
|
},
|
|
|
|
"top-level-flow-type": {
|
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",
|
2021-09-06 12:43:36 +00:00
|
|
|
addCondition: "Add condition",
|
|
|
|
addStep: "Add step",
|
|
|
|
addStepTo: "Add step to {{name}}",
|
2021-08-09 08:47:34 +00:00
|
|
|
steps: "Steps",
|
|
|
|
requirement: "Requirement",
|
|
|
|
requirements: {
|
|
|
|
REQUIRED: "Required",
|
|
|
|
ALTERNATIVE: "Alternative",
|
|
|
|
DISABLED: "Disabled",
|
|
|
|
CONDITIONAL: "Conditional",
|
|
|
|
},
|
2021-08-25 13:36:04 +00:00
|
|
|
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}}",
|
2021-07-14 10:15:48 +00:00
|
|
|
},
|
|
|
|
};
|