diff --git a/authentik/sources/plex/api.py b/authentik/sources/plex/api.py index 800f4112d..d9c351aef 100644 --- a/authentik/sources/plex/api.py +++ b/authentik/sources/plex/api.py @@ -34,7 +34,6 @@ class PlexSourceSerializer(SourceSerializer): "allow_friends", "plex_token", ] - extra_kwargs = {"plex_token": {"write_only": True}} class PlexTokenRedeemSerializer(PassiveSerializer): diff --git a/web/src/elements/forms/Form.ts b/web/src/elements/forms/Form.ts index 57297f1f5..786c4cf03 100644 --- a/web/src/elements/forms/Form.ts +++ b/web/src/elements/forms/Form.ts @@ -15,6 +15,7 @@ import { MessageLevel } from "../messages/Message"; import { IronFormElement } from "@polymer/iron-form/iron-form"; import { camelToSnake, convertToSlug } from "../../utils"; import { ValidationError } from "authentik-api/src"; +import { EVENT_REFRESH } from "../../constants"; export class APIError extends Error { @@ -140,6 +141,12 @@ export class Form extends LitElement { level: MessageLevel.success, message: this.getSuccessMessage() }); + this.dispatchEvent( + new CustomEvent(EVENT_REFRESH, { + bubbles: true, + composed: true, + }) + ); return r; }).catch((ex: Response) => { if (ex.status > 399 && ex.status < 500) { diff --git a/web/src/elements/forms/ModelForm.ts b/web/src/elements/forms/ModelForm.ts new file mode 100644 index 000000000..1294a4443 --- /dev/null +++ b/web/src/elements/forms/ModelForm.ts @@ -0,0 +1,36 @@ +import { property } from "lit-element"; +import { EVENT_REFRESH } from "../../constants"; +import { Form } from "./Form"; + +export abstract class ModelForm extends Form { + + abstract loadInstance(pk: PKT): Promise; + + @property({attribute: false}) + set instancePk(value: PKT) { + this._instancePk = value; + this.loadInstance(value).then(instance => { + this.instance = instance; + }); + } + + private _instancePk?: PKT; + + @property({ attribute: false }) + instance?: T = this.defaultInstance; + + get defaultInstance(): T | undefined { + return undefined; + } + + constructor() { + super(); + this.addEventListener(EVENT_REFRESH, () => { + if (!this._instancePk) return; + this.loadInstance(this._instancePk).then(instance => { + this.instance = instance; + }); + }); + } + +} diff --git a/web/src/locales/en.po b/web/src/locales/en.po index adde97f89..b6b9bc704 100644 --- a/web/src/locales/en.po +++ b/web/src/locales/en.po @@ -15,8 +15,8 @@ msgstr "" #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:141 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:149 -#: src/pages/providers/saml/SAMLProviderForm.ts:202 -#: src/pages/stages/user_login/UserLoginStageForm.ts:71 +#: src/pages/providers/saml/SAMLProviderForm.ts:201 +#: src/pages/stages/user_login/UserLoginStageForm.ts:69 msgid "(Format: hours=-1;minutes=-2;seconds=-3)." msgstr "(Format: hours=-1;minutes=-2;seconds=-3)." @@ -24,11 +24,11 @@ msgstr "(Format: hours=-1;minutes=-2;seconds=-3)." msgid "-" msgstr "-" -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:72 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:70 msgid "6 digits, widely compatible" msgstr "6 digits, widely compatible" -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:75 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:73 msgid "8 digits, not compatible with apps like Google Authenticator" msgstr "8 digits, not compatible with apps like Google Authenticator" @@ -36,30 +36,30 @@ msgstr "8 digits, not compatible with apps like Google Authenticator" msgid "A newer version of the frontend is available." msgstr "A newer version of the frontend is available." -#: src/pages/policies/dummy/DummyPolicyForm.ts:53 +#: src/pages/policies/dummy/DummyPolicyForm.ts:51 msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration." msgstr "A policy used for testing. Always returns the same result as specified below after waiting a random duration." -#: src/pages/providers/saml/SAMLProviderForm.ts:82 +#: src/pages/providers/saml/SAMLProviderForm.ts:81 #: src/pages/providers/saml/SAMLProviderViewPage.ts:84 msgid "ACS URL" msgstr "ACS URL" -#: src/pages/applications/ApplicationForm.ts:149 -#: src/pages/flows/FlowForm.ts:109 +#: src/pages/applications/ApplicationForm.ts:154 +#: src/pages/flows/FlowForm.ts:114 msgid "ALL, all policies must match to grant access." msgstr "ALL, all policies must match to grant access." -#: src/pages/flows/StageBindingForm.ts:144 +#: src/pages/flows/StageBindingForm.ts:149 msgid "ALL, all policies must match to include this stage access." msgstr "ALL, all policies must match to include this stage access." -#: src/pages/applications/ApplicationForm.ts:146 -#: src/pages/flows/FlowForm.ts:106 +#: src/pages/applications/ApplicationForm.ts:151 +#: src/pages/flows/FlowForm.ts:111 msgid "ANY, any policy must match to grant access." msgstr "ANY, any policy must match to grant access." -#: src/pages/flows/StageBindingForm.ts:141 +#: src/pages/flows/StageBindingForm.ts:146 msgid "ANY, any policy must match to include this stage access." msgstr "ANY, any policy must match to include this stage access." @@ -79,14 +79,14 @@ msgstr "Access Key" msgid "Access code validity" msgstr "Access code validity" -#: src/pages/sources/oauth/OAuthSourceForm.ts:73 +#: src/pages/sources/oauth/OAuthSourceForm.ts:74 msgid "Access token URL" msgstr "Access token URL" #: src/elements/events/ObjectChangelog.ts:38 #: src/elements/events/UserEvents.ts:35 #: src/pages/events/EventListPage.ts:43 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:79 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:77 msgid "Action" msgstr "Action" @@ -100,31 +100,31 @@ msgstr "Active" msgid "Add" msgstr "Add" -#: src/pages/sources/ldap/LDAPSourceForm.ts:202 +#: src/pages/sources/ldap/LDAPSourceForm.ts:200 msgid "Addition Group DN" msgstr "Addition Group DN" -#: src/pages/sources/ldap/LDAPSourceForm.ts:196 +#: src/pages/sources/ldap/LDAPSourceForm.ts:194 msgid "Addition User DN" msgstr "Addition User DN" -#: src/pages/sources/ldap/LDAPSourceForm.ts:205 +#: src/pages/sources/ldap/LDAPSourceForm.ts:203 msgid "Additional group DN, prepended to the Base DN." msgstr "Additional group DN, prepended to the Base DN." -#: src/pages/sources/ldap/LDAPSourceForm.ts:199 +#: src/pages/sources/ldap/LDAPSourceForm.ts:197 msgid "Additional user DN, prepended to the Base DN." msgstr "Additional user DN, prepended to the Base DN." #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:132 #: src/pages/providers/proxy/ProxyProviderForm.ts:153 -#: src/pages/providers/saml/SAMLProviderForm.ts:117 -#: src/pages/sources/saml/SAMLSourceForm.ts:134 +#: src/pages/providers/saml/SAMLProviderForm.ts:116 +#: src/pages/sources/saml/SAMLSourceForm.ts:132 msgid "Advanced protocol settings" msgstr "Advanced protocol settings" -#: src/pages/policies/password/PasswordPolicyForm.ts:119 -#: src/pages/sources/ldap/LDAPSourceForm.ts:140 +#: src/pages/policies/password/PasswordPolicyForm.ts:117 +#: src/pages/sources/ldap/LDAPSourceForm.ts:138 msgid "Advanced settings" msgstr "Advanced settings" @@ -132,7 +132,7 @@ msgstr "Advanced settings" msgid "Affected model:" msgstr "Affected model:" -#: src/pages/events/RuleForm.ts:45 +#: src/pages/events/RuleForm.ts:50 msgid "Alert" msgstr "Alert" @@ -140,15 +140,15 @@ msgstr "Alert" msgid "Algorithm used to sign the JWT Tokens." msgstr "Algorithm used to sign the JWT Tokens." -#: src/pages/sources/saml/SAMLSourceForm.ts:141 +#: src/pages/sources/saml/SAMLSourceForm.ts:139 msgid "Allow IDP-initiated logins" msgstr "Allow IDP-initiated logins" -#: src/pages/sources/plex/PlexSourceForm.ts:147 +#: src/pages/sources/plex/PlexSourceForm.ts:150 msgid "Allow friends to authenticate via Plex, even if you don't share any servers" msgstr "Allow friends to authenticate via Plex, even if you don't share any servers" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:90 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:88 msgid "Allow up to N occurrences in the HIBP database." msgstr "Allow up to N occurrences in the HIBP database." @@ -156,23 +156,23 @@ msgstr "Allow up to N occurrences in the HIBP database." msgid "Allow users to use Applications based on properties, enforce Password Criteria and selectively apply Stages." msgstr "Allow users to use Applications based on properties, enforce Password Criteria and selectively apply Stages." -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:86 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:84 msgid "Allowed count" msgstr "Allowed count" -#: src/pages/sources/plex/PlexSourceForm.ts:152 +#: src/pages/sources/plex/PlexSourceForm.ts:155 msgid "Allowed servers" msgstr "Allowed servers" -#: src/pages/sources/saml/SAMLSourceForm.ts:144 +#: src/pages/sources/saml/SAMLSourceForm.ts:142 msgid "Allows authentication flows initiated by the IdP. This can be a security risk, as no validation of the request ID is done." msgstr "Allows authentication flows initiated by the IdP. This can be a security risk, as no validation of the request ID is done." -#: src/pages/policies/reputation/ReputationPolicyForm.ts:53 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:51 msgid "Allows/denys requests based on the users and/or the IPs reputation." msgstr "Allows/denys requests based on the users and/or the IPs reputation." -#: src/pages/sources/saml/SAMLSourceForm.ts:96 +#: src/pages/sources/saml/SAMLSourceForm.ts:94 msgid "Also known as Entity ID. Defaults the Metadata URL." msgstr "Also known as Entity ID. Defaults the Metadata URL." @@ -181,7 +181,7 @@ msgid "Always require consent" msgstr "Always require consent" #: src/pages/events/EventInfo.ts:59 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:99 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:97 msgid "App" msgstr "App" @@ -200,18 +200,17 @@ msgstr "Application Icon" msgid "Application requires following permissions" msgstr "Application requires following permissions" -#: src/pages/applications/ApplicationForm.ts:90 +#: src/pages/applications/ApplicationForm.ts:95 msgid "Application's display Name." msgstr "Application's display Name." #: src/interfaces/AdminInterface.ts:38 -#: src/pages/LibraryPage.ts:93 #: src/pages/LibraryPage.ts:130 #: src/pages/applications/ApplicationListPage.ts:28 msgid "Applications" msgstr "Applications" -#: src/pages/admin-overview/AdminOverviewPage.ts:105 +#: src/pages/admin-overview/AdminOverviewPage.ts:111 msgid "Apps with most usage" msgstr "Apps with most usage" @@ -223,15 +222,15 @@ msgstr "Are you sure you want to delete {0} {objName} ?" msgid "Are you sure you want to update {0} \"{1}\"?" msgstr "Are you sure you want to update {0} \"{1}\"?" -#: src/pages/providers/saml/SAMLProviderForm.ts:209 +#: src/pages/providers/saml/SAMLProviderForm.ts:208 msgid "Assertion not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3)." msgstr "Assertion not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3)." -#: src/pages/providers/saml/SAMLProviderForm.ts:197 +#: src/pages/providers/saml/SAMLProviderForm.ts:196 msgid "Assertion valid not before" msgstr "Assertion valid not before" -#: src/pages/providers/saml/SAMLProviderForm.ts:205 +#: src/pages/providers/saml/SAMLProviderForm.ts:204 msgid "Assertion valid not on or after" msgstr "Assertion valid not on or after" @@ -255,32 +254,32 @@ msgstr "Assigned to {0} objects." msgid "Attempted to log in as {0}" msgstr "Attempted to log in as {0}" -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:63 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:61 msgid "Attribute name used for SAML Assertions. Can be a URN OID, a schema reference, or a any other string. If this property mapping is used for NameID Property, this field is discarded." msgstr "Attribute name used for SAML Assertions. Can be a URN OID, a schema reference, or a any other string. If this property mapping is used for NameID Property, this field is discarded." -#: src/pages/groups/GroupForm.ts:134 -#: src/pages/stages/invitation/InvitationForm.ts:52 -#: src/pages/users/UserForm.ts:77 +#: src/pages/groups/GroupForm.ts:139 +#: src/pages/stages/invitation/InvitationForm.ts:57 +#: src/pages/users/UserForm.ts:82 msgid "Attributes" msgstr "Attributes" -#: src/pages/providers/saml/SAMLProviderForm.ts:108 +#: src/pages/providers/saml/SAMLProviderForm.ts:107 #: src/pages/providers/saml/SAMLProviderViewPage.ts:92 msgid "Audience" msgstr "Audience" -#: src/flows/sources/plex/PlexLoginInit.ts:56 +#: src/flows/sources/plex/PlexLoginInit.ts:68 msgid "Authenticating with Plex..." msgstr "Authenticating with Plex..." -#: src/pages/flows/FlowForm.ts:55 +#: src/pages/flows/FlowForm.ts:60 msgid "Authentication" msgstr "Authentication" -#: src/pages/sources/oauth/OAuthSourceForm.ts:212 -#: src/pages/sources/plex/PlexSourceForm.ts:182 -#: src/pages/sources/saml/SAMLSourceForm.ts:245 +#: src/pages/sources/oauth/OAuthSourceForm.ts:231 +#: src/pages/sources/plex/PlexSourceForm.ts:185 +#: src/pages/sources/saml/SAMLSourceForm.ts:243 msgid "Authentication flow" msgstr "Authentication flow" @@ -289,7 +288,7 @@ msgstr "Authentication flow" msgid "Authenticator" msgstr "Authenticator" -#: src/pages/flows/FlowForm.ts:58 +#: src/pages/flows/FlowForm.ts:63 msgid "Authorization" msgstr "Authorization" @@ -297,14 +296,14 @@ msgstr "Authorization" msgid "Authorization Code" msgstr "Authorization Code" -#: src/pages/sources/oauth/OAuthSourceForm.ts:66 +#: src/pages/sources/oauth/OAuthSourceForm.ts:67 #: src/pages/sources/oauth/OAuthSourceViewPage.ts:96 msgid "Authorization URL" msgstr "Authorization URL" #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:62 #: src/pages/providers/proxy/ProxyProviderForm.ts:104 -#: src/pages/providers/saml/SAMLProviderForm.ts:59 +#: src/pages/providers/saml/SAMLProviderForm.ts:58 #: src/pages/providers/saml/SAMLProviderImportForm.ts:44 msgid "Authorization flow" msgstr "Authorization flow" @@ -317,15 +316,15 @@ msgstr "Authorize URL" msgid "Authorized application:" msgstr "Authorized application:" -#: src/pages/stages/password/PasswordStageForm.ts:74 +#: src/pages/stages/password/PasswordStageForm.ts:72 msgid "Backends" msgstr "Backends" -#: src/pages/flows/FlowForm.ts:124 +#: src/pages/flows/FlowForm.ts:129 msgid "Background" msgstr "Background" -#: src/pages/flows/FlowForm.ts:127 +#: src/pages/flows/FlowForm.ts:132 #: src/pages/flows/FlowImportForm.ts:37 msgid "Background shown during execution." msgstr "Background shown during execution." @@ -338,13 +337,13 @@ msgstr "Backup finished with errors." msgid "Backup finished with warnings." msgstr "Backup finished with warnings." -#: src/pages/admin-overview/AdminOverviewPage.ts:84 +#: src/pages/admin-overview/AdminOverviewPage.ts:94 msgid "Backup status" msgstr "Backup status" -#: src/pages/providers/ldap/LDAPProviderForm.ts:97 +#: src/pages/providers/ldap/LDAPProviderForm.ts:95 #: src/pages/providers/ldap/LDAPProviderViewPage.ts:82 -#: src/pages/sources/ldap/LDAPSourceForm.ts:131 +#: src/pages/sources/ldap/LDAPSourceForm.ts:129 #: src/pages/sources/ldap/LDAPSourceViewPage.ts:80 msgid "Base DN" msgstr "Base DN" @@ -369,15 +368,15 @@ msgstr "Based on the username" msgid "Basic-Auth" msgstr "Basic-Auth" -#: src/pages/sources/ldap/LDAPSourceForm.ts:118 +#: src/pages/sources/ldap/LDAPSourceForm.ts:116 msgid "Bind CN" msgstr "Bind CN" -#: src/pages/sources/ldap/LDAPSourceForm.ts:124 +#: src/pages/sources/ldap/LDAPSourceForm.ts:122 msgid "Bind Password" msgstr "Bind Password" -#: src/pages/providers/ldap/LDAPProviderForm.ts:60 +#: src/pages/providers/ldap/LDAPProviderForm.ts:58 msgid "Bind flow" msgstr "Bind flow" @@ -391,7 +390,7 @@ msgstr "Bind stage" msgid "Binding" msgstr "Binding" -#: src/pages/sources/saml/SAMLSourceForm.ts:99 +#: src/pages/sources/saml/SAMLSourceForm.ts:97 msgid "Binding Type" msgstr "Binding Type" @@ -404,15 +403,15 @@ msgstr "Build hash: {0}" msgid "Built-in" msgstr "Built-in" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:88 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:86 msgid "CA which the endpoint's Certificate is verified against. Can be left empty for no validation." msgstr "CA which the endpoint's Certificate is verified against. Can be left empty for no validation." -#: src/pages/admin-overview/graphs/FlowStatusCard.ts:54 +#: src/pages/admin-overview/charts/FlowStatusChart.ts:54 msgid "Cached flows" msgstr "Cached flows" -#: src/pages/admin-overview/graphs/PolicyStatusCard.ts:59 +#: src/pages/admin-overview/charts/PolicyStatusChart.ts:59 msgid "Cached policies" msgstr "Cached policies" @@ -420,7 +419,7 @@ msgstr "Cached policies" msgid "Callback URL" msgstr "Callback URL" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:72 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:70 msgid "Can be in the format of 'unix://' when connecting to a local docker daemon, or 'https://:2376' when connecting to a remote system." msgstr "Can be in the format of 'unix://' when connecting to a local docker daemon, or 'https://:2376' when connecting to a remote system." @@ -432,11 +431,11 @@ msgstr "Can be in the format of 'unix://' when connecting to a local docker daem msgid "Cancel" msgstr "Cancel" -#: src/pages/stages/identification/IdentificationStageForm.ts:91 +#: src/pages/stages/identification/IdentificationStageForm.ts:89 msgid "Case insensitive matching" msgstr "Case insensitive matching" -#: src/pages/crypto/CertificateKeyPairForm.ts:51 +#: src/pages/crypto/CertificateKeyPairForm.ts:56 #: src/pages/providers/proxy/ProxyProviderForm.ts:157 msgid "Certificate" msgstr "Certificate" @@ -449,7 +448,7 @@ msgstr "Certificate Fingerprint" msgid "Certificate Subjet" msgstr "Certificate Subjet" -#: src/pages/providers/saml/SAMLProviderForm.ts:135 +#: src/pages/providers/saml/SAMLProviderForm.ts:134 msgid "Certificate used to sign outgoing Responses going to the Service Provider." msgstr "Certificate used to sign outgoing Responses going to the Service Provider." @@ -461,7 +460,7 @@ msgstr "Certificate-Key Pair" msgid "Certificate-Key Pairs" msgstr "Certificate-Key Pairs" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:104 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:102 msgid "Certificate/Key used for authentication. Can be left empty for no authentication." msgstr "Certificate/Key used for authentication. Can be left empty for no authentication." @@ -491,15 +490,15 @@ msgstr "Change your password" msgid "Changelog" msgstr "Changelog" -#: src/pages/policies/password/PasswordPolicyForm.ts:127 +#: src/pages/policies/password/PasswordPolicyForm.ts:125 msgid "Characters which are considered as symbols." msgstr "Characters which are considered as symbols." -#: src/pages/policies/reputation/ReputationPolicyForm.ts:81 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:79 msgid "Check IP" msgstr "Check IP" -#: src/pages/policies/reputation/ReputationPolicyForm.ts:89 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:87 msgid "Check Username" msgstr "Check Username" @@ -507,11 +506,11 @@ msgstr "Check Username" msgid "Check your Emails for a password reset link." msgstr "Check your Emails for a password reset link." -#: src/pages/stages/prompt/PromptForm.ts:60 +#: src/pages/stages/prompt/PromptForm.ts:65 msgid "Checkbox" msgstr "Checkbox" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:53 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:51 msgid "" "Checks a value from the policy request against the Have I been Pwned API, and denys the request based upon that.\n" "Note that only a part of the hash of the password is sent, the full comparison is done clientside." @@ -519,11 +518,11 @@ msgstr "" "Checks a value from the policy request against the Have I been Pwned API, and denys the request based upon that.\n" "Note that only a part of the hash of the password is sent, the full comparison is done clientside." -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:53 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:51 msgid "Checks if the request's user's password has been changed in the last x days, and denys based on settings." msgstr "Checks if the request's user's password has been changed in the last x days, and denys based on settings." -#: src/pages/policies/password/PasswordPolicyForm.ts:53 +#: src/pages/policies/password/PasswordPolicyForm.ts:51 msgid "Checks the value from the policy request against several rules, mostly used to ensure password strength." msgstr "Checks the value from the policy request against several rules, mostly used to ensure password strength." @@ -537,14 +536,14 @@ msgstr "Click to copy token" #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:107 #: src/pages/providers/oauth2/OAuth2ProviderViewPage.ts:99 -#: src/pages/sources/plex/PlexSourceForm.ts:138 +#: src/pages/sources/plex/PlexSourceForm.ts:141 msgid "Client ID" msgstr "Client ID" #: src/elements/events/ObjectChangelog.ts:41 #: src/elements/events/UserEvents.ts:38 #: src/pages/events/EventListPage.ts:46 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:93 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:91 msgid "Client IP" msgstr "Client IP" @@ -582,10 +581,10 @@ msgstr "Confidential clients are capable of maintaining the confidentiality of t msgid "Configuration" msgstr "Configuration" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:74 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:80 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:72 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:78 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:118 -#: src/pages/stages/password/PasswordStageForm.ts:89 +#: src/pages/stages/password/PasswordStageForm.ts:87 msgid "Configuration flow" msgstr "Configuration flow" @@ -601,7 +600,7 @@ msgstr "Configure how long access codes are valid for." msgid "Configure how long refresh tokens and their id_tokens are valid for." msgstr "Configure how long refresh tokens and their id_tokens are valid for." -#: src/pages/providers/saml/SAMLProviderForm.ts:193 +#: src/pages/providers/saml/SAMLProviderForm.ts:192 msgid "Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be respected." msgstr "Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be respected." @@ -613,7 +612,7 @@ msgstr "Configure how the issuer field of the ID Token should be filled." msgid "Configure settings relevant to your user profile." msgstr "Configure settings relevant to your user profile." -#: src/pages/providers/saml/SAMLProviderForm.ts:201 +#: src/pages/providers/saml/SAMLProviderForm.ts:200 msgid "Configure the maximum allowed time drift for an asseration." msgstr "Configure the maximum allowed time drift for an asseration." @@ -633,8 +632,8 @@ msgstr "Connected." msgid "Connection error, reconnecting..." msgstr "Connection error, reconnecting..." -#: src/pages/sources/ldap/LDAPSourceForm.ts:100 -#: src/pages/stages/email/EmailStageForm.ts:58 +#: src/pages/sources/ldap/LDAPSourceForm.ts:98 +#: src/pages/stages/email/EmailStageForm.ts:59 msgid "Connection settings" msgstr "Connection settings" @@ -654,19 +653,19 @@ msgstr "Consent expires." msgid "Consent given last indefinitely" msgstr "Consent given last indefinitely" -#: src/pages/sources/ldap/LDAPSourceForm.ts:219 +#: src/pages/sources/ldap/LDAPSourceForm.ts:217 msgid "Consider Objects matching this filter to be Groups." msgstr "Consider Objects matching this filter to be Groups." -#: src/pages/sources/ldap/LDAPSourceForm.ts:212 +#: src/pages/sources/ldap/LDAPSourceForm.ts:210 msgid "Consider Objects matching this filter to be Users." msgstr "Consider Objects matching this filter to be Users." -#: src/pages/sources/oauth/OAuthSourceForm.ts:148 +#: src/pages/sources/oauth/OAuthSourceForm.ts:167 msgid "Consumer key" msgstr "Consumer key" -#: src/pages/sources/oauth/OAuthSourceForm.ts:154 +#: src/pages/sources/oauth/OAuthSourceForm.ts:173 msgid "Consumer secret" msgstr "Consumer secret" @@ -690,7 +689,7 @@ msgstr "Context" msgid "Continue" msgstr "Continue" -#: src/pages/stages/invitation/InvitationStageForm.ts:70 +#: src/pages/stages/invitation/InvitationStageForm.ts:68 msgid "Continue flow without invitation" msgstr "Continue flow without invitation" @@ -707,7 +706,7 @@ msgstr "Copy" msgid "Copy Key" msgstr "Copy Key" -#: src/pages/applications/ApplicationForm.ts:120 +#: src/pages/applications/ApplicationForm.ts:125 #: src/pages/applications/ApplicationListPage.ts:121 #: src/pages/applications/ApplicationListPage.ts:129 #: src/pages/crypto/CertificateKeyPairListPage.ts:122 @@ -746,8 +745,8 @@ msgstr "Copy Key" #: src/pages/stages/invitation/InvitationListPage.ts:85 #: src/pages/stages/prompt/PromptListPage.ts:96 #: src/pages/stages/prompt/PromptListPage.ts:104 -#: src/pages/stages/prompt/PromptStageForm.ts:90 -#: src/pages/stages/prompt/PromptStageForm.ts:98 +#: src/pages/stages/prompt/PromptStageForm.ts:88 +#: src/pages/stages/prompt/PromptStageForm.ts:96 #: src/pages/user-settings/tokens/UserTokenList.ts:50 #: src/pages/user-settings/tokens/UserTokenList.ts:58 #: src/pages/users/UserListPage.ts:155 @@ -804,7 +803,7 @@ msgid "Create Policy" msgstr "Create Policy" #: src/pages/stages/prompt/PromptListPage.ts:99 -#: src/pages/stages/prompt/PromptStageForm.ts:93 +#: src/pages/stages/prompt/PromptStageForm.ts:91 msgid "Create Prompt" msgstr "Create Prompt" @@ -825,11 +824,11 @@ msgstr "Create Token" msgid "Create User" msgstr "Create User" -#: src/pages/applications/ApplicationForm.ts:111 +#: src/pages/applications/ApplicationForm.ts:116 msgid "Create provider" msgstr "Create provider" -#: src/pages/applications/ApplicationForm.ts:123 +#: src/pages/applications/ApplicationForm.ts:128 #: src/pages/flows/BoundStagesList.ts:149 #: src/pages/outposts/ServiceConnectionListPage.ts:122 #: src/pages/policies/BoundPoliciesList.ts:192 @@ -859,20 +858,20 @@ msgstr "Creation Date" msgid "Customisation" msgstr "Customisation" -#: src/pages/providers/saml/SAMLProviderForm.ts:256 -#: src/pages/sources/saml/SAMLSourceForm.ts:212 +#: src/pages/providers/saml/SAMLProviderForm.ts:255 +#: src/pages/sources/saml/SAMLSourceForm.ts:210 msgid "DSA-SHA1" msgstr "DSA-SHA1" -#: src/pages/stages/prompt/PromptForm.ts:63 +#: src/pages/stages/prompt/PromptForm.ts:68 msgid "Date" msgstr "Date" -#: src/pages/stages/prompt/PromptForm.ts:66 +#: src/pages/stages/prompt/PromptForm.ts:71 msgid "Date Time" msgstr "Date Time" -#: src/pages/flows/FlowForm.ts:121 +#: src/pages/flows/FlowForm.ts:126 msgid "Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik." msgstr "Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik." @@ -924,11 +923,11 @@ msgstr "Delete Refresh Code" msgid "Delete account" msgstr "Delete account" -#: src/pages/sources/saml/SAMLSourceForm.ts:169 +#: src/pages/sources/saml/SAMLSourceForm.ts:167 msgid "Delete temporary users after" msgstr "Delete temporary users after" -#: src/pages/stages/user_delete/UserDeleteStageForm.ts:51 +#: src/pages/stages/user_delete/UserDeleteStageForm.ts:49 msgid "" "Delete the currently pending user. CAUTION, this stage does not ask for\n" "confirmation. Use a consent stage to ensure the user is aware of their actions." @@ -944,31 +943,31 @@ msgstr "Delete {0}" msgid "Deny the user access" msgstr "Deny the user access" -#: src/pages/applications/ApplicationForm.ts:170 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:65 +#: src/pages/applications/ApplicationForm.ts:175 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:63 #: src/pages/system-tasks/SystemTaskListPage.ts:55 -#: src/pages/user-settings/tokens/UserTokenForm.ts:50 +#: src/pages/user-settings/tokens/UserTokenForm.ts:55 msgid "Description" msgstr "Description" -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:69 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:67 msgid "Description shown to the user when consenting. If left empty, the user won't be informed." msgstr "Description shown to the user when consenting. If left empty, the user won't be informed." -#: src/pages/users/UserForm.ts:74 +#: src/pages/users/UserForm.ts:79 msgid "Designates whether this user should be treated as active. Unselect this instead of deleting accounts." msgstr "Designates whether this user should be treated as active. Unselect this instead of deleting accounts." -#: src/pages/flows/FlowForm.ts:114 +#: src/pages/flows/FlowForm.ts:119 #: src/pages/flows/FlowListPage.ts:48 msgid "Designation" msgstr "Designation" -#: src/pages/providers/saml/SAMLProviderForm.ts:105 +#: src/pages/providers/saml/SAMLProviderForm.ts:104 msgid "Determines how authentik sends the response back to the Service Provider." msgstr "Determines how authentik sends the response back to the Service Provider." -#: src/pages/stages/user_login/UserLoginStageForm.ts:70 +#: src/pages/stages/user_login/UserLoginStageForm.ts:68 msgid "Determines how long a session lasts. Default of 0 seconds means that the sessions lasts until the browser is closed." msgstr "Determines how long a session lasts. Default of 0 seconds means that the sessions lasts until the browser is closed." @@ -980,12 +979,12 @@ msgstr "Device classes which can be used to authenticate." msgid "Device name" msgstr "Device name" -#: src/pages/providers/saml/SAMLProviderForm.ts:220 -#: src/pages/sources/saml/SAMLSourceForm.ts:176 +#: src/pages/providers/saml/SAMLProviderForm.ts:219 +#: src/pages/sources/saml/SAMLSourceForm.ts:174 msgid "Digest algorithm" msgstr "Digest algorithm" -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:67 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:65 msgid "Digits" msgstr "Digits" @@ -1010,7 +1009,7 @@ msgstr "Disabled" msgid "Disconnect" msgstr "Disconnect" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:68 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:66 msgid "Docker URL" msgstr "Docker URL" @@ -1019,7 +1018,7 @@ msgstr "Docker URL" msgid "Download" msgstr "Download" -#: src/pages/stages/dummy/DummyStageForm.ts:51 +#: src/pages/stages/dummy/DummyStageForm.ts:49 msgid "Dummy stage used for testing. Shows a simple continue button and always passes." msgstr "Dummy stage used for testing. Shows a simple continue button and always passes." @@ -1083,15 +1082,15 @@ msgid "Either no applications are defined, or you don't have access to any." msgstr "Either no applications are defined, or you don't have access to any." #: src/flows/stages/identification/IdentificationStage.ts:146 -#: src/pages/events/TransportForm.ts:46 -#: src/pages/stages/identification/IdentificationStageForm.ts:81 +#: src/pages/events/TransportForm.ts:51 +#: src/pages/stages/identification/IdentificationStageForm.ts:79 #: src/pages/user-settings/UserDetailsPage.ts:71 -#: src/pages/users/UserForm.ts:61 +#: src/pages/users/UserForm.ts:66 #: src/pages/users/UserViewPage.ts:100 msgid "Email" msgstr "Email" -#: src/pages/sources/saml/SAMLSourceForm.ts:155 +#: src/pages/sources/saml/SAMLSourceForm.ts:153 msgid "Email address" msgstr "Email address" @@ -1099,7 +1098,7 @@ msgstr "Email address" msgid "Email or username" msgstr "Email or username" -#: src/pages/stages/prompt/PromptForm.ts:51 +#: src/pages/stages/prompt/PromptForm.ts:56 msgid "Email: Text field with Email type." msgstr "Email: Text field with Email type." @@ -1108,7 +1107,7 @@ msgstr "Email: Text field with Email type." msgid "Enable" msgstr "Enable" -#: src/pages/sources/ldap/LDAPSourceForm.ts:113 +#: src/pages/sources/ldap/LDAPSourceForm.ts:111 msgid "Enable StartTLS" msgstr "Enable StartTLS" @@ -1129,22 +1128,22 @@ msgid "Enable this if you don't want to use this provider as a proxy, and want t msgstr "Enable this if you don't want to use this provider as a proxy, and want to use it with Traefik's forwardAuth or nginx's auth_request." #: src/pages/policies/BoundPoliciesList.ts:41 -#: src/pages/policies/PolicyBindingForm.ts:198 -#: src/pages/sources/ldap/LDAPSourceForm.ts:69 -#: src/pages/sources/oauth/OAuthSourceForm.ts:115 -#: src/pages/sources/plex/PlexSourceForm.ts:105 -#: src/pages/sources/saml/SAMLSourceForm.ts:69 +#: src/pages/policies/PolicyBindingForm.ts:199 +#: src/pages/sources/ldap/LDAPSourceForm.ts:67 +#: src/pages/sources/oauth/OAuthSourceForm.ts:134 +#: src/pages/sources/plex/PlexSourceForm.ts:108 +#: src/pages/sources/saml/SAMLSourceForm.ts:67 msgid "Enabled" msgstr "Enabled" -#: src/pages/flows/FlowForm.ts:61 +#: src/pages/flows/FlowForm.ts:66 msgid "Enrollment" msgstr "Enrollment" -#: src/pages/sources/oauth/OAuthSourceForm.ts:233 -#: src/pages/sources/plex/PlexSourceForm.ts:203 -#: src/pages/sources/saml/SAMLSourceForm.ts:266 -#: src/pages/stages/identification/IdentificationStageForm.ts:106 +#: src/pages/sources/oauth/OAuthSourceForm.ts:252 +#: src/pages/sources/plex/PlexSourceForm.ts:206 +#: src/pages/sources/saml/SAMLSourceForm.ts:264 +#: src/pages/stages/identification/IdentificationStageForm.ts:104 msgid "Enrollment flow" msgstr "Enrollment flow" @@ -1156,7 +1155,7 @@ msgstr "Error" msgid "Error creating credential: {err}" msgstr "Error creating credential: {err}" -#: src/pages/policies/password/PasswordPolicyForm.ts:110 +#: src/pages/policies/password/PasswordPolicyForm.ts:108 msgid "Error message" msgstr "Error message" @@ -1176,15 +1175,15 @@ msgstr "Error: unsupported source settings: {0}" msgid "Error: unsupported stage settings: {0}" msgstr "Error: unsupported stage settings: {0}" -#: src/pages/flows/StageBindingForm.ts:119 +#: src/pages/flows/StageBindingForm.ts:124 msgid "Evaluate on plan" msgstr "Evaluate on plan" -#: src/pages/flows/StageBindingForm.ts:133 +#: src/pages/flows/StageBindingForm.ts:138 msgid "Evaluate policies before the Stage is present to the user." msgstr "Evaluate policies before the Stage is present to the user." -#: src/pages/flows/StageBindingForm.ts:123 +#: src/pages/flows/StageBindingForm.ts:128 msgid "Evaluate policies during the Flow planning process. Disable this for input-based policies. Should be used in conjunction with 'Re-evaluate policies', as with this option disabled, policies are **not** evaluated." msgstr "Evaluate policies during the Flow planning process. Disable this for input-based policies. Should be used in conjunction with 'Re-evaluate policies', as with this option disabled, policies are **not** evaluated." @@ -1218,24 +1217,24 @@ msgstr "Execute" msgid "Execute flow" msgstr "Execute flow" -#: src/pages/policies/expression/ExpressionPolicyForm.ts:54 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:52 msgid "Executes the python snippet to determine whether to allow or deny a request." msgstr "Executes the python snippet to determine whether to allow or deny a request." -#: src/pages/policies/dummy/DummyPolicyForm.ts:65 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:66 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:65 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:66 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:66 -#: src/pages/policies/password/PasswordPolicyForm.ts:65 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:65 +#: src/pages/policies/dummy/DummyPolicyForm.ts:63 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:64 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:63 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:64 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:64 +#: src/pages/policies/password/PasswordPolicyForm.ts:63 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:63 msgid "Execution logging" msgstr "Execution logging" #: src/elements/oauth/UserCodeList.ts:30 #: src/elements/oauth/UserRefreshList.ts:30 #: src/elements/user/UserConsentList.ts:30 -#: src/pages/stages/invitation/InvitationForm.ts:46 +#: src/pages/stages/invitation/InvitationForm.ts:51 msgid "Expires" msgstr "Expires" @@ -1266,17 +1265,17 @@ msgid "Export" msgstr "Export" #: src/pages/events/EventInfo.ts:133 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:79 -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:65 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:75 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:72 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:77 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:63 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:73 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:70 msgid "Expression" msgstr "Expression" -#: src/pages/policies/expression/ExpressionPolicyForm.ts:85 -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:71 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:81 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:78 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:83 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:69 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:79 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:76 msgid "Expression using Python." msgstr "Expression using Python." @@ -1292,11 +1291,11 @@ msgstr "External Host" msgid "External host" msgstr "External host" -#: src/pages/stages/password/PasswordStageForm.ts:111 +#: src/pages/stages/password/PasswordStageForm.ts:109 msgid "Failed attempts before cancel" msgstr "Failed attempts before cancel" -#: src/pages/admin-overview/graphs/LDAPSyncStatusCard.ts:76 +#: src/pages/admin-overview/charts/LDAPSyncStatusChart.ts:76 msgid "Failed sources" msgstr "Failed sources" @@ -1312,32 +1311,32 @@ msgstr "Failed to update {0}: {1}" msgid "Field" msgstr "Field" -#: src/pages/stages/prompt/PromptForm.ts:83 +#: src/pages/stages/prompt/PromptForm.ts:88 msgid "Field Key" msgstr "Field Key" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:83 -#: src/pages/policies/password/PasswordPolicyForm.ts:82 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:81 +#: src/pages/policies/password/PasswordPolicyForm.ts:80 msgid "Field key to check, field keys defined in Prompt stages are available." msgstr "Field key to check, field keys defined in Prompt stages are available." -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:62 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:60 msgid "Field of the user object this value is written to." msgstr "Field of the user object this value is written to." -#: src/pages/sources/ldap/LDAPSourceForm.ts:233 +#: src/pages/sources/ldap/LDAPSourceForm.ts:231 msgid "Field which contains a unique Identifier." msgstr "Field which contains a unique Identifier." -#: src/pages/sources/ldap/LDAPSourceForm.ts:226 +#: src/pages/sources/ldap/LDAPSourceForm.ts:224 msgid "Field which contains members of a group." msgstr "Field which contains members of a group." -#: src/pages/stages/prompt/PromptStageForm.ts:69 +#: src/pages/stages/prompt/PromptStageForm.ts:67 msgid "Fields" msgstr "Fields" -#: src/pages/stages/identification/IdentificationStageForm.ts:84 +#: src/pages/stages/identification/IdentificationStageForm.ts:82 msgid "Fields a user can identify themselves with. If no fields are selected, the user will only be able to use sources." msgstr "Fields a user can identify themselves with. If no fields are selected, the user will only be able to use sources." @@ -1350,44 +1349,44 @@ msgstr "Flow" msgid "Flow Overview" msgstr "Flow Overview" -#: src/pages/sources/oauth/OAuthSourceForm.ts:208 -#: src/pages/sources/plex/PlexSourceForm.ts:178 -#: src/pages/sources/saml/SAMLSourceForm.ts:220 +#: src/pages/sources/oauth/OAuthSourceForm.ts:227 +#: src/pages/sources/plex/PlexSourceForm.ts:181 +#: src/pages/sources/saml/SAMLSourceForm.ts:218 msgid "Flow settings" msgstr "Flow settings" -#: src/pages/sources/oauth/OAuthSourceForm.ts:230 -#: src/pages/sources/plex/PlexSourceForm.ts:200 -#: src/pages/sources/saml/SAMLSourceForm.ts:263 +#: src/pages/sources/oauth/OAuthSourceForm.ts:249 +#: src/pages/sources/plex/PlexSourceForm.ts:203 +#: src/pages/sources/saml/SAMLSourceForm.ts:261 msgid "Flow to use when authenticating existing users." msgstr "Flow to use when authenticating existing users." -#: src/pages/sources/oauth/OAuthSourceForm.ts:251 -#: src/pages/sources/plex/PlexSourceForm.ts:221 -#: src/pages/sources/saml/SAMLSourceForm.ts:284 +#: src/pages/sources/oauth/OAuthSourceForm.ts:270 +#: src/pages/sources/plex/PlexSourceForm.ts:224 +#: src/pages/sources/saml/SAMLSourceForm.ts:282 msgid "Flow to use when enrolling new users." msgstr "Flow to use when enrolling new users." -#: src/pages/sources/saml/SAMLSourceForm.ts:242 +#: src/pages/sources/saml/SAMLSourceForm.ts:240 msgid "Flow used before authentication." msgstr "Flow used before authentication." -#: src/pages/stages/password/PasswordStageForm.ts:108 +#: src/pages/stages/password/PasswordStageForm.ts:106 msgid "Flow used by an authenticated user to configure their password. If empty, user will not be able to configure change their password." msgstr "Flow used by an authenticated user to configure their password. If empty, user will not be able to configure change their password." -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:93 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:98 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:91 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:96 msgid "Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage." msgstr "Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage." -#: src/pages/providers/ldap/LDAPProviderForm.ts:74 +#: src/pages/providers/ldap/LDAPProviderForm.ts:72 msgid "Flow used for users to authenticate. Currently only identification and password stages are supported." msgstr "Flow used for users to authenticate. Currently only identification and password stages are supported." #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:76 #: src/pages/providers/proxy/ProxyProviderForm.ts:118 -#: src/pages/providers/saml/SAMLProviderForm.ts:73 +#: src/pages/providers/saml/SAMLProviderForm.ts:72 #: src/pages/providers/saml/SAMLProviderImportForm.ts:57 msgid "Flow used when authorizing this provider." msgstr "Flow used when authorizing this provider." @@ -1420,11 +1419,11 @@ msgstr "Forgot username or password?" msgid "Form didn't return a promise for submitting" msgstr "Form didn't return a promise for submitting" -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:67 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:65 msgid "Friendly Name" msgstr "Friendly Name" -#: src/pages/stages/email/EmailStageForm.ts:107 +#: src/pages/stages/email/EmailStageForm.ts:108 msgid "From address" msgstr "From address" @@ -1449,23 +1448,23 @@ msgstr "Go to next page" msgid "Go to previous page" msgstr "Go to previous page" -#: src/pages/events/RuleForm.ts:65 +#: src/pages/events/RuleForm.ts:70 #: src/pages/groups/GroupListPage.ts:74 -#: src/pages/policies/PolicyBindingForm.ts:124 -#: src/pages/policies/PolicyBindingForm.ts:160 -#: src/pages/providers/ldap/LDAPProviderForm.ts:77 +#: src/pages/policies/PolicyBindingForm.ts:125 +#: src/pages/policies/PolicyBindingForm.ts:161 +#: src/pages/providers/ldap/LDAPProviderForm.ts:75 msgid "Group" msgstr "Group" -#: src/pages/sources/ldap/LDAPSourceForm.ts:170 +#: src/pages/sources/ldap/LDAPSourceForm.ts:168 msgid "Group Property Mappings" msgstr "Group Property Mappings" -#: src/pages/sources/ldap/LDAPSourceForm.ts:222 +#: src/pages/sources/ldap/LDAPSourceForm.ts:220 msgid "Group membership field" msgstr "Group membership field" -#: src/pages/sources/ldap/LDAPSourceForm.ts:215 +#: src/pages/sources/ldap/LDAPSourceForm.ts:213 msgid "Group object filter" msgstr "Group object filter" @@ -1478,6 +1477,7 @@ msgid "Group {0}" msgstr "Group {0}" #: src/interfaces/AdminInterface.ts:103 +#: src/pages/admin-overview/AdminOverviewPage.ts:76 #: src/pages/groups/GroupListPage.ts:27 msgid "Groups" msgstr "Groups" @@ -1498,15 +1498,15 @@ msgstr "HTTP-Basic Username Key" msgid "Health and Version" msgstr "Health and Version" -#: src/pages/admin-overview/graphs/OutpostStatusCard.ts:70 +#: src/pages/admin-overview/charts/OutpostStatusChart.ts:70 msgid "Healthy outposts" msgstr "Healthy outposts" -#: src/pages/admin-overview/graphs/LDAPSyncStatusCard.ts:75 +#: src/pages/admin-overview/charts/LDAPSyncStatusChart.ts:75 msgid "Healthy sources" msgstr "Healthy sources" -#: src/pages/stages/prompt/PromptForm.ts:72 +#: src/pages/stages/prompt/PromptForm.ts:77 msgid "Hidden: Hidden field, can be used to insert data into form." msgstr "Hidden: Hidden field, can be used to insert data into form." @@ -1518,23 +1518,23 @@ msgstr "Hide managed mappings" msgid "Hide service-accounts" msgstr "Hide service-accounts" -#: src/pages/events/RuleForm.ts:93 -#: src/pages/groups/GroupForm.ts:131 -#: src/pages/outposts/OutpostForm.ts:110 +#: src/pages/events/RuleForm.ts:98 +#: src/pages/groups/GroupForm.ts:136 +#: src/pages/outposts/OutpostForm.ts:115 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:188 -#: src/pages/providers/saml/SAMLProviderForm.ts:177 -#: src/pages/sources/ldap/LDAPSourceForm.ts:167 -#: src/pages/sources/ldap/LDAPSourceForm.ts:193 -#: src/pages/sources/plex/PlexSourceForm.ts:165 +#: src/pages/providers/saml/SAMLProviderForm.ts:176 +#: src/pages/sources/ldap/LDAPSourceForm.ts:165 +#: src/pages/sources/ldap/LDAPSourceForm.ts:191 +#: src/pages/sources/plex/PlexSourceForm.ts:168 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:114 -#: src/pages/stages/identification/IdentificationStageForm.ts:85 -#: src/pages/stages/password/PasswordStageForm.ts:86 -#: src/pages/stages/prompt/PromptStageForm.ts:87 -#: src/pages/stages/prompt/PromptStageForm.ts:121 +#: src/pages/stages/identification/IdentificationStageForm.ts:83 +#: src/pages/stages/password/PasswordStageForm.ts:84 +#: src/pages/stages/prompt/PromptStageForm.ts:85 +#: src/pages/stages/prompt/PromptStageForm.ts:119 msgid "Hold control/command to select multiple items." msgstr "Hold control/command to select multiple items." -#: src/pages/stages/password/PasswordStageForm.ts:115 +#: src/pages/stages/password/PasswordStageForm.ts:113 msgid "How many attempts a user has before the flow is canceled. To lock the user out, use a reputation policy and a user_write stage." msgstr "How many attempts a user has before the flow is canceled. To lock the user out, use a reputation policy and a user_write stage." @@ -1542,14 +1542,14 @@ msgstr "How many attempts a user has before the flow is canceled. To lock the us msgid "ID" msgstr "ID" -#: src/pages/applications/ApplicationForm.ts:165 +#: src/pages/applications/ApplicationForm.ts:170 msgid "Icon" msgstr "Icon" #: src/pages/flows/FlowListPage.ts:46 #: src/pages/system-tasks/SystemTaskListPage.ts:54 #: src/pages/tokens/TokenListPage.ts:44 -#: src/pages/user-settings/tokens/UserTokenForm.ts:44 +#: src/pages/user-settings/tokens/UserTokenForm.ts:49 #: src/pages/user-settings/tokens/UserTokenList.ts:39 msgid "Identifier" msgstr "Identifier" @@ -1558,16 +1558,16 @@ msgstr "Identifier" msgid "Identity & Cryptography" msgstr "Identity & Cryptography" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:65 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:66 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:63 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:64 msgid "If enabled, use the local connection. Required Docker socket/Kubernetes Integration." msgstr "If enabled, use the local connection. Required Docker socket/Kubernetes Integration." -#: src/pages/applications/ApplicationForm.ts:162 +#: src/pages/applications/ApplicationForm.ts:167 msgid "If left empty, authentik will try to extract the launch URL based on the selected provider." msgstr "If left empty, authentik will try to extract the launch URL based on the selected provider." -#: src/pages/stages/invitation/InvitationStageForm.ts:73 +#: src/pages/stages/invitation/InvitationStageForm.ts:71 msgid "If this flag is set, this Stage will jump to the next Stage when no Invitation is given. By default this Stage will cancel the Flow when no invitation is given." msgstr "If this flag is set, this Stage will jump to the next Stage when no Invitation is given. By default this Stage will cancel the Flow when no invitation is given." @@ -1608,7 +1608,7 @@ msgstr "Include claims in id_token" msgid "Internal Host" msgstr "Internal Host" -#: src/pages/applications/ApplicationForm.ts:97 +#: src/pages/applications/ApplicationForm.ts:102 msgid "Internal application name, used in URLs." msgstr "Internal application name, used in URLs." @@ -1620,7 +1620,7 @@ msgstr "Internal host" msgid "Internal host SSL Validation" msgstr "Internal host SSL Validation" -#: src/pages/flows/FlowForm.ts:64 +#: src/pages/flows/FlowForm.ts:69 msgid "Invalidation" msgstr "Invalidation" @@ -1629,17 +1629,17 @@ msgstr "Invalidation" msgid "Invitations" msgstr "Invitations" -#: src/pages/users/UserForm.ts:71 +#: src/pages/users/UserForm.ts:76 msgid "Is active" msgstr "Is active" -#: src/pages/groups/GroupForm.ts:62 +#: src/pages/groups/GroupForm.ts:67 msgid "Is superuser" msgstr "Is superuser" -#: src/pages/providers/saml/SAMLProviderForm.ts:88 +#: src/pages/providers/saml/SAMLProviderForm.ts:87 #: src/pages/providers/saml/SAMLProviderViewPage.ts:100 -#: src/pages/sources/saml/SAMLSourceForm.ts:93 +#: src/pages/sources/saml/SAMLSourceForm.ts:91 #: src/pages/sources/saml/SAMLSourceViewPage.ts:90 msgid "Issuer" msgstr "Issuer" @@ -1656,32 +1656,32 @@ msgstr "JWT Algorithm" msgid "Key used to sign the tokens. Only required when JWT Algorithm is set to RS256." msgstr "Key used to sign the tokens. Only required when JWT Algorithm is set to RS256." -#: src/pages/sources/saml/SAMLSourceForm.ts:128 +#: src/pages/sources/saml/SAMLSourceForm.ts:126 msgid "Keypair which is used to sign outgoing requests. Leave empty to disable signing." msgstr "Keypair which is used to sign outgoing requests. Leave empty to disable signing." -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:69 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:67 msgid "Kubeconfig" msgstr "Kubeconfig" -#: src/pages/outposts/OutpostForm.ts:58 +#: src/pages/outposts/OutpostForm.ts:63 msgid "LDAP (Technical preview)" msgstr "LDAP (Technical preview)" -#: src/pages/providers/ldap/LDAPProviderForm.ts:101 +#: src/pages/providers/ldap/LDAPProviderForm.ts:99 msgid "LDAP DN under which bind requests and search requests can be made." msgstr "LDAP DN under which bind requests and search requests can be made." -#: src/pages/admin-overview/AdminOverviewPage.ts:66 +#: src/pages/admin-overview/AdminOverviewPage.ts:81 msgid "LDAP Sync status" msgstr "LDAP Sync status" -#: src/pages/stages/prompt/PromptForm.ts:90 +#: src/pages/stages/prompt/PromptForm.ts:95 #: src/pages/stages/prompt/PromptListPage.ts:47 msgid "Label" msgstr "Label" -#: src/pages/stages/prompt/PromptForm.ts:94 +#: src/pages/stages/prompt/PromptForm.ts:99 msgid "Label shown next to/above the prompt." msgstr "Label shown next to/above the prompt." @@ -1708,11 +1708,11 @@ msgstr "Last sync: {0}" msgid "Launch" msgstr "Launch" -#: src/pages/applications/ApplicationForm.ts:159 +#: src/pages/applications/ApplicationForm.ts:164 msgid "Launch URL" msgstr "Launch URL" -#: src/pages/stages/identification/IdentificationStageForm.ts:60 +#: src/pages/stages/identification/IdentificationStageForm.ts:58 msgid "Let the user identify themselves with their username or Email address." msgstr "Let the user identify themselves with their username or Email address." @@ -1720,22 +1720,22 @@ msgstr "Let the user identify themselves with their username or Email address." msgid "Library" msgstr "Library" -#: src/pages/sources/oauth/OAuthSourceForm.ts:128 -#: src/pages/sources/plex/PlexSourceForm.ts:118 +#: src/pages/sources/oauth/OAuthSourceForm.ts:147 +#: src/pages/sources/plex/PlexSourceForm.ts:121 msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses" msgstr "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses" -#: src/pages/sources/oauth/OAuthSourceForm.ts:134 -#: src/pages/sources/plex/PlexSourceForm.ts:124 +#: src/pages/sources/oauth/OAuthSourceForm.ts:153 +#: src/pages/sources/plex/PlexSourceForm.ts:127 msgid "Link to a user with identical username address. Can have security implications when a username is used with another source." msgstr "Link to a user with identical username address. Can have security implications when a username is used with another source." -#: src/pages/sources/oauth/OAuthSourceForm.ts:125 -#: src/pages/sources/plex/PlexSourceForm.ts:115 +#: src/pages/sources/oauth/OAuthSourceForm.ts:144 +#: src/pages/sources/plex/PlexSourceForm.ts:118 msgid "Link users on unique identifier" msgstr "Link users on unique identifier" -#: src/pages/sources/plex/PlexSourceForm.ts:170 +#: src/pages/sources/plex/PlexSourceForm.ts:173 msgid "Load servers" msgstr "Load servers" @@ -1763,72 +1763,72 @@ msgid "Loading" msgstr "Loading" #: src/elements/Spinner.ts:29 -#: src/pages/applications/ApplicationForm.ts:106 -#: src/pages/events/RuleForm.ts:74 -#: src/pages/events/RuleForm.ts:90 -#: src/pages/flows/StageBindingForm.ts:89 -#: src/pages/flows/StageBindingForm.ts:106 -#: src/pages/groups/GroupForm.ts:77 -#: src/pages/groups/GroupForm.ts:127 -#: src/pages/outposts/OutpostForm.ts:75 -#: src/pages/outposts/OutpostForm.ts:97 -#: src/pages/outposts/OutpostForm.ts:108 -#: src/pages/outposts/ServiceConnectionDockerForm.ts:86 -#: src/pages/outposts/ServiceConnectionDockerForm.ts:102 -#: src/pages/policies/PolicyBindingForm.ts:156 -#: src/pages/policies/PolicyBindingForm.ts:172 -#: src/pages/policies/PolicyBindingForm.ts:188 +#: src/pages/applications/ApplicationForm.ts:111 +#: src/pages/events/RuleForm.ts:79 +#: src/pages/events/RuleForm.ts:95 +#: src/pages/flows/StageBindingForm.ts:94 +#: src/pages/flows/StageBindingForm.ts:111 +#: src/pages/groups/GroupForm.ts:82 +#: src/pages/groups/GroupForm.ts:132 +#: src/pages/outposts/OutpostForm.ts:80 +#: src/pages/outposts/OutpostForm.ts:102 +#: src/pages/outposts/OutpostForm.ts:113 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:84 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:100 +#: src/pages/policies/PolicyBindingForm.ts:157 +#: src/pages/policies/PolicyBindingForm.ts:173 +#: src/pages/policies/PolicyBindingForm.ts:189 #: src/pages/policies/PolicyTestForm.ts:71 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:88 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:108 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:86 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:106 #: src/pages/property-mappings/PropertyMappingTestForm.ts:61 -#: src/pages/providers/ldap/LDAPProviderForm.ts:72 -#: src/pages/providers/ldap/LDAPProviderForm.ts:86 +#: src/pages/providers/ldap/LDAPProviderForm.ts:70 +#: src/pages/providers/ldap/LDAPProviderForm.ts:84 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:74 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:185 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:207 #: src/pages/providers/proxy/ProxyProviderForm.ts:116 #: src/pages/providers/proxy/ProxyProviderForm.ts:168 -#: src/pages/providers/saml/SAMLProviderForm.ts:71 -#: src/pages/providers/saml/SAMLProviderForm.ts:133 -#: src/pages/providers/saml/SAMLProviderForm.ts:149 -#: src/pages/providers/saml/SAMLProviderForm.ts:175 -#: src/pages/providers/saml/SAMLProviderForm.ts:191 +#: src/pages/providers/saml/SAMLProviderForm.ts:70 +#: src/pages/providers/saml/SAMLProviderForm.ts:132 +#: src/pages/providers/saml/SAMLProviderForm.ts:148 +#: src/pages/providers/saml/SAMLProviderForm.ts:174 +#: src/pages/providers/saml/SAMLProviderForm.ts:190 #: src/pages/providers/saml/SAMLProviderImportForm.ts:55 -#: src/pages/sources/ldap/LDAPSourceForm.ts:164 -#: src/pages/sources/ldap/LDAPSourceForm.ts:190 -#: src/pages/sources/oauth/OAuthSourceForm.ts:200 -#: src/pages/sources/oauth/OAuthSourceForm.ts:228 -#: src/pages/sources/oauth/OAuthSourceForm.ts:249 -#: src/pages/sources/plex/PlexSourceForm.ts:198 -#: src/pages/sources/plex/PlexSourceForm.ts:219 -#: src/pages/sources/saml/SAMLSourceForm.ts:126 -#: src/pages/sources/saml/SAMLSourceForm.ts:240 -#: src/pages/sources/saml/SAMLSourceForm.ts:261 -#: src/pages/sources/saml/SAMLSourceForm.ts:282 -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:90 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:96 +#: src/pages/sources/ldap/LDAPSourceForm.ts:162 +#: src/pages/sources/ldap/LDAPSourceForm.ts:188 +#: src/pages/sources/oauth/OAuthSourceForm.ts:219 +#: src/pages/sources/oauth/OAuthSourceForm.ts:247 +#: src/pages/sources/oauth/OAuthSourceForm.ts:268 +#: src/pages/sources/plex/PlexSourceForm.ts:201 +#: src/pages/sources/plex/PlexSourceForm.ts:222 +#: src/pages/sources/saml/SAMLSourceForm.ts:124 +#: src/pages/sources/saml/SAMLSourceForm.ts:238 +#: src/pages/sources/saml/SAMLSourceForm.ts:259 +#: src/pages/sources/saml/SAMLSourceForm.ts:280 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:88 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:94 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:131 -#: src/pages/stages/email/EmailStageForm.ts:170 -#: src/pages/stages/identification/IdentificationStageForm.ts:119 -#: src/pages/stages/identification/IdentificationStageForm.ts:137 -#: src/pages/stages/password/PasswordStageForm.ts:106 -#: src/pages/stages/prompt/PromptStageForm.ts:85 -#: src/pages/stages/prompt/PromptStageForm.ts:118 +#: src/pages/stages/email/EmailStageForm.ts:171 +#: src/pages/stages/identification/IdentificationStageForm.ts:117 +#: src/pages/stages/identification/IdentificationStageForm.ts:135 +#: src/pages/stages/password/PasswordStageForm.ts:104 +#: src/pages/stages/prompt/PromptStageForm.ts:83 +#: src/pages/stages/prompt/PromptStageForm.ts:116 msgid "Loading..." msgstr "Loading..." -#: src/pages/outposts/ServiceConnectionDockerForm.ts:62 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:63 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:60 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:61 #: src/pages/outposts/ServiceConnectionListPage.ts:55 msgid "Local" msgstr "Local" -#: src/pages/stages/user_login/UserLoginStageForm.ts:52 +#: src/pages/stages/user_login/UserLoginStageForm.ts:50 msgid "Log the currently pending user in." msgstr "Log the currently pending user in." -#: src/pages/sources/ldap/LDAPSourceForm.ts:88 +#: src/pages/sources/ldap/LDAPSourceForm.ts:86 msgid "Login password is synced from LDAP into authentik automatically. Enable this option only to write password changes in authentik back to LDAP." msgstr "Login password is synced from LDAP into authentik automatically. Enable this option only to write password changes in authentik back to LDAP." @@ -1840,7 +1840,7 @@ msgstr "Login to continue to {0}." msgid "Logins" msgstr "Logins" -#: src/pages/admin-overview/AdminOverviewPage.ts:100 +#: src/pages/admin-overview/AdminOverviewPage.ts:106 #: src/pages/applications/ApplicationViewPage.ts:128 msgid "Logins over the last 24 hours" msgstr "Logins over the last 24 hours" @@ -1857,27 +1857,27 @@ msgstr "Logs" msgid "Long-running operations which authentik executes in the background." msgstr "Long-running operations which authentik executes in the background." -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:90 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:88 msgid "Match created events with this action type. When left empty, all action types will be matched." msgstr "Match created events with this action type. When left empty, all action types will be matched." -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:110 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:108 msgid "Match events created by selected application. When left empty, all applications are matched." msgstr "Match events created by selected application. When left empty, all applications are matched." -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:96 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:94 msgid "Matches Event's Client IP (strict matching, for network matching use an Expression Policy." msgstr "Matches Event's Client IP (strict matching, for network matching use an Expression Policy." -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:54 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:52 msgid "Matches an event against a set of criteria. If any of the configured values match, the policy passes." msgstr "Matches an event against a set of criteria. If any of the configured values match, the policy passes." -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:78 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:76 msgid "Maximum age (in days)" msgstr "Maximum age (in days)" -#: src/pages/groups/GroupForm.ts:81 +#: src/pages/groups/GroupForm.ts:86 #: src/pages/groups/GroupListPage.ts:47 msgid "Members" msgstr "Members" @@ -1895,23 +1895,23 @@ msgstr "Messages" msgid "Metadata" msgstr "Metadata" -#: src/pages/policies/password/PasswordPolicyForm.ts:98 +#: src/pages/policies/password/PasswordPolicyForm.ts:96 msgid "Minimum amount of Lowercase Characters" msgstr "Minimum amount of Lowercase Characters" -#: src/pages/policies/password/PasswordPolicyForm.ts:104 +#: src/pages/policies/password/PasswordPolicyForm.ts:102 msgid "Minimum amount of Symbols Characters" msgstr "Minimum amount of Symbols Characters" -#: src/pages/policies/password/PasswordPolicyForm.ts:92 +#: src/pages/policies/password/PasswordPolicyForm.ts:90 msgid "Minimum amount of Uppercase Characters" msgstr "Minimum amount of Uppercase Characters" -#: src/pages/policies/password/PasswordPolicyForm.ts:86 +#: src/pages/policies/password/PasswordPolicyForm.ts:84 msgid "Minimum length" msgstr "Minimum length" -#: src/pages/events/TransportForm.ts:79 +#: src/pages/events/TransportForm.ts:84 #: src/pages/events/TransportListPage.ts:47 #: src/pages/stages/consent/ConsentStageForm.ts:68 msgid "Mode" @@ -1925,91 +1925,95 @@ msgstr "Model Name" msgid "Monitor" msgstr "Monitor" -#: src/pages/applications/ApplicationForm.ts:86 +#: src/pages/LibraryPage.ts:93 +msgid "My Applications" +msgstr "My Applications" + +#: src/pages/applications/ApplicationForm.ts:91 #: src/pages/applications/ApplicationListPage.ts:58 -#: src/pages/crypto/CertificateKeyPairForm.ts:45 +#: src/pages/crypto/CertificateKeyPairForm.ts:50 #: src/pages/crypto/CertificateKeyPairListPage.ts:51 #: src/pages/events/EventInfo.ts:51 -#: src/pages/events/RuleForm.ts:59 +#: src/pages/events/RuleForm.ts:64 #: src/pages/events/RuleListPage.ts:47 -#: src/pages/events/TransportForm.ts:73 +#: src/pages/events/TransportForm.ts:78 #: src/pages/events/TransportListPage.ts:46 #: src/pages/flows/BoundStagesList.ts:39 -#: src/pages/flows/FlowForm.ts:81 +#: src/pages/flows/FlowForm.ts:86 #: src/pages/flows/FlowListPage.ts:47 -#: src/pages/groups/GroupForm.ts:53 +#: src/pages/groups/GroupForm.ts:58 #: src/pages/groups/GroupListPage.ts:45 #: src/pages/groups/MemberSelectModal.ts:45 -#: src/pages/outposts/OutpostForm.ts:47 +#: src/pages/outposts/OutpostForm.ts:52 #: src/pages/outposts/OutpostListPage.ts:50 -#: src/pages/outposts/ServiceConnectionDockerForm.ts:53 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:54 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:51 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:52 #: src/pages/outposts/ServiceConnectionListPage.ts:53 #: src/pages/policies/PolicyListPage.ts:56 -#: src/pages/policies/dummy/DummyPolicyForm.ts:56 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:57 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:56 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:57 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:57 -#: src/pages/policies/password/PasswordPolicyForm.ts:56 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:56 -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:52 +#: src/pages/policies/dummy/DummyPolicyForm.ts:54 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:55 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:54 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:55 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:55 +#: src/pages/policies/password/PasswordPolicyForm.ts:54 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:54 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:50 #: src/pages/property-mappings/PropertyMappingListPage.ts:54 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:52 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:52 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:50 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:50 #: src/pages/providers/ProviderListPage.ts:53 -#: src/pages/providers/ldap/LDAPProviderForm.ts:54 +#: src/pages/providers/ldap/LDAPProviderForm.ts:52 #: src/pages/providers/ldap/LDAPProviderViewPage.ts:64 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:56 #: src/pages/providers/oauth2/OAuth2ProviderViewPage.ts:73 #: src/pages/providers/proxy/ProxyProviderForm.ts:98 #: src/pages/providers/proxy/ProxyProviderViewPage.ts:64 -#: src/pages/providers/saml/SAMLProviderForm.ts:53 +#: src/pages/providers/saml/SAMLProviderForm.ts:52 #: src/pages/providers/saml/SAMLProviderImportForm.ts:38 #: src/pages/providers/saml/SAMLProviderViewPage.ts:66 #: src/pages/sources/SourcesListPage.ts:52 -#: src/pages/sources/ldap/LDAPSourceForm.ts:54 +#: src/pages/sources/ldap/LDAPSourceForm.ts:52 #: src/pages/sources/ldap/LDAPSourceViewPage.ts:64 -#: src/pages/sources/oauth/OAuthSourceForm.ts:100 +#: src/pages/sources/oauth/OAuthSourceForm.ts:108 #: src/pages/sources/oauth/OAuthSourceViewPage.ts:64 -#: src/pages/sources/plex/PlexSourceForm.ts:90 +#: src/pages/sources/plex/PlexSourceForm.ts:93 #: src/pages/sources/plex/PlexSourceViewPage.ts:63 -#: src/pages/sources/saml/SAMLSourceForm.ts:54 +#: src/pages/sources/saml/SAMLSourceForm.ts:52 #: src/pages/sources/saml/SAMLSourceViewPage.ts:66 #: src/pages/stages/StageListPage.ts:65 -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:57 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:56 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:55 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:54 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:64 -#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:54 -#: src/pages/stages/captcha/CaptchaStageForm.ts:55 +#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:52 +#: src/pages/stages/captcha/CaptchaStageForm.ts:53 #: src/pages/stages/consent/ConsentStageForm.ts:57 -#: src/pages/stages/deny/DenyStageForm.ts:54 -#: src/pages/stages/dummy/DummyStageForm.ts:54 -#: src/pages/stages/email/EmailStageForm.ts:122 -#: src/pages/stages/identification/IdentificationStageForm.ts:63 -#: src/pages/stages/invitation/InvitationStageForm.ts:56 -#: src/pages/stages/password/PasswordStageForm.ts:63 -#: src/pages/stages/prompt/PromptStageForm.ts:58 -#: src/pages/stages/user_delete/UserDeleteStageForm.ts:55 -#: src/pages/stages/user_login/UserLoginStageForm.ts:55 -#: src/pages/stages/user_logout/UserLogoutStageForm.ts:54 -#: src/pages/stages/user_write/UserWriteStageForm.ts:55 +#: src/pages/stages/deny/DenyStageForm.ts:52 +#: src/pages/stages/dummy/DummyStageForm.ts:52 +#: src/pages/stages/email/EmailStageForm.ts:123 +#: src/pages/stages/identification/IdentificationStageForm.ts:61 +#: src/pages/stages/invitation/InvitationStageForm.ts:54 +#: src/pages/stages/password/PasswordStageForm.ts:61 +#: src/pages/stages/prompt/PromptStageForm.ts:56 +#: src/pages/stages/user_delete/UserDeleteStageForm.ts:53 +#: src/pages/stages/user_login/UserLoginStageForm.ts:53 +#: src/pages/stages/user_logout/UserLogoutStageForm.ts:52 +#: src/pages/stages/user_write/UserWriteStageForm.ts:53 #: src/pages/user-settings/UserDetailsPage.ts:64 -#: src/pages/users/UserForm.ts:54 +#: src/pages/users/UserForm.ts:59 #: src/pages/users/UserListPage.ts:54 #: src/pages/users/UserViewPage.ts:92 msgid "Name" msgstr "Name" -#: src/pages/stages/prompt/PromptForm.ts:87 +#: src/pages/stages/prompt/PromptForm.ts:92 msgid "Name of the form field, also used to store the value." msgstr "Name of the form field, also used to store the value." -#: src/pages/sources/saml/SAMLSourceForm.ts:147 +#: src/pages/sources/saml/SAMLSourceForm.ts:145 msgid "NameID Policy" msgstr "NameID Policy" -#: src/pages/providers/saml/SAMLProviderForm.ts:180 +#: src/pages/providers/saml/SAMLProviderForm.ts:179 msgid "NameID Property Mapping" msgstr "NameID Property Mapping" @@ -2117,7 +2121,7 @@ msgstr "Not synced yet." msgid "Not you?" msgstr "Not you?" -#: src/pages/events/RuleForm.ts:51 +#: src/pages/events/RuleForm.ts:56 msgid "Notice" msgstr "Notice" @@ -2143,7 +2147,7 @@ msgstr "Notifications" msgid "Notifications Transport" msgstr "Notifications Transport" -#: src/pages/stages/prompt/PromptForm.ts:57 +#: src/pages/stages/prompt/PromptForm.ts:62 msgid "Number" msgstr "Number" @@ -2160,11 +2164,11 @@ msgstr "OAuth Refresh Codes" msgid "Object" msgstr "Object" -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:58 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:56 msgid "Object field" msgstr "Object field" -#: src/pages/sources/ldap/LDAPSourceForm.ts:229 +#: src/pages/sources/ldap/LDAPSourceForm.ts:227 msgid "Object uniqueness field" msgstr "Object uniqueness field" @@ -2178,11 +2182,11 @@ msgstr "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3 msgid "On behalf of {0}" msgstr "On behalf of {0}" -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:87 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:85 msgid "Only fail the policy, don't invalidate user's password." msgstr "Only fail the policy, don't invalidate user's password." -#: src/pages/events/TransportForm.ts:102 +#: src/pages/events/TransportForm.ts:107 msgid "Only send notification once, for example when sending a webhook into a chat channel." msgstr "Only send notification once, for example when sending a webhook into a chat channel." @@ -2198,23 +2202,23 @@ msgstr "OpenID Configuration Issuer" msgid "OpenID Configuration URL" msgstr "OpenID Configuration URL" -#: src/pages/crypto/CertificateKeyPairForm.ts:63 +#: src/pages/crypto/CertificateKeyPairForm.ts:68 msgid "Optional Private Key. If this is set, you can use this keypair for encryption." msgstr "Optional Private Key. If this is set, you can use this keypair for encryption." -#: src/pages/sources/saml/SAMLSourceForm.ts:90 +#: src/pages/sources/saml/SAMLSourceForm.ts:88 msgid "Optional URL if the IDP supports Single-Logout." msgstr "Optional URL if the IDP supports Single-Logout." -#: src/pages/stages/invitation/InvitationForm.ts:56 +#: src/pages/stages/invitation/InvitationForm.ts:61 msgid "Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON." msgstr "Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON." -#: src/pages/stages/identification/IdentificationStageForm.ts:121 +#: src/pages/stages/identification/IdentificationStageForm.ts:119 msgid "Optional enrollment flow, which is linked at the bottom of the page." msgstr "Optional enrollment flow, which is linked at the bottom of the page." -#: src/pages/stages/identification/IdentificationStageForm.ts:139 +#: src/pages/stages/identification/IdentificationStageForm.ts:137 msgid "Optional recovery flow, which is linked at the bottom of the page." msgstr "Optional recovery flow, which is linked at the bottom of the page." @@ -2222,24 +2226,24 @@ msgstr "Optional recovery flow, which is linked at the bottom of the page." msgid "Optional, comma-separated SubjectAlt Names." msgstr "Optional, comma-separated SubjectAlt Names." -#: src/pages/stages/prompt/PromptForm.ts:116 +#: src/pages/stages/prompt/PromptForm.ts:121 msgid "Optionally pre-fill the input value" msgstr "Optionally pre-fill the input value" -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:71 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:69 msgid "Optionally set the 'FriendlyName' value of the Assertion attribute." msgstr "Optionally set the 'FriendlyName' value of the Assertion attribute." #: src/pages/flows/BoundStagesList.ts:38 -#: src/pages/flows/StageBindingForm.ts:110 +#: src/pages/flows/StageBindingForm.ts:115 #: src/pages/policies/BoundPoliciesList.ts:42 -#: src/pages/policies/PolicyBindingForm.ts:203 -#: src/pages/stages/prompt/PromptForm.ts:119 +#: src/pages/policies/PolicyBindingForm.ts:204 +#: src/pages/stages/prompt/PromptForm.ts:124 #: src/pages/stages/prompt/PromptListPage.ts:49 msgid "Order" msgstr "Order" -#: src/pages/admin-overview/graphs/OutpostStatusCard.ts:71 +#: src/pages/admin-overview/charts/OutpostStatusChart.ts:71 msgid "Outdated outposts" msgstr "Outdated outposts" @@ -2255,7 +2259,7 @@ msgstr "Outpost Deployment Info" msgid "Outpost Service-connection" msgstr "Outpost Service-connection" -#: src/pages/admin-overview/AdminOverviewPage.ts:71 +#: src/pages/admin-overview/AdminOverviewPage.ts:66 msgid "Outpost status" msgstr "Outpost status" @@ -2283,16 +2287,16 @@ msgstr "Outposts are deployments of authentik components to support different en msgid "Overview" msgstr "Overview" -#: src/pages/crypto/CertificateKeyPairForm.ts:56 +#: src/pages/crypto/CertificateKeyPairForm.ts:61 msgid "PEM-encoded Certificate data." msgstr "PEM-encoded Certificate data." -#: src/pages/groups/GroupForm.ts:68 +#: src/pages/groups/GroupForm.ts:73 #: src/pages/groups/GroupListPage.ts:46 msgid "Parent" msgstr "Parent" -#: src/pages/policies/dummy/DummyPolicyForm.ts:81 +#: src/pages/policies/dummy/DummyPolicyForm.ts:79 msgid "Pass policy?" msgstr "Pass policy?" @@ -2305,20 +2309,20 @@ msgstr "Passing" msgid "Password" msgstr "Password" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:79 -#: src/pages/policies/password/PasswordPolicyForm.ts:78 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:77 +#: src/pages/policies/password/PasswordPolicyForm.ts:76 msgid "Password field" msgstr "Password field" -#: src/pages/stages/prompt/PromptForm.ts:54 +#: src/pages/stages/prompt/PromptForm.ts:59 msgid "Password: Masked input, password is validated against sources. Policies still have to be applied to this Stage. If two of these are used in the same stage, they are ensured to be identical." msgstr "Password: Masked input, password is validated against sources. Policies still have to be applied to this Stage. If two of these are used in the same stage, they are ensured to be identical." -#: src/pages/sources/saml/SAMLSourceForm.ts:152 +#: src/pages/sources/saml/SAMLSourceForm.ts:150 msgid "Persistent" msgstr "Persistent" -#: src/pages/stages/prompt/PromptForm.ts:113 +#: src/pages/stages/prompt/PromptForm.ts:118 msgid "Placeholder" msgstr "Placeholder" @@ -2338,9 +2342,9 @@ msgstr "Please enter your password" msgid "Policies" msgstr "Policies" -#: src/pages/policies/PolicyBindingForm.ts:107 -#: src/pages/policies/PolicyBindingForm.ts:116 -#: src/pages/policies/PolicyBindingForm.ts:147 +#: src/pages/policies/PolicyBindingForm.ts:108 +#: src/pages/policies/PolicyBindingForm.ts:117 +#: src/pages/policies/PolicyBindingForm.ts:148 #: src/pages/policies/PolicyListPage.ts:108 msgid "Policy" msgstr "Policy" @@ -2364,10 +2368,10 @@ msgstr "Policy Bindings" msgid "Policy binding" msgstr "Policy binding" -#: src/pages/applications/ApplicationForm.ts:141 +#: src/pages/applications/ApplicationForm.ts:146 #: src/pages/applications/ApplicationViewPage.ts:81 -#: src/pages/flows/FlowForm.ts:101 -#: src/pages/flows/StageBindingForm.ts:136 +#: src/pages/flows/FlowForm.ts:106 +#: src/pages/flows/StageBindingForm.ts:141 msgid "Policy engine mode" msgstr "Policy engine mode" @@ -2375,25 +2379,25 @@ msgstr "Policy engine mode" msgid "Policy {0}" msgstr "Policy {0}" -#: src/pages/policies/dummy/DummyPolicyForm.ts:74 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:75 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:74 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:75 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:75 -#: src/pages/policies/password/PasswordPolicyForm.ts:74 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:74 +#: src/pages/policies/dummy/DummyPolicyForm.ts:72 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:73 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:72 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:73 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:73 +#: src/pages/policies/password/PasswordPolicyForm.ts:72 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:72 msgid "Policy-specific settings" msgstr "Policy-specific settings" -#: src/pages/providers/saml/SAMLProviderForm.ts:102 +#: src/pages/providers/saml/SAMLProviderForm.ts:101 msgid "Post" msgstr "Post" -#: src/pages/sources/saml/SAMLSourceForm.ts:110 +#: src/pages/sources/saml/SAMLSourceForm.ts:108 msgid "Post binding" msgstr "Post binding" -#: src/pages/sources/saml/SAMLSourceForm.ts:107 +#: src/pages/sources/saml/SAMLSourceForm.ts:105 msgid "Post binding (auto-submit)" msgstr "Post binding (auto-submit)" @@ -2401,12 +2405,12 @@ msgstr "Post binding (auto-submit)" msgid "Powered by authentik" msgstr "Powered by authentik" -#: src/pages/sources/saml/SAMLSourceForm.ts:224 +#: src/pages/sources/saml/SAMLSourceForm.ts:222 msgid "Pre-authentication flow" msgstr "Pre-authentication flow" -#: src/pages/crypto/CertificateKeyPairForm.ts:61 -#: src/pages/stages/captcha/CaptchaStageForm.ts:73 +#: src/pages/crypto/CertificateKeyPairForm.ts:66 +#: src/pages/stages/captcha/CaptchaStageForm.ts:71 msgid "Private Key" msgstr "Private Key" @@ -2414,11 +2418,11 @@ msgstr "Private Key" msgid "Private key available?" msgstr "Private key available?" -#: src/pages/stages/captcha/CaptchaStageForm.ts:78 +#: src/pages/stages/captcha/CaptchaStageForm.ts:76 msgid "Private key, acquired from https://www.google.com/recaptcha/intro/v3.html." msgstr "Private key, acquired from https://www.google.com/recaptcha/intro/v3.html." -#: src/pages/sources/oauth/OAuthSourceForm.ts:80 +#: src/pages/sources/oauth/OAuthSourceForm.ts:81 msgid "Profile URL" msgstr "Profile URL" @@ -2445,25 +2449,25 @@ msgstr "Property Mapping" msgid "Property Mappings" msgstr "Property Mappings" -#: src/pages/providers/saml/SAMLProviderForm.ts:155 +#: src/pages/providers/saml/SAMLProviderForm.ts:154 msgid "Property mappings" msgstr "Property mappings" -#: src/pages/sources/ldap/LDAPSourceForm.ts:192 +#: src/pages/sources/ldap/LDAPSourceForm.ts:190 msgid "Property mappings used to group creation." msgstr "Property mappings used to group creation." -#: src/pages/sources/ldap/LDAPSourceForm.ts:166 +#: src/pages/sources/ldap/LDAPSourceForm.ts:164 msgid "Property mappings used to user creation." msgstr "Property mappings used to user creation." -#: src/pages/providers/ldap/LDAPProviderForm.ts:93 +#: src/pages/providers/ldap/LDAPProviderForm.ts:91 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:81 #: src/pages/providers/proxy/ProxyProviderForm.ts:123 -#: src/pages/providers/saml/SAMLProviderForm.ts:78 -#: src/pages/sources/oauth/OAuthSourceForm.ts:144 -#: src/pages/sources/plex/PlexSourceForm.ts:134 -#: src/pages/sources/saml/SAMLSourceForm.ts:76 +#: src/pages/providers/saml/SAMLProviderForm.ts:77 +#: src/pages/sources/oauth/OAuthSourceForm.ts:163 +#: src/pages/sources/plex/PlexSourceForm.ts:137 +#: src/pages/sources/saml/SAMLSourceForm.ts:74 msgid "Protocol settings" msgstr "Protocol settings" @@ -2473,9 +2477,10 @@ msgstr "Provide support for protocols like SAML and OAuth to assigned applicatio #: src/elements/oauth/UserCodeList.ts:29 #: src/elements/oauth/UserRefreshList.ts:29 -#: src/pages/applications/ApplicationForm.ts:100 +#: src/pages/applications/ApplicationForm.ts:105 #: src/pages/applications/ApplicationListPage.ts:60 #: src/pages/applications/ApplicationViewPage.ts:68 +#: src/pages/providers/ProviderListPage.ts:92 msgid "Provider" msgstr "Provider" @@ -2484,18 +2489,18 @@ msgstr "Provider" msgid "Provider Type" msgstr "Provider Type" -#: src/pages/sources/oauth/OAuthSourceForm.ts:161 +#: src/pages/sources/oauth/OAuthSourceForm.ts:180 msgid "Provider type" msgstr "Provider type" #: src/interfaces/AdminInterface.ts:44 -#: src/pages/outposts/OutpostForm.ts:83 +#: src/pages/outposts/OutpostForm.ts:88 #: src/pages/outposts/OutpostListPage.ts:51 #: src/pages/providers/ProviderListPage.ts:35 msgid "Providers" msgstr "Providers" -#: src/pages/outposts/OutpostForm.ts:57 +#: src/pages/outposts/OutpostForm.ts:62 msgid "Proxy" msgstr "Proxy" @@ -2503,15 +2508,15 @@ msgstr "Proxy" msgid "Public" msgstr "Public" -#: src/pages/stages/captcha/CaptchaStageForm.ts:66 +#: src/pages/stages/captcha/CaptchaStageForm.ts:64 msgid "Public Key" msgstr "Public Key" -#: src/pages/stages/captcha/CaptchaStageForm.ts:70 +#: src/pages/stages/captcha/CaptchaStageForm.ts:68 msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html." msgstr "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html." -#: src/pages/applications/ApplicationForm.ts:175 +#: src/pages/applications/ApplicationForm.ts:180 msgid "Publisher" msgstr "Publisher" @@ -2523,35 +2528,35 @@ msgstr "RS256 (Asymmetric Encryption)" msgid "RSA Key" msgstr "RSA Key" -#: src/pages/providers/saml/SAMLProviderForm.ts:244 -#: src/pages/sources/saml/SAMLSourceForm.ts:200 +#: src/pages/providers/saml/SAMLProviderForm.ts:243 +#: src/pages/sources/saml/SAMLSourceForm.ts:198 msgid "RSA-SHA1" msgstr "RSA-SHA1" -#: src/pages/providers/saml/SAMLProviderForm.ts:247 -#: src/pages/sources/saml/SAMLSourceForm.ts:203 +#: src/pages/providers/saml/SAMLProviderForm.ts:246 +#: src/pages/sources/saml/SAMLSourceForm.ts:201 msgid "RSA-SHA256" msgstr "RSA-SHA256" -#: src/pages/providers/saml/SAMLProviderForm.ts:250 -#: src/pages/sources/saml/SAMLSourceForm.ts:206 +#: src/pages/providers/saml/SAMLProviderForm.ts:249 +#: src/pages/sources/saml/SAMLSourceForm.ts:204 msgid "RSA-SHA384" msgstr "RSA-SHA384" -#: src/pages/providers/saml/SAMLProviderForm.ts:253 -#: src/pages/sources/saml/SAMLSourceForm.ts:209 +#: src/pages/providers/saml/SAMLProviderForm.ts:252 +#: src/pages/sources/saml/SAMLSourceForm.ts:207 msgid "RSA-SHA512" msgstr "RSA-SHA512" -#: src/pages/flows/StageBindingForm.ts:130 +#: src/pages/flows/StageBindingForm.ts:135 msgid "Re-evaluate policies" msgstr "Re-evaluate policies" -#: src/pages/flows/FlowForm.ts:67 +#: src/pages/flows/FlowForm.ts:72 msgid "Recovery" msgstr "Recovery" -#: src/pages/stages/identification/IdentificationStageForm.ts:124 +#: src/pages/stages/identification/IdentificationStageForm.ts:122 msgid "Recovery flow" msgstr "Recovery flow" @@ -2559,7 +2564,7 @@ msgstr "Recovery flow" msgid "Recovery keys" msgstr "Recovery keys" -#: src/pages/providers/saml/SAMLProviderForm.ts:99 +#: src/pages/providers/saml/SAMLProviderForm.ts:98 msgid "Redirect" msgstr "Redirect" @@ -2571,7 +2576,7 @@ msgstr "Redirect URIs" msgid "Redirect URIs/Origins" msgstr "Redirect URIs/Origins" -#: src/pages/sources/saml/SAMLSourceForm.ts:104 +#: src/pages/sources/saml/SAMLSourceForm.ts:102 msgid "Redirect binding" msgstr "Redirect binding" @@ -2600,7 +2605,7 @@ msgstr "Related" msgid "Reload" msgstr "Reload" -#: src/pages/stages/user_logout/UserLogoutStageForm.ts:51 +#: src/pages/stages/user_logout/UserLogoutStageForm.ts:49 msgid "Remove the user from the current session." msgstr "Remove the user from the current session." @@ -2613,16 +2618,16 @@ msgstr "Request" msgid "Request has been denied." msgstr "Request has been denied." -#: src/pages/sources/oauth/OAuthSourceForm.ts:87 +#: src/pages/sources/oauth/OAuthSourceForm.ts:88 msgid "Request token URL" msgstr "Request token URL" -#: src/pages/stages/prompt/PromptForm.ts:108 +#: src/pages/stages/prompt/PromptForm.ts:113 msgid "Required" msgstr "Required" #: src/pages/user-settings/UserDetailsPage.ts:61 -#: src/pages/users/UserForm.ts:51 +#: src/pages/users/UserForm.ts:56 msgid "Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only." msgstr "Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only." @@ -2662,52 +2667,52 @@ msgstr "Return home" msgid "Return to device picker" msgstr "Return to device picker" -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:58 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:56 msgid "SAML Attribute Name" msgstr "SAML Attribute Name" -#: src/pages/providers/saml/SAMLProviderForm.ts:225 -#: src/pages/sources/saml/SAMLSourceForm.ts:181 +#: src/pages/providers/saml/SAMLProviderForm.ts:224 +#: src/pages/sources/saml/SAMLSourceForm.ts:179 msgid "SHA1" msgstr "SHA1" -#: src/pages/providers/saml/SAMLProviderForm.ts:228 -#: src/pages/sources/saml/SAMLSourceForm.ts:184 +#: src/pages/providers/saml/SAMLProviderForm.ts:227 +#: src/pages/sources/saml/SAMLSourceForm.ts:182 msgid "SHA256" msgstr "SHA256" -#: src/pages/providers/saml/SAMLProviderForm.ts:231 -#: src/pages/sources/saml/SAMLSourceForm.ts:187 +#: src/pages/providers/saml/SAMLProviderForm.ts:230 +#: src/pages/sources/saml/SAMLSourceForm.ts:185 msgid "SHA384" msgstr "SHA384" -#: src/pages/providers/saml/SAMLProviderForm.ts:234 -#: src/pages/sources/saml/SAMLSourceForm.ts:190 +#: src/pages/providers/saml/SAMLProviderForm.ts:233 +#: src/pages/sources/saml/SAMLSourceForm.ts:188 msgid "SHA512" msgstr "SHA512" -#: src/pages/sources/saml/SAMLSourceForm.ts:87 +#: src/pages/sources/saml/SAMLSourceForm.ts:85 #: src/pages/sources/saml/SAMLSourceViewPage.ts:82 msgid "SLO URL" msgstr "SLO URL" -#: src/pages/stages/email/EmailStageForm.ts:62 +#: src/pages/stages/email/EmailStageForm.ts:63 msgid "SMTP Host" msgstr "SMTP Host" -#: src/pages/stages/email/EmailStageForm.ts:79 +#: src/pages/stages/email/EmailStageForm.ts:80 msgid "SMTP Password" msgstr "SMTP Password" -#: src/pages/stages/email/EmailStageForm.ts:68 +#: src/pages/stages/email/EmailStageForm.ts:69 msgid "SMTP Port" msgstr "SMTP Port" -#: src/pages/stages/email/EmailStageForm.ts:74 +#: src/pages/stages/email/EmailStageForm.ts:75 msgid "SMTP Username" msgstr "SMTP Username" -#: src/pages/sources/saml/SAMLSourceForm.ts:80 +#: src/pages/sources/saml/SAMLSourceForm.ts:78 #: src/pages/sources/saml/SAMLSourceViewPage.ts:74 msgid "SSO URL" msgstr "SSO URL" @@ -2716,11 +2721,11 @@ msgstr "SSO URL" msgid "Same identifier is used for all providers" msgstr "Same identifier is used for all providers" -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:58 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:56 msgid "Scope name" msgstr "Scope name" -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:62 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:60 msgid "Scope which the client can specify to access these properties." msgstr "Scope which the client can specify to access these properties." @@ -2738,14 +2743,14 @@ msgstr "Search..." msgid "Secret:" msgstr "Secret:" -#: src/pages/policies/expression/ExpressionPolicyForm.ts:87 -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:73 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:83 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:80 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:85 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:71 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:81 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:78 msgid "See documentation for a list of all variables." msgstr "See documentation for a list of all variables." -#: src/pages/applications/ApplicationForm.ts:108 +#: src/pages/applications/ApplicationForm.ts:113 msgid "Select a provider that this application should use. Alternatively, create a new provider." msgstr "Select a provider that this application should use. Alternatively, create a new provider." @@ -2769,23 +2774,23 @@ msgstr "Select users to add" msgid "Select which scopes can be used by the client. The client stil has to specify the scope to access the data." msgstr "Select which scopes can be used by the client. The client stil has to specify the scope to access the data." -#: src/pages/sources/plex/PlexSourceForm.ts:164 +#: src/pages/sources/plex/PlexSourceForm.ts:167 msgid "Select which server a user has to be a member of to be allowed to authenticate." msgstr "Select which server a user has to be a member of to be allowed to authenticate." -#: src/pages/events/RuleForm.ts:92 +#: src/pages/events/RuleForm.ts:97 msgid "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI." msgstr "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI." -#: src/pages/stages/prompt/PromptStageForm.ts:120 +#: src/pages/stages/prompt/PromptStageForm.ts:118 msgid "Selected policies are executed when the stage is submitted to validate the data." msgstr "Selected policies are executed when the stage is submitted to validate the data." -#: src/pages/outposts/OutpostForm.ts:77 +#: src/pages/outposts/OutpostForm.ts:82 msgid "Selecting a service-connection enables the management of the outpost by authentik." msgstr "Selecting a service-connection enables the management of the outpost by authentik." -#: src/pages/stages/password/PasswordStageForm.ts:85 +#: src/pages/stages/password/PasswordStageForm.ts:83 msgid "Selection of backends to test the password against." msgstr "Selection of backends to test the password against." @@ -2797,7 +2802,7 @@ msgstr "Send Email again." msgid "Send notifications whenever a specific Event is created and matched by policies." msgstr "Send notifications whenever a specific Event is created and matched by policies." -#: src/pages/events/TransportForm.ts:99 +#: src/pages/events/TransportForm.ts:104 msgid "Send once" msgstr "Send once" @@ -2805,11 +2810,11 @@ msgstr "Send once" msgid "Sent to group" msgstr "Sent to group" -#: src/pages/stages/prompt/PromptForm.ts:69 +#: src/pages/stages/prompt/PromptForm.ts:74 msgid "Separator: Static Separator Line" msgstr "Separator: Static Separator Line" -#: src/pages/sources/ldap/LDAPSourceForm.ts:104 +#: src/pages/sources/ldap/LDAPSourceForm.ts:102 #: src/pages/sources/ldap/LDAPSourceViewPage.ts:72 msgid "Server URI" msgstr "Server URI" @@ -2822,23 +2827,23 @@ msgstr "Server validation of credential failed: {err}" msgid "Service Connections" msgstr "Service Connections" -#: src/pages/providers/saml/SAMLProviderForm.ts:94 +#: src/pages/providers/saml/SAMLProviderForm.ts:93 msgid "Service Provider Binding" msgstr "Service Provider Binding" -#: src/pages/outposts/OutpostForm.ts:62 +#: src/pages/outposts/OutpostForm.ts:67 msgid "Service connection" msgstr "Service connection" -#: src/pages/stages/user_login/UserLoginStageForm.ts:66 +#: src/pages/stages/user_login/UserLoginStageForm.ts:64 msgid "Session duration" msgstr "Session duration" -#: src/pages/providers/saml/SAMLProviderForm.ts:216 +#: src/pages/providers/saml/SAMLProviderForm.ts:215 msgid "Session not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3)." msgstr "Session not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3)." -#: src/pages/providers/saml/SAMLProviderForm.ts:212 +#: src/pages/providers/saml/SAMLProviderForm.ts:211 msgid "Session valid not on or after" msgstr "Session valid not on or after" @@ -2850,28 +2855,28 @@ msgstr "Set HTTP-Basic Authentication" msgid "Set a custom HTTP-Basic Authentication header based on values from authentik." msgstr "Set a custom HTTP-Basic Authentication header based on values from authentik." -#: src/pages/groups/GroupForm.ts:139 -#: src/pages/outposts/OutpostForm.ts:121 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:73 +#: src/pages/groups/GroupForm.ts:144 +#: src/pages/outposts/OutpostForm.ts:127 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:71 #: src/pages/policies/PolicyTestForm.ts:79 -#: src/pages/users/UserForm.ts:82 +#: src/pages/users/UserForm.ts:87 msgid "Set custom attributes using YAML or JSON." msgstr "Set custom attributes using YAML or JSON." -#: src/pages/events/RuleForm.ts:96 +#: src/pages/events/RuleForm.ts:101 #: src/pages/events/RuleListPage.ts:48 msgid "Severity" msgstr "Severity" -#: src/pages/stages/prompt/PromptStageForm.ts:55 +#: src/pages/stages/prompt/PromptStageForm.ts:53 msgid "Show arbitrary input fields to the user, for example during enrollment. Data is saved in the flow context under the 'prompt_data' variable." msgstr "Show arbitrary input fields to the user, for example during enrollment. Data is saved in the flow context under the 'prompt_data' variable." -#: src/pages/stages/identification/IdentificationStageForm.ts:100 +#: src/pages/stages/identification/IdentificationStageForm.ts:98 msgid "Show matched user" msgstr "Show matched user" -#: src/pages/flows/FlowForm.ts:91 +#: src/pages/flows/FlowForm.ts:96 msgid "Shown as the Title in Flow pages." msgstr "Shown as the Title in Flow pages." @@ -2879,16 +2884,16 @@ msgstr "Shown as the Title in Flow pages." msgid "Sign up." msgstr "Sign up." -#: src/pages/providers/saml/SAMLProviderForm.ts:239 -#: src/pages/sources/saml/SAMLSourceForm.ts:195 +#: src/pages/providers/saml/SAMLProviderForm.ts:238 +#: src/pages/sources/saml/SAMLSourceForm.ts:193 msgid "Signature algorithm" msgstr "Signature algorithm" -#: src/pages/providers/saml/SAMLProviderForm.ts:121 +#: src/pages/providers/saml/SAMLProviderForm.ts:120 msgid "Signing Certificate" msgstr "Signing Certificate" -#: src/pages/sources/saml/SAMLSourceForm.ts:115 +#: src/pages/sources/saml/SAMLSourceForm.ts:113 msgid "Signing keypair" msgstr "Signing keypair" @@ -2896,7 +2901,7 @@ msgstr "Signing keypair" msgid "Single Prompts that can be used for Prompt Stages." msgstr "Single Prompts that can be used for Prompt Stages." -#: src/pages/stages/invitation/InvitationForm.ts:62 +#: src/pages/stages/invitation/InvitationForm.ts:67 msgid "Single use" msgstr "Single use" @@ -2904,13 +2909,13 @@ msgstr "Single use" msgid "Skip path regex" msgstr "Skip path regex" -#: src/pages/applications/ApplicationForm.ts:93 +#: src/pages/applications/ApplicationForm.ts:98 #: src/pages/applications/ApplicationListPage.ts:59 -#: src/pages/flows/FlowForm.ts:94 -#: src/pages/sources/ldap/LDAPSourceForm.ts:60 -#: src/pages/sources/oauth/OAuthSourceForm.ts:106 -#: src/pages/sources/plex/PlexSourceForm.ts:96 -#: src/pages/sources/saml/SAMLSourceForm.ts:60 +#: src/pages/flows/FlowForm.ts:99 +#: src/pages/sources/ldap/LDAPSourceForm.ts:58 +#: src/pages/sources/oauth/OAuthSourceForm.ts:114 +#: src/pages/sources/plex/PlexSourceForm.ts:99 +#: src/pages/sources/saml/SAMLSourceForm.ts:58 msgid "Slug" msgstr "Slug" @@ -2918,7 +2923,6 @@ msgstr "Slug" msgid "Something went wrong! Please try again later." msgstr "Something went wrong! Please try again later." -#: src/pages/providers/ProviderListPage.ts:92 #: src/pages/sources/SourcesListPage.ts:88 msgid "Source" msgstr "Source" @@ -2936,7 +2940,7 @@ msgstr "Sources" msgid "Sources of identities, which can either be synced into authentik's database, like LDAP, or can be used by users to authenticate and enroll themselves, like OAuth and social logins" msgstr "Sources of identities, which can either be synced into authentik's database, like LDAP, or can be used by users to authenticate and enroll themselves, like OAuth and social logins" -#: src/pages/flows/StageBindingForm.ts:98 +#: src/pages/flows/StageBindingForm.ts:103 msgid "Stage" msgstr "Stage" @@ -2944,7 +2948,7 @@ msgstr "Stage" msgid "Stage Bindings" msgstr "Stage Bindings" -#: src/pages/flows/FlowForm.ts:70 +#: src/pages/flows/FlowForm.ts:75 msgid "Stage Configuration" msgstr "Stage Configuration" @@ -2956,15 +2960,15 @@ msgstr "Stage binding" msgid "Stage used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again." msgstr "Stage used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again." -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:53 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:51 msgid "Stage used to configure a TOTP authenticator (i.e. Authy/Google Authenticator)." msgstr "Stage used to configure a TOTP authenticator (i.e. Authy/Google Authenticator)." -#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:51 +#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:49 msgid "Stage used to configure a WebAutnn authenticator (i.e. Yubikey, FaceID/Windows Hello)." msgstr "Stage used to configure a WebAutnn authenticator (i.e. Yubikey, FaceID/Windows Hello)." -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:54 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:52 msgid "Stage used to configure a static authenticator (i.e. static tokens). This stage should be used for configuration flows." msgstr "Stage used to configure a static authenticator (i.e. static tokens). This stage should be used for configuration flows." @@ -2972,17 +2976,17 @@ msgstr "Stage used to configure a static authenticator (i.e. static tokens). Thi msgid "Stage used to validate any authenticator. This stage should be used during authentication or authorization flows." msgstr "Stage used to validate any authenticator. This stage should be used during authentication or authorization flows." -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:64 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:63 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:62 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:61 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:71 -#: src/pages/stages/captcha/CaptchaStageForm.ts:62 +#: src/pages/stages/captcha/CaptchaStageForm.ts:60 #: src/pages/stages/consent/ConsentStageForm.ts:64 -#: src/pages/stages/email/EmailStageForm.ts:129 -#: src/pages/stages/identification/IdentificationStageForm.ts:70 -#: src/pages/stages/invitation/InvitationStageForm.ts:63 -#: src/pages/stages/password/PasswordStageForm.ts:70 -#: src/pages/stages/prompt/PromptStageForm.ts:65 -#: src/pages/stages/user_login/UserLoginStageForm.ts:62 +#: src/pages/stages/email/EmailStageForm.ts:130 +#: src/pages/stages/identification/IdentificationStageForm.ts:68 +#: src/pages/stages/invitation/InvitationStageForm.ts:61 +#: src/pages/stages/password/PasswordStageForm.ts:68 +#: src/pages/stages/prompt/PromptStageForm.ts:63 +#: src/pages/stages/user_login/UserLoginStageForm.ts:60 msgid "Stage-specific settings" msgstr "Stage-specific settings" @@ -3009,11 +3013,11 @@ msgstr "Static Tokens" msgid "Static tokens" msgstr "Static tokens" -#: src/pages/stages/prompt/PromptForm.ts:75 +#: src/pages/stages/prompt/PromptForm.ts:80 msgid "Static: Static value, displayed as-is." msgstr "Static: Static value, displayed as-is." -#: src/pages/stages/deny/DenyStageForm.ts:51 +#: src/pages/stages/deny/DenyStageForm.ts:49 msgid "Statically deny the flow. To use this stage effectively, disable *Evaluate on plan* on the respective binding." msgstr "Statically deny the flow. To use this stage effectively, disable *Evaluate on plan* on the respective binding." @@ -3035,7 +3039,7 @@ msgstr "Status: Enabled" msgid "Stop impersonation" msgstr "Stop impersonation" -#: src/pages/stages/email/EmailStageForm.ts:152 +#: src/pages/stages/email/EmailStageForm.ts:153 msgid "Subject" msgstr "Subject" @@ -3055,107 +3059,107 @@ msgstr "Successful" msgid "Successfully copied TOTP Config." msgstr "Successfully copied TOTP Config." -#: src/pages/applications/ApplicationForm.ts:55 +#: src/pages/applications/ApplicationForm.ts:60 msgid "Successfully created application." msgstr "Successfully created application." -#: src/pages/flows/StageBindingForm.ts:39 -#: src/pages/policies/PolicyBindingForm.ts:64 +#: src/pages/flows/StageBindingForm.ts:44 +#: src/pages/policies/PolicyBindingForm.ts:65 msgid "Successfully created binding." msgstr "Successfully created binding." -#: src/pages/crypto/CertificateKeyPairForm.ts:38 +#: src/pages/crypto/CertificateKeyPairForm.ts:43 msgid "Successfully created certificate-key pair." msgstr "Successfully created certificate-key pair." -#: src/pages/flows/FlowForm.ts:48 +#: src/pages/flows/FlowForm.ts:53 msgid "Successfully created flow." msgstr "Successfully created flow." -#: src/pages/groups/GroupForm.ts:46 +#: src/pages/groups/GroupForm.ts:51 msgid "Successfully created group." msgstr "Successfully created group." -#: src/pages/stages/invitation/InvitationForm.ts:39 +#: src/pages/stages/invitation/InvitationForm.ts:44 msgid "Successfully created invitation." msgstr "Successfully created invitation." -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:45 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:45 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:45 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:43 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:43 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:43 msgid "Successfully created mapping." msgstr "Successfully created mapping." -#: src/pages/outposts/OutpostForm.ts:40 +#: src/pages/outposts/OutpostForm.ts:45 msgid "Successfully created outpost." msgstr "Successfully created outpost." -#: src/pages/policies/dummy/DummyPolicyForm.ts:46 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:47 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:46 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:47 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:46 -#: src/pages/policies/password/PasswordPolicyForm.ts:46 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:46 +#: src/pages/policies/dummy/DummyPolicyForm.ts:44 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:45 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:44 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:45 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:44 +#: src/pages/policies/password/PasswordPolicyForm.ts:44 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:44 msgid "Successfully created policy." msgstr "Successfully created policy." -#: src/pages/stages/prompt/PromptForm.ts:38 +#: src/pages/stages/prompt/PromptForm.ts:43 msgid "Successfully created prompt." msgstr "Successfully created prompt." -#: src/pages/providers/ldap/LDAPProviderForm.ts:47 +#: src/pages/providers/ldap/LDAPProviderForm.ts:45 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:49 #: src/pages/providers/proxy/ProxyProviderForm.ts:51 -#: src/pages/providers/saml/SAMLProviderForm.ts:46 +#: src/pages/providers/saml/SAMLProviderForm.ts:45 msgid "Successfully created provider." msgstr "Successfully created provider." -#: src/pages/events/RuleForm.ts:38 +#: src/pages/events/RuleForm.ts:43 msgid "Successfully created rule." msgstr "Successfully created rule." -#: src/pages/outposts/ServiceConnectionDockerForm.ts:46 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:47 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:44 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:45 msgid "Successfully created service-connection." msgstr "Successfully created service-connection." -#: src/pages/sources/ldap/LDAPSourceForm.ts:47 -#: src/pages/sources/oauth/OAuthSourceForm.ts:51 -#: src/pages/sources/plex/PlexSourceForm.ts:63 -#: src/pages/sources/saml/SAMLSourceForm.ts:47 +#: src/pages/sources/ldap/LDAPSourceForm.ts:45 +#: src/pages/sources/oauth/OAuthSourceForm.ts:52 +#: src/pages/sources/plex/PlexSourceForm.ts:66 +#: src/pages/sources/saml/SAMLSourceForm.ts:45 msgid "Successfully created source." msgstr "Successfully created source." -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:47 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:46 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:45 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:44 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:48 -#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:44 -#: src/pages/stages/captcha/CaptchaStageForm.ts:45 +#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:42 +#: src/pages/stages/captcha/CaptchaStageForm.ts:43 #: src/pages/stages/consent/ConsentStageForm.ts:47 -#: src/pages/stages/deny/DenyStageForm.ts:44 -#: src/pages/stages/dummy/DummyStageForm.ts:44 -#: src/pages/stages/email/EmailStageForm.ts:48 -#: src/pages/stages/identification/IdentificationStageForm.ts:47 -#: src/pages/stages/invitation/InvitationStageForm.ts:46 -#: src/pages/stages/password/PasswordStageForm.ts:47 -#: src/pages/stages/prompt/PromptStageForm.ts:48 -#: src/pages/stages/user_delete/UserDeleteStageForm.ts:44 -#: src/pages/stages/user_login/UserLoginStageForm.ts:45 -#: src/pages/stages/user_logout/UserLogoutStageForm.ts:44 -#: src/pages/stages/user_write/UserWriteStageForm.ts:44 +#: src/pages/stages/deny/DenyStageForm.ts:42 +#: src/pages/stages/dummy/DummyStageForm.ts:42 +#: src/pages/stages/email/EmailStageForm.ts:49 +#: src/pages/stages/identification/IdentificationStageForm.ts:45 +#: src/pages/stages/invitation/InvitationStageForm.ts:44 +#: src/pages/stages/password/PasswordStageForm.ts:45 +#: src/pages/stages/prompt/PromptStageForm.ts:46 +#: src/pages/stages/user_delete/UserDeleteStageForm.ts:42 +#: src/pages/stages/user_login/UserLoginStageForm.ts:43 +#: src/pages/stages/user_logout/UserLogoutStageForm.ts:42 +#: src/pages/stages/user_write/UserWriteStageForm.ts:42 msgid "Successfully created stage." msgstr "Successfully created stage." -#: src/pages/user-settings/tokens/UserTokenForm.ts:37 +#: src/pages/user-settings/tokens/UserTokenForm.ts:42 msgid "Successfully created token." msgstr "Successfully created token." -#: src/pages/events/TransportForm.ts:39 +#: src/pages/events/TransportForm.ts:44 msgid "Successfully created transport." msgstr "Successfully created transport." -#: src/pages/users/UserForm.ts:40 +#: src/pages/users/UserForm.ts:45 msgid "Successfully created user." msgstr "Successfully created user." @@ -3185,16 +3189,16 @@ msgstr "Successfully imported provider." msgid "Successfully sent test-request." msgstr "Successfully sent test-request." -#: src/pages/applications/ApplicationForm.ts:52 +#: src/pages/applications/ApplicationForm.ts:57 msgid "Successfully updated application." msgstr "Successfully updated application." -#: src/pages/flows/StageBindingForm.ts:36 -#: src/pages/policies/PolicyBindingForm.ts:61 +#: src/pages/flows/StageBindingForm.ts:41 +#: src/pages/policies/PolicyBindingForm.ts:62 msgid "Successfully updated binding." msgstr "Successfully updated binding." -#: src/pages/crypto/CertificateKeyPairForm.ts:35 +#: src/pages/crypto/CertificateKeyPairForm.ts:40 msgid "Successfully updated certificate-key pair." msgstr "Successfully updated certificate-key pair." @@ -3206,94 +3210,94 @@ msgstr "Successfully updated details." msgid "Successfully updated device." msgstr "Successfully updated device." -#: src/pages/flows/FlowForm.ts:45 +#: src/pages/flows/FlowForm.ts:50 msgid "Successfully updated flow." msgstr "Successfully updated flow." -#: src/pages/groups/GroupForm.ts:43 +#: src/pages/groups/GroupForm.ts:48 msgid "Successfully updated group." msgstr "Successfully updated group." -#: src/pages/stages/invitation/InvitationForm.ts:36 +#: src/pages/stages/invitation/InvitationForm.ts:41 msgid "Successfully updated invitation." msgstr "Successfully updated invitation." -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:42 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:42 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:42 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:40 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:40 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:40 msgid "Successfully updated mapping." msgstr "Successfully updated mapping." -#: src/pages/outposts/OutpostForm.ts:37 +#: src/pages/outposts/OutpostForm.ts:42 msgid "Successfully updated outpost." msgstr "Successfully updated outpost." -#: src/pages/policies/dummy/DummyPolicyForm.ts:43 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:44 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:43 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:44 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:43 -#: src/pages/policies/password/PasswordPolicyForm.ts:43 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:43 +#: src/pages/policies/dummy/DummyPolicyForm.ts:41 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:42 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:41 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:42 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:41 +#: src/pages/policies/password/PasswordPolicyForm.ts:41 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:41 msgid "Successfully updated policy." msgstr "Successfully updated policy." -#: src/pages/stages/prompt/PromptForm.ts:35 +#: src/pages/stages/prompt/PromptForm.ts:40 msgid "Successfully updated prompt." msgstr "Successfully updated prompt." -#: src/pages/providers/ldap/LDAPProviderForm.ts:44 +#: src/pages/providers/ldap/LDAPProviderForm.ts:42 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:46 #: src/pages/providers/proxy/ProxyProviderForm.ts:48 -#: src/pages/providers/saml/SAMLProviderForm.ts:43 +#: src/pages/providers/saml/SAMLProviderForm.ts:42 msgid "Successfully updated provider." msgstr "Successfully updated provider." -#: src/pages/events/RuleForm.ts:35 +#: src/pages/events/RuleForm.ts:40 msgid "Successfully updated rule." msgstr "Successfully updated rule." -#: src/pages/outposts/ServiceConnectionDockerForm.ts:43 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:44 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:41 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:42 msgid "Successfully updated service-connection." msgstr "Successfully updated service-connection." -#: src/pages/sources/ldap/LDAPSourceForm.ts:44 -#: src/pages/sources/oauth/OAuthSourceForm.ts:48 -#: src/pages/sources/plex/PlexSourceForm.ts:60 -#: src/pages/sources/saml/SAMLSourceForm.ts:44 +#: src/pages/sources/ldap/LDAPSourceForm.ts:42 +#: src/pages/sources/oauth/OAuthSourceForm.ts:49 +#: src/pages/sources/plex/PlexSourceForm.ts:63 +#: src/pages/sources/saml/SAMLSourceForm.ts:42 msgid "Successfully updated source." msgstr "Successfully updated source." -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:44 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:43 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:42 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:41 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:45 -#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:41 -#: src/pages/stages/captcha/CaptchaStageForm.ts:42 +#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:39 +#: src/pages/stages/captcha/CaptchaStageForm.ts:40 #: src/pages/stages/consent/ConsentStageForm.ts:44 -#: src/pages/stages/deny/DenyStageForm.ts:41 -#: src/pages/stages/dummy/DummyStageForm.ts:41 -#: src/pages/stages/email/EmailStageForm.ts:45 -#: src/pages/stages/identification/IdentificationStageForm.ts:44 -#: src/pages/stages/invitation/InvitationStageForm.ts:43 -#: src/pages/stages/password/PasswordStageForm.ts:44 -#: src/pages/stages/prompt/PromptStageForm.ts:45 -#: src/pages/stages/user_delete/UserDeleteStageForm.ts:41 -#: src/pages/stages/user_login/UserLoginStageForm.ts:42 -#: src/pages/stages/user_logout/UserLogoutStageForm.ts:41 -#: src/pages/stages/user_write/UserWriteStageForm.ts:41 +#: src/pages/stages/deny/DenyStageForm.ts:39 +#: src/pages/stages/dummy/DummyStageForm.ts:39 +#: src/pages/stages/email/EmailStageForm.ts:46 +#: src/pages/stages/identification/IdentificationStageForm.ts:42 +#: src/pages/stages/invitation/InvitationStageForm.ts:41 +#: src/pages/stages/password/PasswordStageForm.ts:42 +#: src/pages/stages/prompt/PromptStageForm.ts:43 +#: src/pages/stages/user_delete/UserDeleteStageForm.ts:39 +#: src/pages/stages/user_login/UserLoginStageForm.ts:40 +#: src/pages/stages/user_logout/UserLogoutStageForm.ts:39 +#: src/pages/stages/user_write/UserWriteStageForm.ts:39 msgid "Successfully updated stage." msgstr "Successfully updated stage." -#: src/pages/user-settings/tokens/UserTokenForm.ts:34 +#: src/pages/user-settings/tokens/UserTokenForm.ts:39 msgid "Successfully updated token." msgstr "Successfully updated token." -#: src/pages/events/TransportForm.ts:36 +#: src/pages/events/TransportForm.ts:41 msgid "Successfully updated transport." msgstr "Successfully updated transport." -#: src/pages/users/UserForm.ts:37 +#: src/pages/users/UserForm.ts:42 msgid "Successfully updated user." msgstr "Successfully updated user." @@ -3309,7 +3313,15 @@ msgstr "Superuser" msgid "Superuser privileges?" msgstr "Superuser privileges?" -#: src/pages/policies/password/PasswordPolicyForm.ts:123 +#: src/pages/admin-overview/charts/GroupCountStatusChart.ts:55 +msgid "Superuser-groups" +msgstr "Superuser-groups" + +#: src/pages/admin-overview/charts/UserCountStatusChart.ts:55 +msgid "Superusers" +msgstr "Superusers" + +#: src/pages/policies/password/PasswordPolicyForm.ts:121 msgid "Symbol charset" msgstr "Symbol charset" @@ -3317,7 +3329,7 @@ msgstr "Symbol charset" msgid "Sync" msgstr "Sync" -#: src/pages/sources/ldap/LDAPSourceForm.ts:94 +#: src/pages/sources/ldap/LDAPSourceForm.ts:92 msgid "Sync groups" msgstr "Sync groups" @@ -3325,7 +3337,7 @@ msgstr "Sync groups" msgid "Sync status" msgstr "Sync status" -#: src/pages/sources/ldap/LDAPSourceForm.ts:77 +#: src/pages/sources/ldap/LDAPSourceForm.ts:75 msgid "Sync users" msgstr "Sync users" @@ -3338,11 +3350,11 @@ msgstr "System Overview" msgid "System Tasks" msgstr "System Tasks" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:91 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:89 msgid "TLS Authentication Certificate" msgstr "TLS Authentication Certificate" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:75 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:73 msgid "TLS Verification Certificate" msgstr "TLS Verification Certificate" @@ -3350,7 +3362,7 @@ msgstr "TLS Verification Certificate" msgid "TOTP Authenticators" msgstr "TOTP Authenticators" -#: src/pages/flows/StageBindingForm.ts:78 +#: src/pages/flows/StageBindingForm.ts:83 msgid "Target" msgstr "Target" @@ -3362,7 +3374,7 @@ msgstr "Task finished with errors" msgid "Task finished with warnings" msgstr "Task finished with warnings" -#: src/pages/stages/email/EmailStageForm.ts:158 +#: src/pages/stages/email/EmailStageForm.ts:159 msgid "Template" msgstr "Template" @@ -3382,7 +3394,7 @@ msgstr "Test Policy" msgid "Test Property Mapping" msgstr "Test Property Mapping" -#: src/pages/stages/prompt/PromptForm.ts:45 +#: src/pages/stages/prompt/PromptForm.ts:50 msgid "Text: Simple Text input" msgstr "Text: Simple Text input" @@ -3394,7 +3406,7 @@ msgstr "The URL \"{0}\" was not found." msgid "The external URL you'll access the outpost at." msgstr "The external URL you'll access the outpost at." -#: src/pages/policies/dummy/DummyPolicyForm.ts:90 +#: src/pages/policies/dummy/DummyPolicyForm.ts:88 msgid "The policy takes a random time to execute. This controls the minimum time it will take." msgstr "The policy takes a random time to execute. This controls the minimum time it will take." @@ -3428,23 +3440,23 @@ msgstr "" msgid "These policies control which users can access this application." msgstr "These policies control which users can access this application." -#: src/pages/stages/invitation/InvitationStageForm.ts:53 +#: src/pages/stages/invitation/InvitationStageForm.ts:51 msgid "This stage can be included in enrollment flows to accept invitations." msgstr "This stage can be included in enrollment flows to accept invitations." -#: src/pages/stages/captcha/CaptchaStageForm.ts:52 +#: src/pages/stages/captcha/CaptchaStageForm.ts:50 msgid "This stage checks the user's current session against the Google reCaptcha service." msgstr "This stage checks the user's current session against the Google reCaptcha service." -#: src/pages/policies/reputation/ReputationPolicyForm.ts:94 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:92 msgid "Threshold" msgstr "Threshold" -#: src/pages/stages/email/EmailStageForm.ts:149 +#: src/pages/stages/email/EmailStageForm.ts:150 msgid "Time in minutes the token sent is valid." msgstr "Time in minutes the token sent is valid." -#: src/pages/sources/saml/SAMLSourceForm.ts:173 +#: src/pages/sources/saml/SAMLSourceForm.ts:171 msgid "Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually. (Format: hours=1;minutes=2;seconds=3)." msgstr "Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually. (Format: hours=1;minutes=2;seconds=3)." @@ -3453,12 +3465,12 @@ msgid "Time-based One-Time Passwords" msgstr "Time-based One-Time Passwords" #: src/pages/policies/BoundPoliciesList.ts:43 -#: src/pages/policies/PolicyBindingForm.ts:209 -#: src/pages/stages/email/EmailStageForm.ts:101 +#: src/pages/policies/PolicyBindingForm.ts:210 +#: src/pages/stages/email/EmailStageForm.ts:102 msgid "Timeout" msgstr "Timeout" -#: src/pages/flows/FlowForm.ts:87 +#: src/pages/flows/FlowForm.ts:92 msgid "Title" msgstr "Title" @@ -3472,11 +3484,11 @@ msgstr "Token" msgid "Token URL" msgstr "Token URL" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:68 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:66 msgid "Token count" msgstr "Token count" -#: src/pages/stages/email/EmailStageForm.ts:145 +#: src/pages/stages/email/EmailStageForm.ts:146 msgid "Token expiry" msgstr "Token expiry" @@ -3495,39 +3507,47 @@ msgstr "Tokens" msgid "Tokens are used throughout authentik for Email validation stages, Recovery keys and API access." msgstr "Tokens are used throughout authentik for Email validation stages, Recovery keys and API access." -#: src/pages/admin-overview/graphs/FlowStatusCard.ts:53 +#: src/pages/admin-overview/charts/FlowStatusChart.ts:53 msgid "Total flows" msgstr "Total flows" -#: src/pages/admin-overview/graphs/PolicyStatusCard.ts:58 +#: src/pages/admin-overview/charts/GroupCountStatusChart.ts:54 +msgid "Total groups" +msgstr "Total groups" + +#: src/pages/admin-overview/charts/PolicyStatusChart.ts:58 msgid "Total policies" msgstr "Total policies" +#: src/pages/admin-overview/charts/UserCountStatusChart.ts:54 +msgid "Total users" +msgstr "Total users" + #: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts:80 msgid "Traditional authenticator" msgstr "Traditional authenticator" -#: src/pages/sources/saml/SAMLSourceForm.ts:164 +#: src/pages/sources/saml/SAMLSourceForm.ts:162 msgid "Transient" msgstr "Transient" -#: src/pages/events/RuleForm.ts:78 +#: src/pages/events/RuleForm.ts:83 msgid "Transports" msgstr "Transports" #: src/pages/flows/BoundStagesList.ts:40 -#: src/pages/outposts/OutpostForm.ts:53 +#: src/pages/outposts/OutpostForm.ts:58 #: src/pages/outposts/ServiceConnectionListPage.ts:54 #: src/pages/policies/PolicyListPage.ts:57 #: src/pages/property-mappings/PropertyMappingListPage.ts:55 #: src/pages/providers/ProviderListPage.ts:55 #: src/pages/sources/SourcesListPage.ts:53 -#: src/pages/stages/prompt/PromptForm.ts:97 +#: src/pages/stages/prompt/PromptForm.ts:102 #: src/pages/stages/prompt/PromptListPage.ts:48 msgid "Type" msgstr "Type" -#: src/pages/applications/ApplicationForm.ts:155 +#: src/pages/applications/ApplicationForm.ts:160 msgid "UI settings" msgstr "UI settings" @@ -3535,35 +3555,35 @@ msgstr "UI settings" msgid "UID" msgstr "UID" -#: src/pages/sources/oauth/OAuthSourceForm.ts:62 +#: src/pages/sources/oauth/OAuthSourceForm.ts:63 msgid "URL settings" msgstr "URL settings" -#: src/pages/sources/saml/SAMLSourceForm.ts:84 +#: src/pages/sources/saml/SAMLSourceForm.ts:82 msgid "URL that the initial Login request is sent to." msgstr "URL that the initial Login request is sent to." -#: src/pages/sources/oauth/OAuthSourceForm.ts:70 +#: src/pages/sources/oauth/OAuthSourceForm.ts:71 msgid "URL the user is redirect to to consent the authorization." msgstr "URL the user is redirect to to consent the authorization." -#: src/pages/sources/oauth/OAuthSourceForm.ts:84 +#: src/pages/sources/oauth/OAuthSourceForm.ts:85 msgid "URL used by authentik to get user information." msgstr "URL used by authentik to get user information." -#: src/pages/sources/oauth/OAuthSourceForm.ts:77 +#: src/pages/sources/oauth/OAuthSourceForm.ts:78 msgid "URL used by authentik to retrieve tokens." msgstr "URL used by authentik to retrieve tokens." -#: src/pages/sources/oauth/OAuthSourceForm.ts:90 +#: src/pages/sources/oauth/OAuthSourceForm.ts:91 msgid "URL used to request the initial token. This URL is only required for OAuth 1." msgstr "URL used to request the initial token. This URL is only required for OAuth 1." -#: src/pages/admin-overview/graphs/PolicyStatusCard.ts:60 +#: src/pages/admin-overview/charts/PolicyStatusChart.ts:60 msgid "Unbound policies" msgstr "Unbound policies" -#: src/pages/flows/FlowForm.ts:73 +#: src/pages/flows/FlowForm.ts:78 msgid "Unenrollment" msgstr "Unenrollment" @@ -3571,7 +3591,7 @@ msgstr "Unenrollment" msgid "Unhealthy" msgstr "Unhealthy" -#: src/pages/admin-overview/graphs/OutpostStatusCard.ts:72 +#: src/pages/admin-overview/charts/OutpostStatusChart.ts:72 msgid "Unhealthy outposts" msgstr "Unhealthy outposts" @@ -3579,7 +3599,7 @@ msgstr "Unhealthy outposts" msgid "Unknown" msgstr "Unknown" -#: src/pages/admin-overview/graphs/LDAPSyncStatusCard.ts:77 +#: src/pages/admin-overview/charts/LDAPSyncStatusChart.ts:77 msgid "Unsynced sources" msgstr "Unsynced sources" @@ -3731,11 +3751,11 @@ msgstr "Update {0}" msgid "Upstream host that the requests are forwarded to." msgstr "Upstream host that the requests are forwarded to." -#: src/pages/stages/email/EmailStageForm.ts:96 +#: src/pages/stages/email/EmailStageForm.ts:97 msgid "Use SSL" msgstr "Use SSL" -#: src/pages/stages/email/EmailStageForm.ts:88 +#: src/pages/stages/email/EmailStageForm.ts:89 msgid "Use TLS" msgstr "Use TLS" @@ -3747,26 +3767,30 @@ msgstr "Use a code-based authenticator." msgid "Use a security key to prove your identity." msgstr "Use a security key to prove your identity." -#: src/pages/stages/email/EmailStageForm.ts:139 +#: src/pages/stages/email/EmailStageForm.ts:140 msgid "Use global settings" msgstr "Use global settings" -#: src/pages/sources/oauth/OAuthSourceForm.ts:131 -#: src/pages/sources/plex/PlexSourceForm.ts:121 +#: src/pages/sources/oauth/OAuthSourceForm.ts:150 +#: src/pages/sources/plex/PlexSourceForm.ts:124 msgid "Use the user's email address, but deny enrollment when the email address already exists." msgstr "Use the user's email address, but deny enrollment when the email address already exists." -#: src/pages/sources/oauth/OAuthSourceForm.ts:137 -#: src/pages/sources/plex/PlexSourceForm.ts:127 +#: src/pages/sources/oauth/OAuthSourceForm.ts:156 +#: src/pages/sources/plex/PlexSourceForm.ts:130 msgid "Use the user's username, but deny enrollment when the username already exists." msgstr "Use the user's username, but deny enrollment when the username already exists." +#: src/pages/sources/oauth/OAuthSourceForm.ts:126 +msgid "Use this redirect URL:" +msgstr "Use this redirect URL:" + #: src/elements/events/ObjectChangelog.ts:39 #: src/elements/events/UserEvents.ts:36 #: src/pages/events/EventInfo.ts:83 #: src/pages/events/EventListPage.ts:44 -#: src/pages/policies/PolicyBindingForm.ts:132 -#: src/pages/policies/PolicyBindingForm.ts:176 +#: src/pages/policies/PolicyBindingForm.ts:133 +#: src/pages/policies/PolicyBindingForm.ts:177 #: src/pages/policies/PolicyTestForm.ts:61 #: src/pages/property-mappings/PropertyMappingTestForm.ts:51 #: src/pages/tokens/TokenListPage.ts:45 @@ -3780,7 +3804,7 @@ msgstr "User" msgid "User Info" msgstr "User Info" -#: src/pages/sources/ldap/LDAPSourceForm.ts:144 +#: src/pages/sources/ldap/LDAPSourceForm.ts:142 msgid "User Property Mappings" msgstr "User Property Mappings" @@ -3797,20 +3821,20 @@ msgid "User events" msgstr "User events" #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:99 -#: src/pages/stages/identification/IdentificationStageForm.ts:74 +#: src/pages/stages/identification/IdentificationStageForm.ts:72 msgid "User fields" msgstr "User fields" -#: src/pages/sources/oauth/OAuthSourceForm.ts:120 -#: src/pages/sources/plex/PlexSourceForm.ts:110 +#: src/pages/sources/oauth/OAuthSourceForm.ts:139 +#: src/pages/sources/plex/PlexSourceForm.ts:113 msgid "User matching mode" msgstr "User matching mode" -#: src/pages/sources/ldap/LDAPSourceForm.ts:208 +#: src/pages/sources/ldap/LDAPSourceForm.ts:206 msgid "User object filter" msgstr "User object filter" -#: src/pages/sources/ldap/LDAPSourceForm.ts:85 +#: src/pages/sources/ldap/LDAPSourceForm.ts:83 msgid "User password writeback" msgstr "User password writeback" @@ -3824,7 +3848,7 @@ msgid "User's avatar" msgstr "User's avatar" #: src/pages/user-settings/UserDetailsPage.ts:68 -#: src/pages/users/UserForm.ts:58 +#: src/pages/users/UserForm.ts:63 msgid "User's display name." msgstr "User's display name." @@ -3841,28 +3865,28 @@ msgid "Userinfo URL" msgstr "Userinfo URL" #: src/flows/stages/identification/IdentificationStage.ts:150 -#: src/pages/stages/identification/IdentificationStageForm.ts:78 +#: src/pages/stages/identification/IdentificationStageForm.ts:76 #: src/pages/user-settings/UserDetailsPage.ts:57 -#: src/pages/users/UserForm.ts:47 +#: src/pages/users/UserForm.ts:52 #: src/pages/users/UserViewPage.ts:84 msgid "Username" msgstr "Username" -#: src/pages/stages/prompt/PromptForm.ts:48 +#: src/pages/stages/prompt/PromptForm.ts:53 msgid "Username: Same as Text input, but checks for and prevents duplicate usernames." msgstr "Username: Same as Text input, but checks for and prevents duplicate usernames." #: src/interfaces/AdminInterface.ts:100 -#: src/pages/admin-overview/AdminOverviewPage.ts:88 +#: src/pages/admin-overview/AdminOverviewPage.ts:71 #: src/pages/users/UserListPage.ts:33 msgid "Users" msgstr "Users" -#: src/pages/groups/GroupForm.ts:65 +#: src/pages/groups/GroupForm.ts:70 msgid "Users added to this group will be superusers." msgstr "Users added to this group will be superusers." -#: src/pages/providers/ldap/LDAPProviderForm.ts:88 +#: src/pages/providers/ldap/LDAPProviderForm.ts:86 msgid "Users in the selected group can do search queries." msgstr "Users in the selected group can do search queries." @@ -3882,11 +3906,11 @@ msgstr "Valid redirect URLs after a successful authorization flow. Also specify msgid "Validate SSL Certificates of upstream servers." msgstr "Validate SSL Certificates of upstream servers." -#: src/pages/stages/password/PasswordStageForm.ts:60 +#: src/pages/stages/password/PasswordStageForm.ts:58 msgid "Validate the user's password against the selected backend(s)." msgstr "Validate the user's password against the selected backend(s)." -#: src/pages/stages/prompt/PromptStageForm.ts:103 +#: src/pages/stages/prompt/PromptStageForm.ts:101 msgid "Validation Policies" msgstr "Validation Policies" @@ -3894,15 +3918,15 @@ msgstr "Validation Policies" msgid "Validity days" msgstr "Validity days" -#: src/pages/providers/saml/SAMLProviderForm.ts:138 +#: src/pages/providers/saml/SAMLProviderForm.ts:137 msgid "Verification Certificate" msgstr "Verification Certificate" -#: src/pages/stages/email/EmailStageForm.ts:119 +#: src/pages/stages/email/EmailStageForm.ts:120 msgid "Verify the user's email address by sending them a one-time-link. Can also be used for recovery to verify the user's authenticity." msgstr "Verify the user's email address by sending them a one-time-link. Can also be used for recovery to verify the user's authenticity." -#: src/pages/admin-overview/AdminOverviewPage.ts:80 +#: src/pages/admin-overview/AdminOverviewPage.ts:90 msgid "Version" msgstr "Version" @@ -3918,27 +3942,23 @@ msgstr "View Deployment Info" msgid "View deployment documentation" msgstr "View deployment documentation" -#: src/pages/flows/FlowForm.ts:98 +#: src/pages/flows/FlowForm.ts:103 msgid "Visible in the URL." msgstr "Visible in the URL." -#: src/pages/policies/dummy/DummyPolicyForm.ts:93 +#: src/pages/policies/dummy/DummyPolicyForm.ts:91 msgid "Wait (max)" msgstr "Wait (max)" -#: src/pages/policies/dummy/DummyPolicyForm.ts:86 +#: src/pages/policies/dummy/DummyPolicyForm.ts:84 msgid "Wait (min)" msgstr "Wait (min)" -#: src/pages/events/RuleForm.ts:48 +#: src/pages/events/RuleForm.ts:53 #: src/pages/system-tasks/SystemTaskListPage.ts:66 msgid "Warning" msgstr "Warning" -#: src/pages/admin-overview/cards/ProviderStatusCard.ts:24 -msgid "Warning: At least one Provider has no application assigned." -msgstr "Warning: At least one Provider has no application assigned." - #: src/pages/policies/PolicyListPage.ts:71 msgid "Warning: Policy is not assigned." msgstr "Warning: Policy is not assigned." @@ -3955,45 +3975,45 @@ msgstr "WebAuthn Authenticators" msgid "WebAuthn Devices" msgstr "WebAuthn Devices" -#: src/pages/events/TransportForm.ts:52 +#: src/pages/events/TransportForm.ts:57 msgid "Webhook (Slack/Discord)" msgstr "Webhook (Slack/Discord)" -#: src/pages/events/TransportForm.ts:49 +#: src/pages/events/TransportForm.ts:54 msgid "Webhook (generic)" msgstr "Webhook (generic)" -#: src/pages/events/TransportForm.ts:91 +#: src/pages/events/TransportForm.ts:96 msgid "Webhook URL" msgstr "Webhook URL" -#: src/pages/stages/identification/IdentificationStageForm.ts:103 +#: src/pages/stages/identification/IdentificationStageForm.ts:101 msgid "When a valid username/email has been entered, and this option is enabled, the user's username and avatar will be shown. Otherwise, the text that the user entered will be shown." msgstr "When a valid username/email has been entered, and this option is enabled, the user's username and avatar will be shown. Otherwise, the text that the user entered will be shown." -#: src/pages/stages/email/EmailStageForm.ts:142 +#: src/pages/stages/email/EmailStageForm.ts:143 msgid "When enabled, global Email connection settings will be used and connection settings below will be ignored." msgstr "When enabled, global Email connection settings will be used and connection settings below will be ignored." -#: src/pages/stages/invitation/InvitationForm.ts:66 +#: src/pages/stages/invitation/InvitationForm.ts:71 msgid "When enabled, the invitation will be deleted after usage." msgstr "When enabled, the invitation will be deleted after usage." -#: src/pages/stages/identification/IdentificationStageForm.ts:94 +#: src/pages/stages/identification/IdentificationStageForm.ts:92 msgid "When enabled, user fields are matched regardless of their casing." msgstr "When enabled, user fields are matched regardless of their casing." -#: src/pages/providers/saml/SAMLProviderForm.ts:151 +#: src/pages/providers/saml/SAMLProviderForm.ts:150 msgid "When selected, incoming assertion's Signatures will be validated against this certificate. To allow unsigned Requests, leave on default." msgstr "When selected, incoming assertion's Signatures will be validated against this certificate. To allow unsigned Requests, leave on default." -#: src/pages/policies/dummy/DummyPolicyForm.ts:69 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:70 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:69 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:70 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:70 -#: src/pages/policies/password/PasswordPolicyForm.ts:69 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:69 +#: src/pages/policies/dummy/DummyPolicyForm.ts:67 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:68 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:67 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:68 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:68 +#: src/pages/policies/password/PasswordPolicyForm.ts:67 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:67 msgid "When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged." msgstr "When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged." @@ -4001,15 +4021,15 @@ msgstr "When this option is enabled, all executions of this policy will be logge msgid "Whoops!" msgstr "Whoops!" -#: src/pages/sources/saml/SAMLSourceForm.ts:158 +#: src/pages/sources/saml/SAMLSourceForm.ts:156 msgid "Windows" msgstr "Windows" -#: src/pages/admin-overview/AdminOverviewPage.ts:92 +#: src/pages/admin-overview/AdminOverviewPage.ts:98 msgid "Workers" msgstr "Workers" -#: src/pages/stages/user_write/UserWriteStageForm.ts:51 +#: src/pages/stages/user_write/UserWriteStageForm.ts:49 msgid "" "Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user\n" "is pending, a new user is created, and data is written to them." @@ -4017,7 +4037,7 @@ msgstr "" "Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user\n" "is pending, a new user is created, and data is written to them." -#: src/pages/sources/saml/SAMLSourceForm.ts:161 +#: src/pages/sources/saml/SAMLSourceForm.ts:159 msgid "X509 Subject" msgstr "X509 Subject" @@ -4038,11 +4058,11 @@ msgstr "Yes" msgid "You're currently impersonating {0}." msgstr "You're currently impersonating {0}." -#: src/pages/stages/password/PasswordStageForm.ts:79 +#: src/pages/stages/password/PasswordStageForm.ts:77 msgid "authentik Builtin Database" msgstr "authentik Builtin Database" -#: src/pages/stages/password/PasswordStageForm.ts:82 +#: src/pages/stages/password/PasswordStageForm.ts:80 msgid "authentik LDAP Backend" msgstr "authentik LDAP Backend" @@ -4055,11 +4075,11 @@ msgstr "no tabs defined" msgid "{0}" msgstr "{0}" -#: src/pages/stages/prompt/PromptStageForm.ts:82 +#: src/pages/stages/prompt/PromptStageForm.ts:80 msgid "{0} (\"{1}\", of type {2})" msgstr "{0} (\"{1}\", of type {2})" -#: src/pages/stages/prompt/PromptStageForm.ts:115 +#: src/pages/stages/prompt/PromptStageForm.ts:113 msgid "{0} ({1})" msgstr "{0} ({1})" diff --git a/web/src/locales/pseudo-LOCALE.po b/web/src/locales/pseudo-LOCALE.po index 9103f167f..80adb8ca2 100644 --- a/web/src/locales/pseudo-LOCALE.po +++ b/web/src/locales/pseudo-LOCALE.po @@ -15,8 +15,8 @@ msgstr "" #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:141 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:149 -#: src/pages/providers/saml/SAMLProviderForm.ts:202 -#: src/pages/stages/user_login/UserLoginStageForm.ts:71 +#: src/pages/providers/saml/SAMLProviderForm.ts:201 +#: src/pages/stages/user_login/UserLoginStageForm.ts:69 msgid "(Format: hours=-1;minutes=-2;seconds=-3)." msgstr "" @@ -24,11 +24,11 @@ msgstr "" msgid "-" msgstr "" -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:72 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:70 msgid "6 digits, widely compatible" msgstr "" -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:75 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:73 msgid "8 digits, not compatible with apps like Google Authenticator" msgstr "" @@ -36,30 +36,30 @@ msgstr "" msgid "A newer version of the frontend is available." msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:53 +#: src/pages/policies/dummy/DummyPolicyForm.ts:51 msgid "A policy used for testing. Always returns the same result as specified below after waiting a random duration." msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:82 +#: src/pages/providers/saml/SAMLProviderForm.ts:81 #: src/pages/providers/saml/SAMLProviderViewPage.ts:84 msgid "ACS URL" msgstr "" -#: src/pages/applications/ApplicationForm.ts:149 -#: src/pages/flows/FlowForm.ts:109 +#: src/pages/applications/ApplicationForm.ts:154 +#: src/pages/flows/FlowForm.ts:114 msgid "ALL, all policies must match to grant access." msgstr "" -#: src/pages/flows/StageBindingForm.ts:144 +#: src/pages/flows/StageBindingForm.ts:149 msgid "ALL, all policies must match to include this stage access." msgstr "" -#: src/pages/applications/ApplicationForm.ts:146 -#: src/pages/flows/FlowForm.ts:106 +#: src/pages/applications/ApplicationForm.ts:151 +#: src/pages/flows/FlowForm.ts:111 msgid "ANY, any policy must match to grant access." msgstr "" -#: src/pages/flows/StageBindingForm.ts:141 +#: src/pages/flows/StageBindingForm.ts:146 msgid "ANY, any policy must match to include this stage access." msgstr "" @@ -79,14 +79,14 @@ msgstr "" msgid "Access code validity" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:73 +#: src/pages/sources/oauth/OAuthSourceForm.ts:74 msgid "Access token URL" msgstr "" #: src/elements/events/ObjectChangelog.ts:38 #: src/elements/events/UserEvents.ts:35 #: src/pages/events/EventListPage.ts:43 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:79 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:77 msgid "Action" msgstr "" @@ -100,31 +100,31 @@ msgstr "" msgid "Add" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:202 +#: src/pages/sources/ldap/LDAPSourceForm.ts:200 msgid "Addition Group DN" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:196 +#: src/pages/sources/ldap/LDAPSourceForm.ts:194 msgid "Addition User DN" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:205 +#: src/pages/sources/ldap/LDAPSourceForm.ts:203 msgid "Additional group DN, prepended to the Base DN." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:199 +#: src/pages/sources/ldap/LDAPSourceForm.ts:197 msgid "Additional user DN, prepended to the Base DN." msgstr "" #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:132 #: src/pages/providers/proxy/ProxyProviderForm.ts:153 -#: src/pages/providers/saml/SAMLProviderForm.ts:117 -#: src/pages/sources/saml/SAMLSourceForm.ts:134 +#: src/pages/providers/saml/SAMLProviderForm.ts:116 +#: src/pages/sources/saml/SAMLSourceForm.ts:132 msgid "Advanced protocol settings" msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:119 -#: src/pages/sources/ldap/LDAPSourceForm.ts:140 +#: src/pages/policies/password/PasswordPolicyForm.ts:117 +#: src/pages/sources/ldap/LDAPSourceForm.ts:138 msgid "Advanced settings" msgstr "" @@ -132,7 +132,7 @@ msgstr "" msgid "Affected model:" msgstr "" -#: src/pages/events/RuleForm.ts:45 +#: src/pages/events/RuleForm.ts:50 msgid "Alert" msgstr "" @@ -140,15 +140,15 @@ msgstr "" msgid "Algorithm used to sign the JWT Tokens." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:141 +#: src/pages/sources/saml/SAMLSourceForm.ts:139 msgid "Allow IDP-initiated logins" msgstr "" -#: src/pages/sources/plex/PlexSourceForm.ts:147 +#: src/pages/sources/plex/PlexSourceForm.ts:150 msgid "Allow friends to authenticate via Plex, even if you don't share any servers" msgstr "" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:90 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:88 msgid "Allow up to N occurrences in the HIBP database." msgstr "" @@ -156,23 +156,23 @@ msgstr "" msgid "Allow users to use Applications based on properties, enforce Password Criteria and selectively apply Stages." msgstr "" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:86 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:84 msgid "Allowed count" msgstr "" -#: src/pages/sources/plex/PlexSourceForm.ts:152 +#: src/pages/sources/plex/PlexSourceForm.ts:155 msgid "Allowed servers" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:144 +#: src/pages/sources/saml/SAMLSourceForm.ts:142 msgid "Allows authentication flows initiated by the IdP. This can be a security risk, as no validation of the request ID is done." msgstr "" -#: src/pages/policies/reputation/ReputationPolicyForm.ts:53 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:51 msgid "Allows/denys requests based on the users and/or the IPs reputation." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:96 +#: src/pages/sources/saml/SAMLSourceForm.ts:94 msgid "Also known as Entity ID. Defaults the Metadata URL." msgstr "" @@ -181,7 +181,7 @@ msgid "Always require consent" msgstr "" #: src/pages/events/EventInfo.ts:59 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:99 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:97 msgid "App" msgstr "" @@ -200,18 +200,17 @@ msgstr "" msgid "Application requires following permissions" msgstr "" -#: src/pages/applications/ApplicationForm.ts:90 +#: src/pages/applications/ApplicationForm.ts:95 msgid "Application's display Name." msgstr "" #: src/interfaces/AdminInterface.ts:38 -#: src/pages/LibraryPage.ts:93 #: src/pages/LibraryPage.ts:130 #: src/pages/applications/ApplicationListPage.ts:28 msgid "Applications" msgstr "" -#: src/pages/admin-overview/AdminOverviewPage.ts:105 +#: src/pages/admin-overview/AdminOverviewPage.ts:111 msgid "Apps with most usage" msgstr "" @@ -223,15 +222,15 @@ msgstr "" msgid "Are you sure you want to update {0} \"{1}\"?" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:209 +#: src/pages/providers/saml/SAMLProviderForm.ts:208 msgid "Assertion not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3)." msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:197 +#: src/pages/providers/saml/SAMLProviderForm.ts:196 msgid "Assertion valid not before" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:205 +#: src/pages/providers/saml/SAMLProviderForm.ts:204 msgid "Assertion valid not on or after" msgstr "" @@ -255,32 +254,32 @@ msgstr "" msgid "Attempted to log in as {0}" msgstr "" -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:63 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:61 msgid "Attribute name used for SAML Assertions. Can be a URN OID, a schema reference, or a any other string. If this property mapping is used for NameID Property, this field is discarded." msgstr "" -#: src/pages/groups/GroupForm.ts:134 -#: src/pages/stages/invitation/InvitationForm.ts:52 -#: src/pages/users/UserForm.ts:77 +#: src/pages/groups/GroupForm.ts:139 +#: src/pages/stages/invitation/InvitationForm.ts:57 +#: src/pages/users/UserForm.ts:82 msgid "Attributes" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:108 +#: src/pages/providers/saml/SAMLProviderForm.ts:107 #: src/pages/providers/saml/SAMLProviderViewPage.ts:92 msgid "Audience" msgstr "" -#: src/flows/sources/plex/PlexLoginInit.ts:56 +#: src/flows/sources/plex/PlexLoginInit.ts:68 msgid "Authenticating with Plex..." msgstr "" -#: src/pages/flows/FlowForm.ts:55 +#: src/pages/flows/FlowForm.ts:60 msgid "Authentication" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:212 -#: src/pages/sources/plex/PlexSourceForm.ts:182 -#: src/pages/sources/saml/SAMLSourceForm.ts:245 +#: src/pages/sources/oauth/OAuthSourceForm.ts:231 +#: src/pages/sources/plex/PlexSourceForm.ts:185 +#: src/pages/sources/saml/SAMLSourceForm.ts:243 msgid "Authentication flow" msgstr "" @@ -289,7 +288,7 @@ msgstr "" msgid "Authenticator" msgstr "" -#: src/pages/flows/FlowForm.ts:58 +#: src/pages/flows/FlowForm.ts:63 msgid "Authorization" msgstr "" @@ -297,14 +296,14 @@ msgstr "" msgid "Authorization Code" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:66 +#: src/pages/sources/oauth/OAuthSourceForm.ts:67 #: src/pages/sources/oauth/OAuthSourceViewPage.ts:96 msgid "Authorization URL" msgstr "" #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:62 #: src/pages/providers/proxy/ProxyProviderForm.ts:104 -#: src/pages/providers/saml/SAMLProviderForm.ts:59 +#: src/pages/providers/saml/SAMLProviderForm.ts:58 #: src/pages/providers/saml/SAMLProviderImportForm.ts:44 msgid "Authorization flow" msgstr "" @@ -317,15 +316,15 @@ msgstr "" msgid "Authorized application:" msgstr "" -#: src/pages/stages/password/PasswordStageForm.ts:74 +#: src/pages/stages/password/PasswordStageForm.ts:72 msgid "Backends" msgstr "" -#: src/pages/flows/FlowForm.ts:124 +#: src/pages/flows/FlowForm.ts:129 msgid "Background" msgstr "" -#: src/pages/flows/FlowForm.ts:127 +#: src/pages/flows/FlowForm.ts:132 #: src/pages/flows/FlowImportForm.ts:37 msgid "Background shown during execution." msgstr "" @@ -338,13 +337,13 @@ msgstr "" msgid "Backup finished with warnings." msgstr "" -#: src/pages/admin-overview/AdminOverviewPage.ts:84 +#: src/pages/admin-overview/AdminOverviewPage.ts:94 msgid "Backup status" msgstr "" -#: src/pages/providers/ldap/LDAPProviderForm.ts:97 +#: src/pages/providers/ldap/LDAPProviderForm.ts:95 #: src/pages/providers/ldap/LDAPProviderViewPage.ts:82 -#: src/pages/sources/ldap/LDAPSourceForm.ts:131 +#: src/pages/sources/ldap/LDAPSourceForm.ts:129 #: src/pages/sources/ldap/LDAPSourceViewPage.ts:80 msgid "Base DN" msgstr "" @@ -369,15 +368,15 @@ msgstr "" msgid "Basic-Auth" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:118 +#: src/pages/sources/ldap/LDAPSourceForm.ts:116 msgid "Bind CN" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:124 +#: src/pages/sources/ldap/LDAPSourceForm.ts:122 msgid "Bind Password" msgstr "" -#: src/pages/providers/ldap/LDAPProviderForm.ts:60 +#: src/pages/providers/ldap/LDAPProviderForm.ts:58 msgid "Bind flow" msgstr "" @@ -391,7 +390,7 @@ msgstr "" msgid "Binding" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:99 +#: src/pages/sources/saml/SAMLSourceForm.ts:97 msgid "Binding Type" msgstr "" @@ -404,15 +403,15 @@ msgstr "" msgid "Built-in" msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:88 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:86 msgid "CA which the endpoint's Certificate is verified against. Can be left empty for no validation." msgstr "" -#: src/pages/admin-overview/graphs/FlowStatusCard.ts:54 +#: src/pages/admin-overview/charts/FlowStatusChart.ts:54 msgid "Cached flows" msgstr "" -#: src/pages/admin-overview/graphs/PolicyStatusCard.ts:59 +#: src/pages/admin-overview/charts/PolicyStatusChart.ts:59 msgid "Cached policies" msgstr "" @@ -420,7 +419,7 @@ msgstr "" msgid "Callback URL" msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:72 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:70 msgid "Can be in the format of 'unix://' when connecting to a local docker daemon, or 'https://:2376' when connecting to a remote system." msgstr "" @@ -432,11 +431,11 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:91 +#: src/pages/stages/identification/IdentificationStageForm.ts:89 msgid "Case insensitive matching" msgstr "" -#: src/pages/crypto/CertificateKeyPairForm.ts:51 +#: src/pages/crypto/CertificateKeyPairForm.ts:56 #: src/pages/providers/proxy/ProxyProviderForm.ts:157 msgid "Certificate" msgstr "" @@ -449,7 +448,7 @@ msgstr "" msgid "Certificate Subjet" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:135 +#: src/pages/providers/saml/SAMLProviderForm.ts:134 msgid "Certificate used to sign outgoing Responses going to the Service Provider." msgstr "" @@ -461,7 +460,7 @@ msgstr "" msgid "Certificate-Key Pairs" msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:104 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:102 msgid "Certificate/Key used for authentication. Can be left empty for no authentication." msgstr "" @@ -491,15 +490,15 @@ msgstr "" msgid "Changelog" msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:127 +#: src/pages/policies/password/PasswordPolicyForm.ts:125 msgid "Characters which are considered as symbols." msgstr "" -#: src/pages/policies/reputation/ReputationPolicyForm.ts:81 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:79 msgid "Check IP" msgstr "" -#: src/pages/policies/reputation/ReputationPolicyForm.ts:89 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:87 msgid "Check Username" msgstr "" @@ -507,21 +506,21 @@ msgstr "" msgid "Check your Emails for a password reset link." msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:60 +#: src/pages/stages/prompt/PromptForm.ts:65 msgid "Checkbox" msgstr "" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:53 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:51 msgid "" "Checks a value from the policy request against the Have I been Pwned API, and denys the request based upon that.\n" "Note that only a part of the hash of the password is sent, the full comparison is done clientside." msgstr "" -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:53 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:51 msgid "Checks if the request's user's password has been changed in the last x days, and denys based on settings." msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:53 +#: src/pages/policies/password/PasswordPolicyForm.ts:51 msgid "Checks the value from the policy request against several rules, mostly used to ensure password strength." msgstr "" @@ -535,14 +534,14 @@ msgstr "" #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:107 #: src/pages/providers/oauth2/OAuth2ProviderViewPage.ts:99 -#: src/pages/sources/plex/PlexSourceForm.ts:138 +#: src/pages/sources/plex/PlexSourceForm.ts:141 msgid "Client ID" msgstr "" #: src/elements/events/ObjectChangelog.ts:41 #: src/elements/events/UserEvents.ts:38 #: src/pages/events/EventListPage.ts:46 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:93 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:91 msgid "Client IP" msgstr "" @@ -580,10 +579,10 @@ msgstr "" msgid "Configuration" msgstr "" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:74 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:80 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:72 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:78 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:118 -#: src/pages/stages/password/PasswordStageForm.ts:89 +#: src/pages/stages/password/PasswordStageForm.ts:87 msgid "Configuration flow" msgstr "" @@ -599,7 +598,7 @@ msgstr "" msgid "Configure how long refresh tokens and their id_tokens are valid for." msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:193 +#: src/pages/providers/saml/SAMLProviderForm.ts:192 msgid "Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be respected." msgstr "" @@ -611,7 +610,7 @@ msgstr "" msgid "Configure settings relevant to your user profile." msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:201 +#: src/pages/providers/saml/SAMLProviderForm.ts:200 msgid "Configure the maximum allowed time drift for an asseration." msgstr "" @@ -631,8 +630,8 @@ msgstr "" msgid "Connection error, reconnecting..." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:100 -#: src/pages/stages/email/EmailStageForm.ts:58 +#: src/pages/sources/ldap/LDAPSourceForm.ts:98 +#: src/pages/stages/email/EmailStageForm.ts:59 msgid "Connection settings" msgstr "" @@ -652,19 +651,19 @@ msgstr "" msgid "Consent given last indefinitely" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:219 +#: src/pages/sources/ldap/LDAPSourceForm.ts:217 msgid "Consider Objects matching this filter to be Groups." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:212 +#: src/pages/sources/ldap/LDAPSourceForm.ts:210 msgid "Consider Objects matching this filter to be Users." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:148 +#: src/pages/sources/oauth/OAuthSourceForm.ts:167 msgid "Consumer key" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:154 +#: src/pages/sources/oauth/OAuthSourceForm.ts:173 msgid "Consumer secret" msgstr "" @@ -688,7 +687,7 @@ msgstr "" msgid "Continue" msgstr "" -#: src/pages/stages/invitation/InvitationStageForm.ts:70 +#: src/pages/stages/invitation/InvitationStageForm.ts:68 msgid "Continue flow without invitation" msgstr "" @@ -705,7 +704,7 @@ msgstr "" msgid "Copy Key" msgstr "" -#: src/pages/applications/ApplicationForm.ts:120 +#: src/pages/applications/ApplicationForm.ts:125 #: src/pages/applications/ApplicationListPage.ts:121 #: src/pages/applications/ApplicationListPage.ts:129 #: src/pages/crypto/CertificateKeyPairListPage.ts:122 @@ -744,8 +743,8 @@ msgstr "" #: src/pages/stages/invitation/InvitationListPage.ts:85 #: src/pages/stages/prompt/PromptListPage.ts:96 #: src/pages/stages/prompt/PromptListPage.ts:104 -#: src/pages/stages/prompt/PromptStageForm.ts:90 -#: src/pages/stages/prompt/PromptStageForm.ts:98 +#: src/pages/stages/prompt/PromptStageForm.ts:88 +#: src/pages/stages/prompt/PromptStageForm.ts:96 #: src/pages/user-settings/tokens/UserTokenList.ts:50 #: src/pages/user-settings/tokens/UserTokenList.ts:58 #: src/pages/users/UserListPage.ts:155 @@ -802,7 +801,7 @@ msgid "Create Policy" msgstr "" #: src/pages/stages/prompt/PromptListPage.ts:99 -#: src/pages/stages/prompt/PromptStageForm.ts:93 +#: src/pages/stages/prompt/PromptStageForm.ts:91 msgid "Create Prompt" msgstr "" @@ -823,11 +822,11 @@ msgstr "" msgid "Create User" msgstr "" -#: src/pages/applications/ApplicationForm.ts:111 +#: src/pages/applications/ApplicationForm.ts:116 msgid "Create provider" msgstr "" -#: src/pages/applications/ApplicationForm.ts:123 +#: src/pages/applications/ApplicationForm.ts:128 #: src/pages/flows/BoundStagesList.ts:149 #: src/pages/outposts/ServiceConnectionListPage.ts:122 #: src/pages/policies/BoundPoliciesList.ts:192 @@ -857,20 +856,20 @@ msgstr "" msgid "Customisation" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:256 -#: src/pages/sources/saml/SAMLSourceForm.ts:212 +#: src/pages/providers/saml/SAMLProviderForm.ts:255 +#: src/pages/sources/saml/SAMLSourceForm.ts:210 msgid "DSA-SHA1" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:63 +#: src/pages/stages/prompt/PromptForm.ts:68 msgid "Date" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:66 +#: src/pages/stages/prompt/PromptForm.ts:71 msgid "Date Time" msgstr "" -#: src/pages/flows/FlowForm.ts:121 +#: src/pages/flows/FlowForm.ts:126 msgid "Decides what this Flow is used for. For example, the Authentication flow is redirect to when an un-authenticated user visits authentik." msgstr "" @@ -922,11 +921,11 @@ msgstr "" msgid "Delete account" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:169 +#: src/pages/sources/saml/SAMLSourceForm.ts:167 msgid "Delete temporary users after" msgstr "" -#: src/pages/stages/user_delete/UserDeleteStageForm.ts:51 +#: src/pages/stages/user_delete/UserDeleteStageForm.ts:49 msgid "" "Delete the currently pending user. CAUTION, this stage does not ask for\n" "confirmation. Use a consent stage to ensure the user is aware of their actions." @@ -940,31 +939,31 @@ msgstr "" msgid "Deny the user access" msgstr "" -#: src/pages/applications/ApplicationForm.ts:170 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:65 +#: src/pages/applications/ApplicationForm.ts:175 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:63 #: src/pages/system-tasks/SystemTaskListPage.ts:55 -#: src/pages/user-settings/tokens/UserTokenForm.ts:50 +#: src/pages/user-settings/tokens/UserTokenForm.ts:55 msgid "Description" msgstr "" -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:69 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:67 msgid "Description shown to the user when consenting. If left empty, the user won't be informed." msgstr "" -#: src/pages/users/UserForm.ts:74 +#: src/pages/users/UserForm.ts:79 msgid "Designates whether this user should be treated as active. Unselect this instead of deleting accounts." msgstr "" -#: src/pages/flows/FlowForm.ts:114 +#: src/pages/flows/FlowForm.ts:119 #: src/pages/flows/FlowListPage.ts:48 msgid "Designation" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:105 +#: src/pages/providers/saml/SAMLProviderForm.ts:104 msgid "Determines how authentik sends the response back to the Service Provider." msgstr "" -#: src/pages/stages/user_login/UserLoginStageForm.ts:70 +#: src/pages/stages/user_login/UserLoginStageForm.ts:68 msgid "Determines how long a session lasts. Default of 0 seconds means that the sessions lasts until the browser is closed." msgstr "" @@ -976,12 +975,12 @@ msgstr "" msgid "Device name" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:220 -#: src/pages/sources/saml/SAMLSourceForm.ts:176 +#: src/pages/providers/saml/SAMLProviderForm.ts:219 +#: src/pages/sources/saml/SAMLSourceForm.ts:174 msgid "Digest algorithm" msgstr "" -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:67 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:65 msgid "Digits" msgstr "" @@ -1006,7 +1005,7 @@ msgstr "" msgid "Disconnect" msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:68 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:66 msgid "Docker URL" msgstr "" @@ -1015,7 +1014,7 @@ msgstr "" msgid "Download" msgstr "" -#: src/pages/stages/dummy/DummyStageForm.ts:51 +#: src/pages/stages/dummy/DummyStageForm.ts:49 msgid "Dummy stage used for testing. Shows a simple continue button and always passes." msgstr "" @@ -1079,15 +1078,15 @@ msgid "Either no applications are defined, or you don't have access to any." msgstr "" #: src/flows/stages/identification/IdentificationStage.ts:146 -#: src/pages/events/TransportForm.ts:46 -#: src/pages/stages/identification/IdentificationStageForm.ts:81 +#: src/pages/events/TransportForm.ts:51 +#: src/pages/stages/identification/IdentificationStageForm.ts:79 #: src/pages/user-settings/UserDetailsPage.ts:71 -#: src/pages/users/UserForm.ts:61 +#: src/pages/users/UserForm.ts:66 #: src/pages/users/UserViewPage.ts:100 msgid "Email" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:155 +#: src/pages/sources/saml/SAMLSourceForm.ts:153 msgid "Email address" msgstr "" @@ -1095,7 +1094,7 @@ msgstr "" msgid "Email or username" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:51 +#: src/pages/stages/prompt/PromptForm.ts:56 msgid "Email: Text field with Email type." msgstr "" @@ -1104,7 +1103,7 @@ msgstr "" msgid "Enable" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:113 +#: src/pages/sources/ldap/LDAPSourceForm.ts:111 msgid "Enable StartTLS" msgstr "" @@ -1125,22 +1124,22 @@ msgid "Enable this if you don't want to use this provider as a proxy, and want t msgstr "" #: src/pages/policies/BoundPoliciesList.ts:41 -#: src/pages/policies/PolicyBindingForm.ts:198 -#: src/pages/sources/ldap/LDAPSourceForm.ts:69 -#: src/pages/sources/oauth/OAuthSourceForm.ts:115 -#: src/pages/sources/plex/PlexSourceForm.ts:105 -#: src/pages/sources/saml/SAMLSourceForm.ts:69 +#: src/pages/policies/PolicyBindingForm.ts:199 +#: src/pages/sources/ldap/LDAPSourceForm.ts:67 +#: src/pages/sources/oauth/OAuthSourceForm.ts:134 +#: src/pages/sources/plex/PlexSourceForm.ts:108 +#: src/pages/sources/saml/SAMLSourceForm.ts:67 msgid "Enabled" msgstr "" -#: src/pages/flows/FlowForm.ts:61 +#: src/pages/flows/FlowForm.ts:66 msgid "Enrollment" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:233 -#: src/pages/sources/plex/PlexSourceForm.ts:203 -#: src/pages/sources/saml/SAMLSourceForm.ts:266 -#: src/pages/stages/identification/IdentificationStageForm.ts:106 +#: src/pages/sources/oauth/OAuthSourceForm.ts:252 +#: src/pages/sources/plex/PlexSourceForm.ts:206 +#: src/pages/sources/saml/SAMLSourceForm.ts:264 +#: src/pages/stages/identification/IdentificationStageForm.ts:104 msgid "Enrollment flow" msgstr "" @@ -1152,7 +1151,7 @@ msgstr "" msgid "Error creating credential: {err}" msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:110 +#: src/pages/policies/password/PasswordPolicyForm.ts:108 msgid "Error message" msgstr "" @@ -1172,15 +1171,15 @@ msgstr "" msgid "Error: unsupported stage settings: {0}" msgstr "" -#: src/pages/flows/StageBindingForm.ts:119 +#: src/pages/flows/StageBindingForm.ts:124 msgid "Evaluate on plan" msgstr "" -#: src/pages/flows/StageBindingForm.ts:133 +#: src/pages/flows/StageBindingForm.ts:138 msgid "Evaluate policies before the Stage is present to the user." msgstr "" -#: src/pages/flows/StageBindingForm.ts:123 +#: src/pages/flows/StageBindingForm.ts:128 msgid "Evaluate policies during the Flow planning process. Disable this for input-based policies. Should be used in conjunction with 'Re-evaluate policies', as with this option disabled, policies are **not** evaluated." msgstr "" @@ -1214,24 +1213,24 @@ msgstr "" msgid "Execute flow" msgstr "" -#: src/pages/policies/expression/ExpressionPolicyForm.ts:54 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:52 msgid "Executes the python snippet to determine whether to allow or deny a request." msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:65 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:66 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:65 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:66 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:66 -#: src/pages/policies/password/PasswordPolicyForm.ts:65 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:65 +#: src/pages/policies/dummy/DummyPolicyForm.ts:63 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:64 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:63 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:64 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:64 +#: src/pages/policies/password/PasswordPolicyForm.ts:63 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:63 msgid "Execution logging" msgstr "" #: src/elements/oauth/UserCodeList.ts:30 #: src/elements/oauth/UserRefreshList.ts:30 #: src/elements/user/UserConsentList.ts:30 -#: src/pages/stages/invitation/InvitationForm.ts:46 +#: src/pages/stages/invitation/InvitationForm.ts:51 msgid "Expires" msgstr "" @@ -1262,17 +1261,17 @@ msgid "Export" msgstr "" #: src/pages/events/EventInfo.ts:133 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:79 -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:65 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:75 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:72 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:77 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:63 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:73 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:70 msgid "Expression" msgstr "" -#: src/pages/policies/expression/ExpressionPolicyForm.ts:85 -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:71 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:81 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:78 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:83 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:69 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:79 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:76 msgid "Expression using Python." msgstr "" @@ -1288,11 +1287,11 @@ msgstr "" msgid "External host" msgstr "" -#: src/pages/stages/password/PasswordStageForm.ts:111 +#: src/pages/stages/password/PasswordStageForm.ts:109 msgid "Failed attempts before cancel" msgstr "" -#: src/pages/admin-overview/graphs/LDAPSyncStatusCard.ts:76 +#: src/pages/admin-overview/charts/LDAPSyncStatusChart.ts:76 msgid "Failed sources" msgstr "" @@ -1308,32 +1307,32 @@ msgstr "" msgid "Field" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:83 +#: src/pages/stages/prompt/PromptForm.ts:88 msgid "Field Key" msgstr "" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:83 -#: src/pages/policies/password/PasswordPolicyForm.ts:82 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:81 +#: src/pages/policies/password/PasswordPolicyForm.ts:80 msgid "Field key to check, field keys defined in Prompt stages are available." msgstr "" -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:62 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:60 msgid "Field of the user object this value is written to." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:233 +#: src/pages/sources/ldap/LDAPSourceForm.ts:231 msgid "Field which contains a unique Identifier." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:226 +#: src/pages/sources/ldap/LDAPSourceForm.ts:224 msgid "Field which contains members of a group." msgstr "" -#: src/pages/stages/prompt/PromptStageForm.ts:69 +#: src/pages/stages/prompt/PromptStageForm.ts:67 msgid "Fields" msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:84 +#: src/pages/stages/identification/IdentificationStageForm.ts:82 msgid "Fields a user can identify themselves with. If no fields are selected, the user will only be able to use sources." msgstr "" @@ -1346,44 +1345,44 @@ msgstr "" msgid "Flow Overview" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:208 -#: src/pages/sources/plex/PlexSourceForm.ts:178 -#: src/pages/sources/saml/SAMLSourceForm.ts:220 +#: src/pages/sources/oauth/OAuthSourceForm.ts:227 +#: src/pages/sources/plex/PlexSourceForm.ts:181 +#: src/pages/sources/saml/SAMLSourceForm.ts:218 msgid "Flow settings" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:230 -#: src/pages/sources/plex/PlexSourceForm.ts:200 -#: src/pages/sources/saml/SAMLSourceForm.ts:263 +#: src/pages/sources/oauth/OAuthSourceForm.ts:249 +#: src/pages/sources/plex/PlexSourceForm.ts:203 +#: src/pages/sources/saml/SAMLSourceForm.ts:261 msgid "Flow to use when authenticating existing users." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:251 -#: src/pages/sources/plex/PlexSourceForm.ts:221 -#: src/pages/sources/saml/SAMLSourceForm.ts:284 +#: src/pages/sources/oauth/OAuthSourceForm.ts:270 +#: src/pages/sources/plex/PlexSourceForm.ts:224 +#: src/pages/sources/saml/SAMLSourceForm.ts:282 msgid "Flow to use when enrolling new users." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:242 +#: src/pages/sources/saml/SAMLSourceForm.ts:240 msgid "Flow used before authentication." msgstr "" -#: src/pages/stages/password/PasswordStageForm.ts:108 +#: src/pages/stages/password/PasswordStageForm.ts:106 msgid "Flow used by an authenticated user to configure their password. If empty, user will not be able to configure change their password." msgstr "" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:93 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:98 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:91 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:96 msgid "Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage." msgstr "" -#: src/pages/providers/ldap/LDAPProviderForm.ts:74 +#: src/pages/providers/ldap/LDAPProviderForm.ts:72 msgid "Flow used for users to authenticate. Currently only identification and password stages are supported." msgstr "" #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:76 #: src/pages/providers/proxy/ProxyProviderForm.ts:118 -#: src/pages/providers/saml/SAMLProviderForm.ts:73 +#: src/pages/providers/saml/SAMLProviderForm.ts:72 #: src/pages/providers/saml/SAMLProviderImportForm.ts:57 msgid "Flow used when authorizing this provider." msgstr "" @@ -1416,11 +1415,11 @@ msgstr "" msgid "Form didn't return a promise for submitting" msgstr "" -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:67 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:65 msgid "Friendly Name" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:107 +#: src/pages/stages/email/EmailStageForm.ts:108 msgid "From address" msgstr "" @@ -1445,23 +1444,23 @@ msgstr "" msgid "Go to previous page" msgstr "" -#: src/pages/events/RuleForm.ts:65 +#: src/pages/events/RuleForm.ts:70 #: src/pages/groups/GroupListPage.ts:74 -#: src/pages/policies/PolicyBindingForm.ts:124 -#: src/pages/policies/PolicyBindingForm.ts:160 -#: src/pages/providers/ldap/LDAPProviderForm.ts:77 +#: src/pages/policies/PolicyBindingForm.ts:125 +#: src/pages/policies/PolicyBindingForm.ts:161 +#: src/pages/providers/ldap/LDAPProviderForm.ts:75 msgid "Group" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:170 +#: src/pages/sources/ldap/LDAPSourceForm.ts:168 msgid "Group Property Mappings" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:222 +#: src/pages/sources/ldap/LDAPSourceForm.ts:220 msgid "Group membership field" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:215 +#: src/pages/sources/ldap/LDAPSourceForm.ts:213 msgid "Group object filter" msgstr "" @@ -1474,6 +1473,7 @@ msgid "Group {0}" msgstr "" #: src/interfaces/AdminInterface.ts:103 +#: src/pages/admin-overview/AdminOverviewPage.ts:76 #: src/pages/groups/GroupListPage.ts:27 msgid "Groups" msgstr "" @@ -1494,15 +1494,15 @@ msgstr "" msgid "Health and Version" msgstr "" -#: src/pages/admin-overview/graphs/OutpostStatusCard.ts:70 +#: src/pages/admin-overview/charts/OutpostStatusChart.ts:70 msgid "Healthy outposts" msgstr "" -#: src/pages/admin-overview/graphs/LDAPSyncStatusCard.ts:75 +#: src/pages/admin-overview/charts/LDAPSyncStatusChart.ts:75 msgid "Healthy sources" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:72 +#: src/pages/stages/prompt/PromptForm.ts:77 msgid "Hidden: Hidden field, can be used to insert data into form." msgstr "" @@ -1514,23 +1514,23 @@ msgstr "" msgid "Hide service-accounts" msgstr "" -#: src/pages/events/RuleForm.ts:93 -#: src/pages/groups/GroupForm.ts:131 -#: src/pages/outposts/OutpostForm.ts:110 +#: src/pages/events/RuleForm.ts:98 +#: src/pages/groups/GroupForm.ts:136 +#: src/pages/outposts/OutpostForm.ts:115 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:188 -#: src/pages/providers/saml/SAMLProviderForm.ts:177 -#: src/pages/sources/ldap/LDAPSourceForm.ts:167 -#: src/pages/sources/ldap/LDAPSourceForm.ts:193 -#: src/pages/sources/plex/PlexSourceForm.ts:165 +#: src/pages/providers/saml/SAMLProviderForm.ts:176 +#: src/pages/sources/ldap/LDAPSourceForm.ts:165 +#: src/pages/sources/ldap/LDAPSourceForm.ts:191 +#: src/pages/sources/plex/PlexSourceForm.ts:168 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:114 -#: src/pages/stages/identification/IdentificationStageForm.ts:85 -#: src/pages/stages/password/PasswordStageForm.ts:86 -#: src/pages/stages/prompt/PromptStageForm.ts:87 -#: src/pages/stages/prompt/PromptStageForm.ts:121 +#: src/pages/stages/identification/IdentificationStageForm.ts:83 +#: src/pages/stages/password/PasswordStageForm.ts:84 +#: src/pages/stages/prompt/PromptStageForm.ts:85 +#: src/pages/stages/prompt/PromptStageForm.ts:119 msgid "Hold control/command to select multiple items." msgstr "" -#: src/pages/stages/password/PasswordStageForm.ts:115 +#: src/pages/stages/password/PasswordStageForm.ts:113 msgid "How many attempts a user has before the flow is canceled. To lock the user out, use a reputation policy and a user_write stage." msgstr "" @@ -1538,14 +1538,14 @@ msgstr "" msgid "ID" msgstr "" -#: src/pages/applications/ApplicationForm.ts:165 +#: src/pages/applications/ApplicationForm.ts:170 msgid "Icon" msgstr "" #: src/pages/flows/FlowListPage.ts:46 #: src/pages/system-tasks/SystemTaskListPage.ts:54 #: src/pages/tokens/TokenListPage.ts:44 -#: src/pages/user-settings/tokens/UserTokenForm.ts:44 +#: src/pages/user-settings/tokens/UserTokenForm.ts:49 #: src/pages/user-settings/tokens/UserTokenList.ts:39 msgid "Identifier" msgstr "" @@ -1554,16 +1554,16 @@ msgstr "" msgid "Identity & Cryptography" msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:65 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:66 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:63 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:64 msgid "If enabled, use the local connection. Required Docker socket/Kubernetes Integration." msgstr "" -#: src/pages/applications/ApplicationForm.ts:162 +#: src/pages/applications/ApplicationForm.ts:167 msgid "If left empty, authentik will try to extract the launch URL based on the selected provider." msgstr "" -#: src/pages/stages/invitation/InvitationStageForm.ts:73 +#: src/pages/stages/invitation/InvitationStageForm.ts:71 msgid "If this flag is set, this Stage will jump to the next Stage when no Invitation is given. By default this Stage will cancel the Flow when no invitation is given." msgstr "" @@ -1604,7 +1604,7 @@ msgstr "" msgid "Internal Host" msgstr "" -#: src/pages/applications/ApplicationForm.ts:97 +#: src/pages/applications/ApplicationForm.ts:102 msgid "Internal application name, used in URLs." msgstr "" @@ -1616,7 +1616,7 @@ msgstr "" msgid "Internal host SSL Validation" msgstr "" -#: src/pages/flows/FlowForm.ts:64 +#: src/pages/flows/FlowForm.ts:69 msgid "Invalidation" msgstr "" @@ -1625,17 +1625,17 @@ msgstr "" msgid "Invitations" msgstr "" -#: src/pages/users/UserForm.ts:71 +#: src/pages/users/UserForm.ts:76 msgid "Is active" msgstr "" -#: src/pages/groups/GroupForm.ts:62 +#: src/pages/groups/GroupForm.ts:67 msgid "Is superuser" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:88 +#: src/pages/providers/saml/SAMLProviderForm.ts:87 #: src/pages/providers/saml/SAMLProviderViewPage.ts:100 -#: src/pages/sources/saml/SAMLSourceForm.ts:93 +#: src/pages/sources/saml/SAMLSourceForm.ts:91 #: src/pages/sources/saml/SAMLSourceViewPage.ts:90 msgid "Issuer" msgstr "" @@ -1652,32 +1652,32 @@ msgstr "" msgid "Key used to sign the tokens. Only required when JWT Algorithm is set to RS256." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:128 +#: src/pages/sources/saml/SAMLSourceForm.ts:126 msgid "Keypair which is used to sign outgoing requests. Leave empty to disable signing." msgstr "" -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:69 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:67 msgid "Kubeconfig" msgstr "" -#: src/pages/outposts/OutpostForm.ts:58 +#: src/pages/outposts/OutpostForm.ts:63 msgid "LDAP (Technical preview)" msgstr "" -#: src/pages/providers/ldap/LDAPProviderForm.ts:101 +#: src/pages/providers/ldap/LDAPProviderForm.ts:99 msgid "LDAP DN under which bind requests and search requests can be made." msgstr "" -#: src/pages/admin-overview/AdminOverviewPage.ts:66 +#: src/pages/admin-overview/AdminOverviewPage.ts:81 msgid "LDAP Sync status" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:90 +#: src/pages/stages/prompt/PromptForm.ts:95 #: src/pages/stages/prompt/PromptListPage.ts:47 msgid "Label" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:94 +#: src/pages/stages/prompt/PromptForm.ts:99 msgid "Label shown next to/above the prompt." msgstr "" @@ -1704,11 +1704,11 @@ msgstr "" msgid "Launch" msgstr "" -#: src/pages/applications/ApplicationForm.ts:159 +#: src/pages/applications/ApplicationForm.ts:164 msgid "Launch URL" msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:60 +#: src/pages/stages/identification/IdentificationStageForm.ts:58 msgid "Let the user identify themselves with their username or Email address." msgstr "" @@ -1716,22 +1716,22 @@ msgstr "" msgid "Library" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:128 -#: src/pages/sources/plex/PlexSourceForm.ts:118 +#: src/pages/sources/oauth/OAuthSourceForm.ts:147 +#: src/pages/sources/plex/PlexSourceForm.ts:121 msgid "Link to a user with identical email address. Can have security implications when a source doesn't validate email addresses" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:134 -#: src/pages/sources/plex/PlexSourceForm.ts:124 +#: src/pages/sources/oauth/OAuthSourceForm.ts:153 +#: src/pages/sources/plex/PlexSourceForm.ts:127 msgid "Link to a user with identical username address. Can have security implications when a username is used with another source." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:125 -#: src/pages/sources/plex/PlexSourceForm.ts:115 +#: src/pages/sources/oauth/OAuthSourceForm.ts:144 +#: src/pages/sources/plex/PlexSourceForm.ts:118 msgid "Link users on unique identifier" msgstr "" -#: src/pages/sources/plex/PlexSourceForm.ts:170 +#: src/pages/sources/plex/PlexSourceForm.ts:173 msgid "Load servers" msgstr "" @@ -1759,72 +1759,72 @@ msgid "Loading" msgstr "" #: src/elements/Spinner.ts:29 -#: src/pages/applications/ApplicationForm.ts:106 -#: src/pages/events/RuleForm.ts:74 -#: src/pages/events/RuleForm.ts:90 -#: src/pages/flows/StageBindingForm.ts:89 -#: src/pages/flows/StageBindingForm.ts:106 -#: src/pages/groups/GroupForm.ts:77 -#: src/pages/groups/GroupForm.ts:127 -#: src/pages/outposts/OutpostForm.ts:75 -#: src/pages/outposts/OutpostForm.ts:97 -#: src/pages/outposts/OutpostForm.ts:108 -#: src/pages/outposts/ServiceConnectionDockerForm.ts:86 -#: src/pages/outposts/ServiceConnectionDockerForm.ts:102 -#: src/pages/policies/PolicyBindingForm.ts:156 -#: src/pages/policies/PolicyBindingForm.ts:172 -#: src/pages/policies/PolicyBindingForm.ts:188 +#: src/pages/applications/ApplicationForm.ts:111 +#: src/pages/events/RuleForm.ts:79 +#: src/pages/events/RuleForm.ts:95 +#: src/pages/flows/StageBindingForm.ts:94 +#: src/pages/flows/StageBindingForm.ts:111 +#: src/pages/groups/GroupForm.ts:82 +#: src/pages/groups/GroupForm.ts:132 +#: src/pages/outposts/OutpostForm.ts:80 +#: src/pages/outposts/OutpostForm.ts:102 +#: src/pages/outposts/OutpostForm.ts:113 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:84 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:100 +#: src/pages/policies/PolicyBindingForm.ts:157 +#: src/pages/policies/PolicyBindingForm.ts:173 +#: src/pages/policies/PolicyBindingForm.ts:189 #: src/pages/policies/PolicyTestForm.ts:71 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:88 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:108 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:86 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:106 #: src/pages/property-mappings/PropertyMappingTestForm.ts:61 -#: src/pages/providers/ldap/LDAPProviderForm.ts:72 -#: src/pages/providers/ldap/LDAPProviderForm.ts:86 +#: src/pages/providers/ldap/LDAPProviderForm.ts:70 +#: src/pages/providers/ldap/LDAPProviderForm.ts:84 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:74 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:185 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:207 #: src/pages/providers/proxy/ProxyProviderForm.ts:116 #: src/pages/providers/proxy/ProxyProviderForm.ts:168 -#: src/pages/providers/saml/SAMLProviderForm.ts:71 -#: src/pages/providers/saml/SAMLProviderForm.ts:133 -#: src/pages/providers/saml/SAMLProviderForm.ts:149 -#: src/pages/providers/saml/SAMLProviderForm.ts:175 -#: src/pages/providers/saml/SAMLProviderForm.ts:191 +#: src/pages/providers/saml/SAMLProviderForm.ts:70 +#: src/pages/providers/saml/SAMLProviderForm.ts:132 +#: src/pages/providers/saml/SAMLProviderForm.ts:148 +#: src/pages/providers/saml/SAMLProviderForm.ts:174 +#: src/pages/providers/saml/SAMLProviderForm.ts:190 #: src/pages/providers/saml/SAMLProviderImportForm.ts:55 -#: src/pages/sources/ldap/LDAPSourceForm.ts:164 -#: src/pages/sources/ldap/LDAPSourceForm.ts:190 -#: src/pages/sources/oauth/OAuthSourceForm.ts:200 -#: src/pages/sources/oauth/OAuthSourceForm.ts:228 -#: src/pages/sources/oauth/OAuthSourceForm.ts:249 -#: src/pages/sources/plex/PlexSourceForm.ts:198 -#: src/pages/sources/plex/PlexSourceForm.ts:219 -#: src/pages/sources/saml/SAMLSourceForm.ts:126 -#: src/pages/sources/saml/SAMLSourceForm.ts:240 -#: src/pages/sources/saml/SAMLSourceForm.ts:261 -#: src/pages/sources/saml/SAMLSourceForm.ts:282 -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:90 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:96 +#: src/pages/sources/ldap/LDAPSourceForm.ts:162 +#: src/pages/sources/ldap/LDAPSourceForm.ts:188 +#: src/pages/sources/oauth/OAuthSourceForm.ts:219 +#: src/pages/sources/oauth/OAuthSourceForm.ts:247 +#: src/pages/sources/oauth/OAuthSourceForm.ts:268 +#: src/pages/sources/plex/PlexSourceForm.ts:201 +#: src/pages/sources/plex/PlexSourceForm.ts:222 +#: src/pages/sources/saml/SAMLSourceForm.ts:124 +#: src/pages/sources/saml/SAMLSourceForm.ts:238 +#: src/pages/sources/saml/SAMLSourceForm.ts:259 +#: src/pages/sources/saml/SAMLSourceForm.ts:280 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:88 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:94 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:131 -#: src/pages/stages/email/EmailStageForm.ts:170 -#: src/pages/stages/identification/IdentificationStageForm.ts:119 -#: src/pages/stages/identification/IdentificationStageForm.ts:137 -#: src/pages/stages/password/PasswordStageForm.ts:106 -#: src/pages/stages/prompt/PromptStageForm.ts:85 -#: src/pages/stages/prompt/PromptStageForm.ts:118 +#: src/pages/stages/email/EmailStageForm.ts:171 +#: src/pages/stages/identification/IdentificationStageForm.ts:117 +#: src/pages/stages/identification/IdentificationStageForm.ts:135 +#: src/pages/stages/password/PasswordStageForm.ts:104 +#: src/pages/stages/prompt/PromptStageForm.ts:83 +#: src/pages/stages/prompt/PromptStageForm.ts:116 msgid "Loading..." msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:62 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:63 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:60 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:61 #: src/pages/outposts/ServiceConnectionListPage.ts:55 msgid "Local" msgstr "" -#: src/pages/stages/user_login/UserLoginStageForm.ts:52 +#: src/pages/stages/user_login/UserLoginStageForm.ts:50 msgid "Log the currently pending user in." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:88 +#: src/pages/sources/ldap/LDAPSourceForm.ts:86 msgid "Login password is synced from LDAP into authentik automatically. Enable this option only to write password changes in authentik back to LDAP." msgstr "" @@ -1836,7 +1836,7 @@ msgstr "" msgid "Logins" msgstr "" -#: src/pages/admin-overview/AdminOverviewPage.ts:100 +#: src/pages/admin-overview/AdminOverviewPage.ts:106 #: src/pages/applications/ApplicationViewPage.ts:128 msgid "Logins over the last 24 hours" msgstr "" @@ -1853,27 +1853,27 @@ msgstr "" msgid "Long-running operations which authentik executes in the background." msgstr "" -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:90 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:88 msgid "Match created events with this action type. When left empty, all action types will be matched." msgstr "" -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:110 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:108 msgid "Match events created by selected application. When left empty, all applications are matched." msgstr "" -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:96 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:94 msgid "Matches Event's Client IP (strict matching, for network matching use an Expression Policy." msgstr "" -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:54 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:52 msgid "Matches an event against a set of criteria. If any of the configured values match, the policy passes." msgstr "" -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:78 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:76 msgid "Maximum age (in days)" msgstr "" -#: src/pages/groups/GroupForm.ts:81 +#: src/pages/groups/GroupForm.ts:86 #: src/pages/groups/GroupListPage.ts:47 msgid "Members" msgstr "" @@ -1891,23 +1891,23 @@ msgstr "" msgid "Metadata" msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:98 +#: src/pages/policies/password/PasswordPolicyForm.ts:96 msgid "Minimum amount of Lowercase Characters" msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:104 +#: src/pages/policies/password/PasswordPolicyForm.ts:102 msgid "Minimum amount of Symbols Characters" msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:92 +#: src/pages/policies/password/PasswordPolicyForm.ts:90 msgid "Minimum amount of Uppercase Characters" msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:86 +#: src/pages/policies/password/PasswordPolicyForm.ts:84 msgid "Minimum length" msgstr "" -#: src/pages/events/TransportForm.ts:79 +#: src/pages/events/TransportForm.ts:84 #: src/pages/events/TransportListPage.ts:47 #: src/pages/stages/consent/ConsentStageForm.ts:68 msgid "Mode" @@ -1921,91 +1921,95 @@ msgstr "" msgid "Monitor" msgstr "" -#: src/pages/applications/ApplicationForm.ts:86 +#: src/pages/LibraryPage.ts:93 +msgid "My Applications" +msgstr "" + +#: src/pages/applications/ApplicationForm.ts:91 #: src/pages/applications/ApplicationListPage.ts:58 -#: src/pages/crypto/CertificateKeyPairForm.ts:45 +#: src/pages/crypto/CertificateKeyPairForm.ts:50 #: src/pages/crypto/CertificateKeyPairListPage.ts:51 #: src/pages/events/EventInfo.ts:51 -#: src/pages/events/RuleForm.ts:59 +#: src/pages/events/RuleForm.ts:64 #: src/pages/events/RuleListPage.ts:47 -#: src/pages/events/TransportForm.ts:73 +#: src/pages/events/TransportForm.ts:78 #: src/pages/events/TransportListPage.ts:46 #: src/pages/flows/BoundStagesList.ts:39 -#: src/pages/flows/FlowForm.ts:81 +#: src/pages/flows/FlowForm.ts:86 #: src/pages/flows/FlowListPage.ts:47 -#: src/pages/groups/GroupForm.ts:53 +#: src/pages/groups/GroupForm.ts:58 #: src/pages/groups/GroupListPage.ts:45 #: src/pages/groups/MemberSelectModal.ts:45 -#: src/pages/outposts/OutpostForm.ts:47 +#: src/pages/outposts/OutpostForm.ts:52 #: src/pages/outposts/OutpostListPage.ts:50 -#: src/pages/outposts/ServiceConnectionDockerForm.ts:53 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:54 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:51 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:52 #: src/pages/outposts/ServiceConnectionListPage.ts:53 #: src/pages/policies/PolicyListPage.ts:56 -#: src/pages/policies/dummy/DummyPolicyForm.ts:56 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:57 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:56 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:57 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:57 -#: src/pages/policies/password/PasswordPolicyForm.ts:56 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:56 -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:52 +#: src/pages/policies/dummy/DummyPolicyForm.ts:54 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:55 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:54 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:55 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:55 +#: src/pages/policies/password/PasswordPolicyForm.ts:54 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:54 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:50 #: src/pages/property-mappings/PropertyMappingListPage.ts:54 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:52 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:52 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:50 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:50 #: src/pages/providers/ProviderListPage.ts:53 -#: src/pages/providers/ldap/LDAPProviderForm.ts:54 +#: src/pages/providers/ldap/LDAPProviderForm.ts:52 #: src/pages/providers/ldap/LDAPProviderViewPage.ts:64 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:56 #: src/pages/providers/oauth2/OAuth2ProviderViewPage.ts:73 #: src/pages/providers/proxy/ProxyProviderForm.ts:98 #: src/pages/providers/proxy/ProxyProviderViewPage.ts:64 -#: src/pages/providers/saml/SAMLProviderForm.ts:53 +#: src/pages/providers/saml/SAMLProviderForm.ts:52 #: src/pages/providers/saml/SAMLProviderImportForm.ts:38 #: src/pages/providers/saml/SAMLProviderViewPage.ts:66 #: src/pages/sources/SourcesListPage.ts:52 -#: src/pages/sources/ldap/LDAPSourceForm.ts:54 +#: src/pages/sources/ldap/LDAPSourceForm.ts:52 #: src/pages/sources/ldap/LDAPSourceViewPage.ts:64 -#: src/pages/sources/oauth/OAuthSourceForm.ts:100 +#: src/pages/sources/oauth/OAuthSourceForm.ts:108 #: src/pages/sources/oauth/OAuthSourceViewPage.ts:64 -#: src/pages/sources/plex/PlexSourceForm.ts:90 +#: src/pages/sources/plex/PlexSourceForm.ts:93 #: src/pages/sources/plex/PlexSourceViewPage.ts:63 -#: src/pages/sources/saml/SAMLSourceForm.ts:54 +#: src/pages/sources/saml/SAMLSourceForm.ts:52 #: src/pages/sources/saml/SAMLSourceViewPage.ts:66 #: src/pages/stages/StageListPage.ts:65 -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:57 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:56 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:55 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:54 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:64 -#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:54 -#: src/pages/stages/captcha/CaptchaStageForm.ts:55 +#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:52 +#: src/pages/stages/captcha/CaptchaStageForm.ts:53 #: src/pages/stages/consent/ConsentStageForm.ts:57 -#: src/pages/stages/deny/DenyStageForm.ts:54 -#: src/pages/stages/dummy/DummyStageForm.ts:54 -#: src/pages/stages/email/EmailStageForm.ts:122 -#: src/pages/stages/identification/IdentificationStageForm.ts:63 -#: src/pages/stages/invitation/InvitationStageForm.ts:56 -#: src/pages/stages/password/PasswordStageForm.ts:63 -#: src/pages/stages/prompt/PromptStageForm.ts:58 -#: src/pages/stages/user_delete/UserDeleteStageForm.ts:55 -#: src/pages/stages/user_login/UserLoginStageForm.ts:55 -#: src/pages/stages/user_logout/UserLogoutStageForm.ts:54 -#: src/pages/stages/user_write/UserWriteStageForm.ts:55 +#: src/pages/stages/deny/DenyStageForm.ts:52 +#: src/pages/stages/dummy/DummyStageForm.ts:52 +#: src/pages/stages/email/EmailStageForm.ts:123 +#: src/pages/stages/identification/IdentificationStageForm.ts:61 +#: src/pages/stages/invitation/InvitationStageForm.ts:54 +#: src/pages/stages/password/PasswordStageForm.ts:61 +#: src/pages/stages/prompt/PromptStageForm.ts:56 +#: src/pages/stages/user_delete/UserDeleteStageForm.ts:53 +#: src/pages/stages/user_login/UserLoginStageForm.ts:53 +#: src/pages/stages/user_logout/UserLogoutStageForm.ts:52 +#: src/pages/stages/user_write/UserWriteStageForm.ts:53 #: src/pages/user-settings/UserDetailsPage.ts:64 -#: src/pages/users/UserForm.ts:54 +#: src/pages/users/UserForm.ts:59 #: src/pages/users/UserListPage.ts:54 #: src/pages/users/UserViewPage.ts:92 msgid "Name" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:87 +#: src/pages/stages/prompt/PromptForm.ts:92 msgid "Name of the form field, also used to store the value." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:147 +#: src/pages/sources/saml/SAMLSourceForm.ts:145 msgid "NameID Policy" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:180 +#: src/pages/providers/saml/SAMLProviderForm.ts:179 msgid "NameID Property Mapping" msgstr "" @@ -2113,7 +2117,7 @@ msgstr "" msgid "Not you?" msgstr "" -#: src/pages/events/RuleForm.ts:51 +#: src/pages/events/RuleForm.ts:56 msgid "Notice" msgstr "" @@ -2139,7 +2143,7 @@ msgstr "" msgid "Notifications Transport" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:57 +#: src/pages/stages/prompt/PromptForm.ts:62 msgid "Number" msgstr "" @@ -2156,11 +2160,11 @@ msgstr "" msgid "Object" msgstr "" -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:58 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:56 msgid "Object field" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:229 +#: src/pages/sources/ldap/LDAPSourceForm.ts:227 msgid "Object uniqueness field" msgstr "" @@ -2174,11 +2178,11 @@ msgstr "" msgid "On behalf of {0}" msgstr "" -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:87 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:85 msgid "Only fail the policy, don't invalidate user's password." msgstr "" -#: src/pages/events/TransportForm.ts:102 +#: src/pages/events/TransportForm.ts:107 msgid "Only send notification once, for example when sending a webhook into a chat channel." msgstr "" @@ -2194,23 +2198,23 @@ msgstr "" msgid "OpenID Configuration URL" msgstr "" -#: src/pages/crypto/CertificateKeyPairForm.ts:63 +#: src/pages/crypto/CertificateKeyPairForm.ts:68 msgid "Optional Private Key. If this is set, you can use this keypair for encryption." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:90 +#: src/pages/sources/saml/SAMLSourceForm.ts:88 msgid "Optional URL if the IDP supports Single-Logout." msgstr "" -#: src/pages/stages/invitation/InvitationForm.ts:56 +#: src/pages/stages/invitation/InvitationForm.ts:61 msgid "Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON." msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:121 +#: src/pages/stages/identification/IdentificationStageForm.ts:119 msgid "Optional enrollment flow, which is linked at the bottom of the page." msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:139 +#: src/pages/stages/identification/IdentificationStageForm.ts:137 msgid "Optional recovery flow, which is linked at the bottom of the page." msgstr "" @@ -2218,24 +2222,24 @@ msgstr "" msgid "Optional, comma-separated SubjectAlt Names." msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:116 +#: src/pages/stages/prompt/PromptForm.ts:121 msgid "Optionally pre-fill the input value" msgstr "" -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:71 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:69 msgid "Optionally set the 'FriendlyName' value of the Assertion attribute." msgstr "" #: src/pages/flows/BoundStagesList.ts:38 -#: src/pages/flows/StageBindingForm.ts:110 +#: src/pages/flows/StageBindingForm.ts:115 #: src/pages/policies/BoundPoliciesList.ts:42 -#: src/pages/policies/PolicyBindingForm.ts:203 -#: src/pages/stages/prompt/PromptForm.ts:119 +#: src/pages/policies/PolicyBindingForm.ts:204 +#: src/pages/stages/prompt/PromptForm.ts:124 #: src/pages/stages/prompt/PromptListPage.ts:49 msgid "Order" msgstr "" -#: src/pages/admin-overview/graphs/OutpostStatusCard.ts:71 +#: src/pages/admin-overview/charts/OutpostStatusChart.ts:71 msgid "Outdated outposts" msgstr "" @@ -2251,7 +2255,7 @@ msgstr "" msgid "Outpost Service-connection" msgstr "" -#: src/pages/admin-overview/AdminOverviewPage.ts:71 +#: src/pages/admin-overview/AdminOverviewPage.ts:66 msgid "Outpost status" msgstr "" @@ -2279,16 +2283,16 @@ msgstr "" msgid "Overview" msgstr "" -#: src/pages/crypto/CertificateKeyPairForm.ts:56 +#: src/pages/crypto/CertificateKeyPairForm.ts:61 msgid "PEM-encoded Certificate data." msgstr "" -#: src/pages/groups/GroupForm.ts:68 +#: src/pages/groups/GroupForm.ts:73 #: src/pages/groups/GroupListPage.ts:46 msgid "Parent" msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:81 +#: src/pages/policies/dummy/DummyPolicyForm.ts:79 msgid "Pass policy?" msgstr "" @@ -2301,20 +2305,20 @@ msgstr "" msgid "Password" msgstr "" -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:79 -#: src/pages/policies/password/PasswordPolicyForm.ts:78 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:77 +#: src/pages/policies/password/PasswordPolicyForm.ts:76 msgid "Password field" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:54 +#: src/pages/stages/prompt/PromptForm.ts:59 msgid "Password: Masked input, password is validated against sources. Policies still have to be applied to this Stage. If two of these are used in the same stage, they are ensured to be identical." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:152 +#: src/pages/sources/saml/SAMLSourceForm.ts:150 msgid "Persistent" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:113 +#: src/pages/stages/prompt/PromptForm.ts:118 msgid "Placeholder" msgstr "" @@ -2334,9 +2338,9 @@ msgstr "" msgid "Policies" msgstr "" -#: src/pages/policies/PolicyBindingForm.ts:107 -#: src/pages/policies/PolicyBindingForm.ts:116 -#: src/pages/policies/PolicyBindingForm.ts:147 +#: src/pages/policies/PolicyBindingForm.ts:108 +#: src/pages/policies/PolicyBindingForm.ts:117 +#: src/pages/policies/PolicyBindingForm.ts:148 #: src/pages/policies/PolicyListPage.ts:108 msgid "Policy" msgstr "" @@ -2360,10 +2364,10 @@ msgstr "" msgid "Policy binding" msgstr "" -#: src/pages/applications/ApplicationForm.ts:141 +#: src/pages/applications/ApplicationForm.ts:146 #: src/pages/applications/ApplicationViewPage.ts:81 -#: src/pages/flows/FlowForm.ts:101 -#: src/pages/flows/StageBindingForm.ts:136 +#: src/pages/flows/FlowForm.ts:106 +#: src/pages/flows/StageBindingForm.ts:141 msgid "Policy engine mode" msgstr "" @@ -2371,25 +2375,25 @@ msgstr "" msgid "Policy {0}" msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:74 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:75 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:74 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:75 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:75 -#: src/pages/policies/password/PasswordPolicyForm.ts:74 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:74 +#: src/pages/policies/dummy/DummyPolicyForm.ts:72 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:73 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:72 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:73 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:73 +#: src/pages/policies/password/PasswordPolicyForm.ts:72 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:72 msgid "Policy-specific settings" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:102 +#: src/pages/providers/saml/SAMLProviderForm.ts:101 msgid "Post" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:110 +#: src/pages/sources/saml/SAMLSourceForm.ts:108 msgid "Post binding" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:107 +#: src/pages/sources/saml/SAMLSourceForm.ts:105 msgid "Post binding (auto-submit)" msgstr "" @@ -2397,12 +2401,12 @@ msgstr "" msgid "Powered by authentik" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:224 +#: src/pages/sources/saml/SAMLSourceForm.ts:222 msgid "Pre-authentication flow" msgstr "" -#: src/pages/crypto/CertificateKeyPairForm.ts:61 -#: src/pages/stages/captcha/CaptchaStageForm.ts:73 +#: src/pages/crypto/CertificateKeyPairForm.ts:66 +#: src/pages/stages/captcha/CaptchaStageForm.ts:71 msgid "Private Key" msgstr "" @@ -2410,11 +2414,11 @@ msgstr "" msgid "Private key available?" msgstr "" -#: src/pages/stages/captcha/CaptchaStageForm.ts:78 +#: src/pages/stages/captcha/CaptchaStageForm.ts:76 msgid "Private key, acquired from https://www.google.com/recaptcha/intro/v3.html." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:80 +#: src/pages/sources/oauth/OAuthSourceForm.ts:81 msgid "Profile URL" msgstr "" @@ -2441,25 +2445,25 @@ msgstr "" msgid "Property Mappings" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:155 +#: src/pages/providers/saml/SAMLProviderForm.ts:154 msgid "Property mappings" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:192 +#: src/pages/sources/ldap/LDAPSourceForm.ts:190 msgid "Property mappings used to group creation." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:166 +#: src/pages/sources/ldap/LDAPSourceForm.ts:164 msgid "Property mappings used to user creation." msgstr "" -#: src/pages/providers/ldap/LDAPProviderForm.ts:93 +#: src/pages/providers/ldap/LDAPProviderForm.ts:91 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:81 #: src/pages/providers/proxy/ProxyProviderForm.ts:123 -#: src/pages/providers/saml/SAMLProviderForm.ts:78 -#: src/pages/sources/oauth/OAuthSourceForm.ts:144 -#: src/pages/sources/plex/PlexSourceForm.ts:134 -#: src/pages/sources/saml/SAMLSourceForm.ts:76 +#: src/pages/providers/saml/SAMLProviderForm.ts:77 +#: src/pages/sources/oauth/OAuthSourceForm.ts:163 +#: src/pages/sources/plex/PlexSourceForm.ts:137 +#: src/pages/sources/saml/SAMLSourceForm.ts:74 msgid "Protocol settings" msgstr "" @@ -2469,9 +2473,10 @@ msgstr "" #: src/elements/oauth/UserCodeList.ts:29 #: src/elements/oauth/UserRefreshList.ts:29 -#: src/pages/applications/ApplicationForm.ts:100 +#: src/pages/applications/ApplicationForm.ts:105 #: src/pages/applications/ApplicationListPage.ts:60 #: src/pages/applications/ApplicationViewPage.ts:68 +#: src/pages/providers/ProviderListPage.ts:92 msgid "Provider" msgstr "" @@ -2480,18 +2485,18 @@ msgstr "" msgid "Provider Type" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:161 +#: src/pages/sources/oauth/OAuthSourceForm.ts:180 msgid "Provider type" msgstr "" #: src/interfaces/AdminInterface.ts:44 -#: src/pages/outposts/OutpostForm.ts:83 +#: src/pages/outposts/OutpostForm.ts:88 #: src/pages/outposts/OutpostListPage.ts:51 #: src/pages/providers/ProviderListPage.ts:35 msgid "Providers" msgstr "" -#: src/pages/outposts/OutpostForm.ts:57 +#: src/pages/outposts/OutpostForm.ts:62 msgid "Proxy" msgstr "" @@ -2499,15 +2504,15 @@ msgstr "" msgid "Public" msgstr "" -#: src/pages/stages/captcha/CaptchaStageForm.ts:66 +#: src/pages/stages/captcha/CaptchaStageForm.ts:64 msgid "Public Key" msgstr "" -#: src/pages/stages/captcha/CaptchaStageForm.ts:70 +#: src/pages/stages/captcha/CaptchaStageForm.ts:68 msgid "Public key, acquired from https://www.google.com/recaptcha/intro/v3.html." msgstr "" -#: src/pages/applications/ApplicationForm.ts:175 +#: src/pages/applications/ApplicationForm.ts:180 msgid "Publisher" msgstr "" @@ -2519,35 +2524,35 @@ msgstr "" msgid "RSA Key" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:244 -#: src/pages/sources/saml/SAMLSourceForm.ts:200 +#: src/pages/providers/saml/SAMLProviderForm.ts:243 +#: src/pages/sources/saml/SAMLSourceForm.ts:198 msgid "RSA-SHA1" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:247 -#: src/pages/sources/saml/SAMLSourceForm.ts:203 +#: src/pages/providers/saml/SAMLProviderForm.ts:246 +#: src/pages/sources/saml/SAMLSourceForm.ts:201 msgid "RSA-SHA256" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:250 -#: src/pages/sources/saml/SAMLSourceForm.ts:206 +#: src/pages/providers/saml/SAMLProviderForm.ts:249 +#: src/pages/sources/saml/SAMLSourceForm.ts:204 msgid "RSA-SHA384" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:253 -#: src/pages/sources/saml/SAMLSourceForm.ts:209 +#: src/pages/providers/saml/SAMLProviderForm.ts:252 +#: src/pages/sources/saml/SAMLSourceForm.ts:207 msgid "RSA-SHA512" msgstr "" -#: src/pages/flows/StageBindingForm.ts:130 +#: src/pages/flows/StageBindingForm.ts:135 msgid "Re-evaluate policies" msgstr "" -#: src/pages/flows/FlowForm.ts:67 +#: src/pages/flows/FlowForm.ts:72 msgid "Recovery" msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:124 +#: src/pages/stages/identification/IdentificationStageForm.ts:122 msgid "Recovery flow" msgstr "" @@ -2555,7 +2560,7 @@ msgstr "" msgid "Recovery keys" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:99 +#: src/pages/providers/saml/SAMLProviderForm.ts:98 msgid "Redirect" msgstr "" @@ -2567,7 +2572,7 @@ msgstr "" msgid "Redirect URIs/Origins" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:104 +#: src/pages/sources/saml/SAMLSourceForm.ts:102 msgid "Redirect binding" msgstr "" @@ -2596,7 +2601,7 @@ msgstr "" msgid "Reload" msgstr "" -#: src/pages/stages/user_logout/UserLogoutStageForm.ts:51 +#: src/pages/stages/user_logout/UserLogoutStageForm.ts:49 msgid "Remove the user from the current session." msgstr "" @@ -2609,16 +2614,16 @@ msgstr "" msgid "Request has been denied." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:87 +#: src/pages/sources/oauth/OAuthSourceForm.ts:88 msgid "Request token URL" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:108 +#: src/pages/stages/prompt/PromptForm.ts:113 msgid "Required" msgstr "" #: src/pages/user-settings/UserDetailsPage.ts:61 -#: src/pages/users/UserForm.ts:51 +#: src/pages/users/UserForm.ts:56 msgid "Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only." msgstr "" @@ -2658,52 +2663,52 @@ msgstr "" msgid "Return to device picker" msgstr "" -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:58 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:56 msgid "SAML Attribute Name" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:225 -#: src/pages/sources/saml/SAMLSourceForm.ts:181 +#: src/pages/providers/saml/SAMLProviderForm.ts:224 +#: src/pages/sources/saml/SAMLSourceForm.ts:179 msgid "SHA1" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:228 -#: src/pages/sources/saml/SAMLSourceForm.ts:184 +#: src/pages/providers/saml/SAMLProviderForm.ts:227 +#: src/pages/sources/saml/SAMLSourceForm.ts:182 msgid "SHA256" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:231 -#: src/pages/sources/saml/SAMLSourceForm.ts:187 +#: src/pages/providers/saml/SAMLProviderForm.ts:230 +#: src/pages/sources/saml/SAMLSourceForm.ts:185 msgid "SHA384" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:234 -#: src/pages/sources/saml/SAMLSourceForm.ts:190 +#: src/pages/providers/saml/SAMLProviderForm.ts:233 +#: src/pages/sources/saml/SAMLSourceForm.ts:188 msgid "SHA512" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:87 +#: src/pages/sources/saml/SAMLSourceForm.ts:85 #: src/pages/sources/saml/SAMLSourceViewPage.ts:82 msgid "SLO URL" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:62 +#: src/pages/stages/email/EmailStageForm.ts:63 msgid "SMTP Host" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:79 +#: src/pages/stages/email/EmailStageForm.ts:80 msgid "SMTP Password" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:68 +#: src/pages/stages/email/EmailStageForm.ts:69 msgid "SMTP Port" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:74 +#: src/pages/stages/email/EmailStageForm.ts:75 msgid "SMTP Username" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:80 +#: src/pages/sources/saml/SAMLSourceForm.ts:78 #: src/pages/sources/saml/SAMLSourceViewPage.ts:74 msgid "SSO URL" msgstr "" @@ -2712,11 +2717,11 @@ msgstr "" msgid "Same identifier is used for all providers" msgstr "" -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:58 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:56 msgid "Scope name" msgstr "" -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:62 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:60 msgid "Scope which the client can specify to access these properties." msgstr "" @@ -2734,14 +2739,14 @@ msgstr "" msgid "Secret:" msgstr "" -#: src/pages/policies/expression/ExpressionPolicyForm.ts:87 -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:73 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:83 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:80 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:85 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:71 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:81 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:78 msgid "See documentation for a list of all variables." msgstr "" -#: src/pages/applications/ApplicationForm.ts:108 +#: src/pages/applications/ApplicationForm.ts:113 msgid "Select a provider that this application should use. Alternatively, create a new provider." msgstr "" @@ -2765,23 +2770,23 @@ msgstr "" msgid "Select which scopes can be used by the client. The client stil has to specify the scope to access the data." msgstr "" -#: src/pages/sources/plex/PlexSourceForm.ts:164 +#: src/pages/sources/plex/PlexSourceForm.ts:167 msgid "Select which server a user has to be a member of to be allowed to authenticate." msgstr "" -#: src/pages/events/RuleForm.ts:92 +#: src/pages/events/RuleForm.ts:97 msgid "Select which transports should be used to notify the user. If none are selected, the notification will only be shown in the authentik UI." msgstr "" -#: src/pages/stages/prompt/PromptStageForm.ts:120 +#: src/pages/stages/prompt/PromptStageForm.ts:118 msgid "Selected policies are executed when the stage is submitted to validate the data." msgstr "" -#: src/pages/outposts/OutpostForm.ts:77 +#: src/pages/outposts/OutpostForm.ts:82 msgid "Selecting a service-connection enables the management of the outpost by authentik." msgstr "" -#: src/pages/stages/password/PasswordStageForm.ts:85 +#: src/pages/stages/password/PasswordStageForm.ts:83 msgid "Selection of backends to test the password against." msgstr "" @@ -2793,7 +2798,7 @@ msgstr "" msgid "Send notifications whenever a specific Event is created and matched by policies." msgstr "" -#: src/pages/events/TransportForm.ts:99 +#: src/pages/events/TransportForm.ts:104 msgid "Send once" msgstr "" @@ -2801,11 +2806,11 @@ msgstr "" msgid "Sent to group" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:69 +#: src/pages/stages/prompt/PromptForm.ts:74 msgid "Separator: Static Separator Line" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:104 +#: src/pages/sources/ldap/LDAPSourceForm.ts:102 #: src/pages/sources/ldap/LDAPSourceViewPage.ts:72 msgid "Server URI" msgstr "" @@ -2818,23 +2823,23 @@ msgstr "" msgid "Service Connections" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:94 +#: src/pages/providers/saml/SAMLProviderForm.ts:93 msgid "Service Provider Binding" msgstr "" -#: src/pages/outposts/OutpostForm.ts:62 +#: src/pages/outposts/OutpostForm.ts:67 msgid "Service connection" msgstr "" -#: src/pages/stages/user_login/UserLoginStageForm.ts:66 +#: src/pages/stages/user_login/UserLoginStageForm.ts:64 msgid "Session duration" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:216 +#: src/pages/providers/saml/SAMLProviderForm.ts:215 msgid "Session not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3)." msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:212 +#: src/pages/providers/saml/SAMLProviderForm.ts:211 msgid "Session valid not on or after" msgstr "" @@ -2846,28 +2851,28 @@ msgstr "" msgid "Set a custom HTTP-Basic Authentication header based on values from authentik." msgstr "" -#: src/pages/groups/GroupForm.ts:139 -#: src/pages/outposts/OutpostForm.ts:121 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:73 +#: src/pages/groups/GroupForm.ts:144 +#: src/pages/outposts/OutpostForm.ts:127 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:71 #: src/pages/policies/PolicyTestForm.ts:79 -#: src/pages/users/UserForm.ts:82 +#: src/pages/users/UserForm.ts:87 msgid "Set custom attributes using YAML or JSON." msgstr "" -#: src/pages/events/RuleForm.ts:96 +#: src/pages/events/RuleForm.ts:101 #: src/pages/events/RuleListPage.ts:48 msgid "Severity" msgstr "" -#: src/pages/stages/prompt/PromptStageForm.ts:55 +#: src/pages/stages/prompt/PromptStageForm.ts:53 msgid "Show arbitrary input fields to the user, for example during enrollment. Data is saved in the flow context under the 'prompt_data' variable." msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:100 +#: src/pages/stages/identification/IdentificationStageForm.ts:98 msgid "Show matched user" msgstr "" -#: src/pages/flows/FlowForm.ts:91 +#: src/pages/flows/FlowForm.ts:96 msgid "Shown as the Title in Flow pages." msgstr "" @@ -2875,16 +2880,16 @@ msgstr "" msgid "Sign up." msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:239 -#: src/pages/sources/saml/SAMLSourceForm.ts:195 +#: src/pages/providers/saml/SAMLProviderForm.ts:238 +#: src/pages/sources/saml/SAMLSourceForm.ts:193 msgid "Signature algorithm" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:121 +#: src/pages/providers/saml/SAMLProviderForm.ts:120 msgid "Signing Certificate" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:115 +#: src/pages/sources/saml/SAMLSourceForm.ts:113 msgid "Signing keypair" msgstr "" @@ -2892,7 +2897,7 @@ msgstr "" msgid "Single Prompts that can be used for Prompt Stages." msgstr "" -#: src/pages/stages/invitation/InvitationForm.ts:62 +#: src/pages/stages/invitation/InvitationForm.ts:67 msgid "Single use" msgstr "" @@ -2900,13 +2905,13 @@ msgstr "" msgid "Skip path regex" msgstr "" -#: src/pages/applications/ApplicationForm.ts:93 +#: src/pages/applications/ApplicationForm.ts:98 #: src/pages/applications/ApplicationListPage.ts:59 -#: src/pages/flows/FlowForm.ts:94 -#: src/pages/sources/ldap/LDAPSourceForm.ts:60 -#: src/pages/sources/oauth/OAuthSourceForm.ts:106 -#: src/pages/sources/plex/PlexSourceForm.ts:96 -#: src/pages/sources/saml/SAMLSourceForm.ts:60 +#: src/pages/flows/FlowForm.ts:99 +#: src/pages/sources/ldap/LDAPSourceForm.ts:58 +#: src/pages/sources/oauth/OAuthSourceForm.ts:114 +#: src/pages/sources/plex/PlexSourceForm.ts:99 +#: src/pages/sources/saml/SAMLSourceForm.ts:58 msgid "Slug" msgstr "" @@ -2914,7 +2919,6 @@ msgstr "" msgid "Something went wrong! Please try again later." msgstr "" -#: src/pages/providers/ProviderListPage.ts:92 #: src/pages/sources/SourcesListPage.ts:88 msgid "Source" msgstr "" @@ -2932,7 +2936,7 @@ msgstr "" msgid "Sources of identities, which can either be synced into authentik's database, like LDAP, or can be used by users to authenticate and enroll themselves, like OAuth and social logins" msgstr "" -#: src/pages/flows/StageBindingForm.ts:98 +#: src/pages/flows/StageBindingForm.ts:103 msgid "Stage" msgstr "" @@ -2940,7 +2944,7 @@ msgstr "" msgid "Stage Bindings" msgstr "" -#: src/pages/flows/FlowForm.ts:70 +#: src/pages/flows/FlowForm.ts:75 msgid "Stage Configuration" msgstr "" @@ -2952,15 +2956,15 @@ msgstr "" msgid "Stage used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again." msgstr "" -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:53 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:51 msgid "Stage used to configure a TOTP authenticator (i.e. Authy/Google Authenticator)." msgstr "" -#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:51 +#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:49 msgid "Stage used to configure a WebAutnn authenticator (i.e. Yubikey, FaceID/Windows Hello)." msgstr "" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:54 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:52 msgid "Stage used to configure a static authenticator (i.e. static tokens). This stage should be used for configuration flows." msgstr "" @@ -2968,17 +2972,17 @@ msgstr "" msgid "Stage used to validate any authenticator. This stage should be used during authentication or authorization flows." msgstr "" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:64 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:63 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:62 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:61 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:71 -#: src/pages/stages/captcha/CaptchaStageForm.ts:62 +#: src/pages/stages/captcha/CaptchaStageForm.ts:60 #: src/pages/stages/consent/ConsentStageForm.ts:64 -#: src/pages/stages/email/EmailStageForm.ts:129 -#: src/pages/stages/identification/IdentificationStageForm.ts:70 -#: src/pages/stages/invitation/InvitationStageForm.ts:63 -#: src/pages/stages/password/PasswordStageForm.ts:70 -#: src/pages/stages/prompt/PromptStageForm.ts:65 -#: src/pages/stages/user_login/UserLoginStageForm.ts:62 +#: src/pages/stages/email/EmailStageForm.ts:130 +#: src/pages/stages/identification/IdentificationStageForm.ts:68 +#: src/pages/stages/invitation/InvitationStageForm.ts:61 +#: src/pages/stages/password/PasswordStageForm.ts:68 +#: src/pages/stages/prompt/PromptStageForm.ts:63 +#: src/pages/stages/user_login/UserLoginStageForm.ts:60 msgid "Stage-specific settings" msgstr "" @@ -3005,11 +3009,11 @@ msgstr "" msgid "Static tokens" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:75 +#: src/pages/stages/prompt/PromptForm.ts:80 msgid "Static: Static value, displayed as-is." msgstr "" -#: src/pages/stages/deny/DenyStageForm.ts:51 +#: src/pages/stages/deny/DenyStageForm.ts:49 msgid "Statically deny the flow. To use this stage effectively, disable *Evaluate on plan* on the respective binding." msgstr "" @@ -3031,7 +3035,7 @@ msgstr "" msgid "Stop impersonation" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:152 +#: src/pages/stages/email/EmailStageForm.ts:153 msgid "Subject" msgstr "" @@ -3051,107 +3055,107 @@ msgstr "" msgid "Successfully copied TOTP Config." msgstr "" -#: src/pages/applications/ApplicationForm.ts:55 +#: src/pages/applications/ApplicationForm.ts:60 msgid "Successfully created application." msgstr "" -#: src/pages/flows/StageBindingForm.ts:39 -#: src/pages/policies/PolicyBindingForm.ts:64 +#: src/pages/flows/StageBindingForm.ts:44 +#: src/pages/policies/PolicyBindingForm.ts:65 msgid "Successfully created binding." msgstr "" -#: src/pages/crypto/CertificateKeyPairForm.ts:38 +#: src/pages/crypto/CertificateKeyPairForm.ts:43 msgid "Successfully created certificate-key pair." msgstr "" -#: src/pages/flows/FlowForm.ts:48 +#: src/pages/flows/FlowForm.ts:53 msgid "Successfully created flow." msgstr "" -#: src/pages/groups/GroupForm.ts:46 +#: src/pages/groups/GroupForm.ts:51 msgid "Successfully created group." msgstr "" -#: src/pages/stages/invitation/InvitationForm.ts:39 +#: src/pages/stages/invitation/InvitationForm.ts:44 msgid "Successfully created invitation." msgstr "" -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:45 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:45 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:45 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:43 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:43 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:43 msgid "Successfully created mapping." msgstr "" -#: src/pages/outposts/OutpostForm.ts:40 +#: src/pages/outposts/OutpostForm.ts:45 msgid "Successfully created outpost." msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:46 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:47 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:46 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:47 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:46 -#: src/pages/policies/password/PasswordPolicyForm.ts:46 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:46 +#: src/pages/policies/dummy/DummyPolicyForm.ts:44 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:45 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:44 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:45 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:44 +#: src/pages/policies/password/PasswordPolicyForm.ts:44 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:44 msgid "Successfully created policy." msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:38 +#: src/pages/stages/prompt/PromptForm.ts:43 msgid "Successfully created prompt." msgstr "" -#: src/pages/providers/ldap/LDAPProviderForm.ts:47 +#: src/pages/providers/ldap/LDAPProviderForm.ts:45 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:49 #: src/pages/providers/proxy/ProxyProviderForm.ts:51 -#: src/pages/providers/saml/SAMLProviderForm.ts:46 +#: src/pages/providers/saml/SAMLProviderForm.ts:45 msgid "Successfully created provider." msgstr "" -#: src/pages/events/RuleForm.ts:38 +#: src/pages/events/RuleForm.ts:43 msgid "Successfully created rule." msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:46 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:47 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:44 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:45 msgid "Successfully created service-connection." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:47 -#: src/pages/sources/oauth/OAuthSourceForm.ts:51 -#: src/pages/sources/plex/PlexSourceForm.ts:63 -#: src/pages/sources/saml/SAMLSourceForm.ts:47 +#: src/pages/sources/ldap/LDAPSourceForm.ts:45 +#: src/pages/sources/oauth/OAuthSourceForm.ts:52 +#: src/pages/sources/plex/PlexSourceForm.ts:66 +#: src/pages/sources/saml/SAMLSourceForm.ts:45 msgid "Successfully created source." msgstr "" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:47 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:46 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:45 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:44 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:48 -#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:44 -#: src/pages/stages/captcha/CaptchaStageForm.ts:45 +#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:42 +#: src/pages/stages/captcha/CaptchaStageForm.ts:43 #: src/pages/stages/consent/ConsentStageForm.ts:47 -#: src/pages/stages/deny/DenyStageForm.ts:44 -#: src/pages/stages/dummy/DummyStageForm.ts:44 -#: src/pages/stages/email/EmailStageForm.ts:48 -#: src/pages/stages/identification/IdentificationStageForm.ts:47 -#: src/pages/stages/invitation/InvitationStageForm.ts:46 -#: src/pages/stages/password/PasswordStageForm.ts:47 -#: src/pages/stages/prompt/PromptStageForm.ts:48 -#: src/pages/stages/user_delete/UserDeleteStageForm.ts:44 -#: src/pages/stages/user_login/UserLoginStageForm.ts:45 -#: src/pages/stages/user_logout/UserLogoutStageForm.ts:44 -#: src/pages/stages/user_write/UserWriteStageForm.ts:44 +#: src/pages/stages/deny/DenyStageForm.ts:42 +#: src/pages/stages/dummy/DummyStageForm.ts:42 +#: src/pages/stages/email/EmailStageForm.ts:49 +#: src/pages/stages/identification/IdentificationStageForm.ts:45 +#: src/pages/stages/invitation/InvitationStageForm.ts:44 +#: src/pages/stages/password/PasswordStageForm.ts:45 +#: src/pages/stages/prompt/PromptStageForm.ts:46 +#: src/pages/stages/user_delete/UserDeleteStageForm.ts:42 +#: src/pages/stages/user_login/UserLoginStageForm.ts:43 +#: src/pages/stages/user_logout/UserLogoutStageForm.ts:42 +#: src/pages/stages/user_write/UserWriteStageForm.ts:42 msgid "Successfully created stage." msgstr "" -#: src/pages/user-settings/tokens/UserTokenForm.ts:37 +#: src/pages/user-settings/tokens/UserTokenForm.ts:42 msgid "Successfully created token." msgstr "" -#: src/pages/events/TransportForm.ts:39 +#: src/pages/events/TransportForm.ts:44 msgid "Successfully created transport." msgstr "" -#: src/pages/users/UserForm.ts:40 +#: src/pages/users/UserForm.ts:45 msgid "Successfully created user." msgstr "" @@ -3181,16 +3185,16 @@ msgstr "" msgid "Successfully sent test-request." msgstr "" -#: src/pages/applications/ApplicationForm.ts:52 +#: src/pages/applications/ApplicationForm.ts:57 msgid "Successfully updated application." msgstr "" -#: src/pages/flows/StageBindingForm.ts:36 -#: src/pages/policies/PolicyBindingForm.ts:61 +#: src/pages/flows/StageBindingForm.ts:41 +#: src/pages/policies/PolicyBindingForm.ts:62 msgid "Successfully updated binding." msgstr "" -#: src/pages/crypto/CertificateKeyPairForm.ts:35 +#: src/pages/crypto/CertificateKeyPairForm.ts:40 msgid "Successfully updated certificate-key pair." msgstr "" @@ -3202,94 +3206,94 @@ msgstr "" msgid "Successfully updated device." msgstr "" -#: src/pages/flows/FlowForm.ts:45 +#: src/pages/flows/FlowForm.ts:50 msgid "Successfully updated flow." msgstr "" -#: src/pages/groups/GroupForm.ts:43 +#: src/pages/groups/GroupForm.ts:48 msgid "Successfully updated group." msgstr "" -#: src/pages/stages/invitation/InvitationForm.ts:36 +#: src/pages/stages/invitation/InvitationForm.ts:41 msgid "Successfully updated invitation." msgstr "" -#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:42 -#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:42 -#: src/pages/property-mappings/PropertyMappingScopeForm.ts:42 +#: src/pages/property-mappings/PropertyMappingLDAPForm.ts:40 +#: src/pages/property-mappings/PropertyMappingSAMLForm.ts:40 +#: src/pages/property-mappings/PropertyMappingScopeForm.ts:40 msgid "Successfully updated mapping." msgstr "" -#: src/pages/outposts/OutpostForm.ts:37 +#: src/pages/outposts/OutpostForm.ts:42 msgid "Successfully updated outpost." msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:43 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:44 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:43 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:44 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:43 -#: src/pages/policies/password/PasswordPolicyForm.ts:43 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:43 +#: src/pages/policies/dummy/DummyPolicyForm.ts:41 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:42 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:41 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:42 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:41 +#: src/pages/policies/password/PasswordPolicyForm.ts:41 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:41 msgid "Successfully updated policy." msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:35 +#: src/pages/stages/prompt/PromptForm.ts:40 msgid "Successfully updated prompt." msgstr "" -#: src/pages/providers/ldap/LDAPProviderForm.ts:44 +#: src/pages/providers/ldap/LDAPProviderForm.ts:42 #: src/pages/providers/oauth2/OAuth2ProviderForm.ts:46 #: src/pages/providers/proxy/ProxyProviderForm.ts:48 -#: src/pages/providers/saml/SAMLProviderForm.ts:43 +#: src/pages/providers/saml/SAMLProviderForm.ts:42 msgid "Successfully updated provider." msgstr "" -#: src/pages/events/RuleForm.ts:35 +#: src/pages/events/RuleForm.ts:40 msgid "Successfully updated rule." msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:43 -#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:44 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:41 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:42 msgid "Successfully updated service-connection." msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:44 -#: src/pages/sources/oauth/OAuthSourceForm.ts:48 -#: src/pages/sources/plex/PlexSourceForm.ts:60 -#: src/pages/sources/saml/SAMLSourceForm.ts:44 +#: src/pages/sources/ldap/LDAPSourceForm.ts:42 +#: src/pages/sources/oauth/OAuthSourceForm.ts:49 +#: src/pages/sources/plex/PlexSourceForm.ts:63 +#: src/pages/sources/saml/SAMLSourceForm.ts:42 msgid "Successfully updated source." msgstr "" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:44 -#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:43 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:42 +#: src/pages/stages/authenticator_totp/AuthenticatorTOTPStageForm.ts:41 #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:45 -#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:41 -#: src/pages/stages/captcha/CaptchaStageForm.ts:42 +#: src/pages/stages/authenticator_webauthn/AuthenticateWebAuthnStageForm.ts:39 +#: src/pages/stages/captcha/CaptchaStageForm.ts:40 #: src/pages/stages/consent/ConsentStageForm.ts:44 -#: src/pages/stages/deny/DenyStageForm.ts:41 -#: src/pages/stages/dummy/DummyStageForm.ts:41 -#: src/pages/stages/email/EmailStageForm.ts:45 -#: src/pages/stages/identification/IdentificationStageForm.ts:44 -#: src/pages/stages/invitation/InvitationStageForm.ts:43 -#: src/pages/stages/password/PasswordStageForm.ts:44 -#: src/pages/stages/prompt/PromptStageForm.ts:45 -#: src/pages/stages/user_delete/UserDeleteStageForm.ts:41 -#: src/pages/stages/user_login/UserLoginStageForm.ts:42 -#: src/pages/stages/user_logout/UserLogoutStageForm.ts:41 -#: src/pages/stages/user_write/UserWriteStageForm.ts:41 +#: src/pages/stages/deny/DenyStageForm.ts:39 +#: src/pages/stages/dummy/DummyStageForm.ts:39 +#: src/pages/stages/email/EmailStageForm.ts:46 +#: src/pages/stages/identification/IdentificationStageForm.ts:42 +#: src/pages/stages/invitation/InvitationStageForm.ts:41 +#: src/pages/stages/password/PasswordStageForm.ts:42 +#: src/pages/stages/prompt/PromptStageForm.ts:43 +#: src/pages/stages/user_delete/UserDeleteStageForm.ts:39 +#: src/pages/stages/user_login/UserLoginStageForm.ts:40 +#: src/pages/stages/user_logout/UserLogoutStageForm.ts:39 +#: src/pages/stages/user_write/UserWriteStageForm.ts:39 msgid "Successfully updated stage." msgstr "" -#: src/pages/user-settings/tokens/UserTokenForm.ts:34 +#: src/pages/user-settings/tokens/UserTokenForm.ts:39 msgid "Successfully updated token." msgstr "" -#: src/pages/events/TransportForm.ts:36 +#: src/pages/events/TransportForm.ts:41 msgid "Successfully updated transport." msgstr "" -#: src/pages/users/UserForm.ts:37 +#: src/pages/users/UserForm.ts:42 msgid "Successfully updated user." msgstr "" @@ -3305,7 +3309,15 @@ msgstr "" msgid "Superuser privileges?" msgstr "" -#: src/pages/policies/password/PasswordPolicyForm.ts:123 +#: src/pages/admin-overview/charts/GroupCountStatusChart.ts:55 +msgid "Superuser-groups" +msgstr "" + +#: src/pages/admin-overview/charts/UserCountStatusChart.ts:55 +msgid "Superusers" +msgstr "" + +#: src/pages/policies/password/PasswordPolicyForm.ts:121 msgid "Symbol charset" msgstr "" @@ -3313,7 +3325,7 @@ msgstr "" msgid "Sync" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:94 +#: src/pages/sources/ldap/LDAPSourceForm.ts:92 msgid "Sync groups" msgstr "" @@ -3321,7 +3333,7 @@ msgstr "" msgid "Sync status" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:77 +#: src/pages/sources/ldap/LDAPSourceForm.ts:75 msgid "Sync users" msgstr "" @@ -3334,11 +3346,11 @@ msgstr "" msgid "System Tasks" msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:91 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:89 msgid "TLS Authentication Certificate" msgstr "" -#: src/pages/outposts/ServiceConnectionDockerForm.ts:75 +#: src/pages/outposts/ServiceConnectionDockerForm.ts:73 msgid "TLS Verification Certificate" msgstr "" @@ -3346,7 +3358,7 @@ msgstr "" msgid "TOTP Authenticators" msgstr "" -#: src/pages/flows/StageBindingForm.ts:78 +#: src/pages/flows/StageBindingForm.ts:83 msgid "Target" msgstr "" @@ -3358,7 +3370,7 @@ msgstr "" msgid "Task finished with warnings" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:158 +#: src/pages/stages/email/EmailStageForm.ts:159 msgid "Template" msgstr "" @@ -3378,7 +3390,7 @@ msgstr "" msgid "Test Property Mapping" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:45 +#: src/pages/stages/prompt/PromptForm.ts:50 msgid "Text: Simple Text input" msgstr "" @@ -3390,7 +3402,7 @@ msgstr "" msgid "The external URL you'll access the outpost at." msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:90 +#: src/pages/policies/dummy/DummyPolicyForm.ts:88 msgid "The policy takes a random time to execute. This controls the minimum time it will take." msgstr "" @@ -3420,23 +3432,23 @@ msgstr "" msgid "These policies control which users can access this application." msgstr "" -#: src/pages/stages/invitation/InvitationStageForm.ts:53 +#: src/pages/stages/invitation/InvitationStageForm.ts:51 msgid "This stage can be included in enrollment flows to accept invitations." msgstr "" -#: src/pages/stages/captcha/CaptchaStageForm.ts:52 +#: src/pages/stages/captcha/CaptchaStageForm.ts:50 msgid "This stage checks the user's current session against the Google reCaptcha service." msgstr "" -#: src/pages/policies/reputation/ReputationPolicyForm.ts:94 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:92 msgid "Threshold" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:149 +#: src/pages/stages/email/EmailStageForm.ts:150 msgid "Time in minutes the token sent is valid." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:173 +#: src/pages/sources/saml/SAMLSourceForm.ts:171 msgid "Time offset when temporary users should be deleted. This only applies if your IDP uses the NameID Format 'transient', and the user doesn't log out manually. (Format: hours=1;minutes=2;seconds=3)." msgstr "" @@ -3445,12 +3457,12 @@ msgid "Time-based One-Time Passwords" msgstr "" #: src/pages/policies/BoundPoliciesList.ts:43 -#: src/pages/policies/PolicyBindingForm.ts:209 -#: src/pages/stages/email/EmailStageForm.ts:101 +#: src/pages/policies/PolicyBindingForm.ts:210 +#: src/pages/stages/email/EmailStageForm.ts:102 msgid "Timeout" msgstr "" -#: src/pages/flows/FlowForm.ts:87 +#: src/pages/flows/FlowForm.ts:92 msgid "Title" msgstr "" @@ -3464,11 +3476,11 @@ msgstr "" msgid "Token URL" msgstr "" -#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:68 +#: src/pages/stages/authenticator_static/AuthenticatorStaticStageForm.ts:66 msgid "Token count" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:145 +#: src/pages/stages/email/EmailStageForm.ts:146 msgid "Token expiry" msgstr "" @@ -3487,39 +3499,47 @@ msgstr "" msgid "Tokens are used throughout authentik for Email validation stages, Recovery keys and API access." msgstr "" -#: src/pages/admin-overview/graphs/FlowStatusCard.ts:53 +#: src/pages/admin-overview/charts/FlowStatusChart.ts:53 msgid "Total flows" msgstr "" -#: src/pages/admin-overview/graphs/PolicyStatusCard.ts:58 +#: src/pages/admin-overview/charts/GroupCountStatusChart.ts:54 +msgid "Total groups" +msgstr "" + +#: src/pages/admin-overview/charts/PolicyStatusChart.ts:58 msgid "Total policies" msgstr "" +#: src/pages/admin-overview/charts/UserCountStatusChart.ts:54 +msgid "Total users" +msgstr "" + #: src/flows/stages/authenticator_validate/AuthenticatorValidateStage.ts:80 msgid "Traditional authenticator" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:164 +#: src/pages/sources/saml/SAMLSourceForm.ts:162 msgid "Transient" msgstr "" -#: src/pages/events/RuleForm.ts:78 +#: src/pages/events/RuleForm.ts:83 msgid "Transports" msgstr "" #: src/pages/flows/BoundStagesList.ts:40 -#: src/pages/outposts/OutpostForm.ts:53 +#: src/pages/outposts/OutpostForm.ts:58 #: src/pages/outposts/ServiceConnectionListPage.ts:54 #: src/pages/policies/PolicyListPage.ts:57 #: src/pages/property-mappings/PropertyMappingListPage.ts:55 #: src/pages/providers/ProviderListPage.ts:55 #: src/pages/sources/SourcesListPage.ts:53 -#: src/pages/stages/prompt/PromptForm.ts:97 +#: src/pages/stages/prompt/PromptForm.ts:102 #: src/pages/stages/prompt/PromptListPage.ts:48 msgid "Type" msgstr "" -#: src/pages/applications/ApplicationForm.ts:155 +#: src/pages/applications/ApplicationForm.ts:160 msgid "UI settings" msgstr "" @@ -3527,35 +3547,35 @@ msgstr "" msgid "UID" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:62 +#: src/pages/sources/oauth/OAuthSourceForm.ts:63 msgid "URL settings" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:84 +#: src/pages/sources/saml/SAMLSourceForm.ts:82 msgid "URL that the initial Login request is sent to." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:70 +#: src/pages/sources/oauth/OAuthSourceForm.ts:71 msgid "URL the user is redirect to to consent the authorization." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:84 +#: src/pages/sources/oauth/OAuthSourceForm.ts:85 msgid "URL used by authentik to get user information." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:77 +#: src/pages/sources/oauth/OAuthSourceForm.ts:78 msgid "URL used by authentik to retrieve tokens." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:90 +#: src/pages/sources/oauth/OAuthSourceForm.ts:91 msgid "URL used to request the initial token. This URL is only required for OAuth 1." msgstr "" -#: src/pages/admin-overview/graphs/PolicyStatusCard.ts:60 +#: src/pages/admin-overview/charts/PolicyStatusChart.ts:60 msgid "Unbound policies" msgstr "" -#: src/pages/flows/FlowForm.ts:73 +#: src/pages/flows/FlowForm.ts:78 msgid "Unenrollment" msgstr "" @@ -3563,7 +3583,7 @@ msgstr "" msgid "Unhealthy" msgstr "" -#: src/pages/admin-overview/graphs/OutpostStatusCard.ts:72 +#: src/pages/admin-overview/charts/OutpostStatusChart.ts:72 msgid "Unhealthy outposts" msgstr "" @@ -3571,7 +3591,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: src/pages/admin-overview/graphs/LDAPSyncStatusCard.ts:77 +#: src/pages/admin-overview/charts/LDAPSyncStatusChart.ts:77 msgid "Unsynced sources" msgstr "" @@ -3723,11 +3743,11 @@ msgstr "" msgid "Upstream host that the requests are forwarded to." msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:96 +#: src/pages/stages/email/EmailStageForm.ts:97 msgid "Use SSL" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:88 +#: src/pages/stages/email/EmailStageForm.ts:89 msgid "Use TLS" msgstr "" @@ -3739,26 +3759,30 @@ msgstr "" msgid "Use a security key to prove your identity." msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:139 +#: src/pages/stages/email/EmailStageForm.ts:140 msgid "Use global settings" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:131 -#: src/pages/sources/plex/PlexSourceForm.ts:121 +#: src/pages/sources/oauth/OAuthSourceForm.ts:150 +#: src/pages/sources/plex/PlexSourceForm.ts:124 msgid "Use the user's email address, but deny enrollment when the email address already exists." msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:137 -#: src/pages/sources/plex/PlexSourceForm.ts:127 +#: src/pages/sources/oauth/OAuthSourceForm.ts:156 +#: src/pages/sources/plex/PlexSourceForm.ts:130 msgid "Use the user's username, but deny enrollment when the username already exists." msgstr "" +#: src/pages/sources/oauth/OAuthSourceForm.ts:126 +msgid "Use this redirect URL:" +msgstr "" + #: src/elements/events/ObjectChangelog.ts:39 #: src/elements/events/UserEvents.ts:36 #: src/pages/events/EventInfo.ts:83 #: src/pages/events/EventListPage.ts:44 -#: src/pages/policies/PolicyBindingForm.ts:132 -#: src/pages/policies/PolicyBindingForm.ts:176 +#: src/pages/policies/PolicyBindingForm.ts:133 +#: src/pages/policies/PolicyBindingForm.ts:177 #: src/pages/policies/PolicyTestForm.ts:61 #: src/pages/property-mappings/PropertyMappingTestForm.ts:51 #: src/pages/tokens/TokenListPage.ts:45 @@ -3772,7 +3796,7 @@ msgstr "" msgid "User Info" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:144 +#: src/pages/sources/ldap/LDAPSourceForm.ts:142 msgid "User Property Mappings" msgstr "" @@ -3789,20 +3813,20 @@ msgid "User events" msgstr "" #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts:99 -#: src/pages/stages/identification/IdentificationStageForm.ts:74 +#: src/pages/stages/identification/IdentificationStageForm.ts:72 msgid "User fields" msgstr "" -#: src/pages/sources/oauth/OAuthSourceForm.ts:120 -#: src/pages/sources/plex/PlexSourceForm.ts:110 +#: src/pages/sources/oauth/OAuthSourceForm.ts:139 +#: src/pages/sources/plex/PlexSourceForm.ts:113 msgid "User matching mode" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:208 +#: src/pages/sources/ldap/LDAPSourceForm.ts:206 msgid "User object filter" msgstr "" -#: src/pages/sources/ldap/LDAPSourceForm.ts:85 +#: src/pages/sources/ldap/LDAPSourceForm.ts:83 msgid "User password writeback" msgstr "" @@ -3816,7 +3840,7 @@ msgid "User's avatar" msgstr "" #: src/pages/user-settings/UserDetailsPage.ts:68 -#: src/pages/users/UserForm.ts:58 +#: src/pages/users/UserForm.ts:63 msgid "User's display name." msgstr "" @@ -3833,28 +3857,28 @@ msgid "Userinfo URL" msgstr "" #: src/flows/stages/identification/IdentificationStage.ts:150 -#: src/pages/stages/identification/IdentificationStageForm.ts:78 +#: src/pages/stages/identification/IdentificationStageForm.ts:76 #: src/pages/user-settings/UserDetailsPage.ts:57 -#: src/pages/users/UserForm.ts:47 +#: src/pages/users/UserForm.ts:52 #: src/pages/users/UserViewPage.ts:84 msgid "Username" msgstr "" -#: src/pages/stages/prompt/PromptForm.ts:48 +#: src/pages/stages/prompt/PromptForm.ts:53 msgid "Username: Same as Text input, but checks for and prevents duplicate usernames." msgstr "" #: src/interfaces/AdminInterface.ts:100 -#: src/pages/admin-overview/AdminOverviewPage.ts:88 +#: src/pages/admin-overview/AdminOverviewPage.ts:71 #: src/pages/users/UserListPage.ts:33 msgid "Users" msgstr "" -#: src/pages/groups/GroupForm.ts:65 +#: src/pages/groups/GroupForm.ts:70 msgid "Users added to this group will be superusers." msgstr "" -#: src/pages/providers/ldap/LDAPProviderForm.ts:88 +#: src/pages/providers/ldap/LDAPProviderForm.ts:86 msgid "Users in the selected group can do search queries." msgstr "" @@ -3874,11 +3898,11 @@ msgstr "" msgid "Validate SSL Certificates of upstream servers." msgstr "" -#: src/pages/stages/password/PasswordStageForm.ts:60 +#: src/pages/stages/password/PasswordStageForm.ts:58 msgid "Validate the user's password against the selected backend(s)." msgstr "" -#: src/pages/stages/prompt/PromptStageForm.ts:103 +#: src/pages/stages/prompt/PromptStageForm.ts:101 msgid "Validation Policies" msgstr "" @@ -3886,15 +3910,15 @@ msgstr "" msgid "Validity days" msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:138 +#: src/pages/providers/saml/SAMLProviderForm.ts:137 msgid "Verification Certificate" msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:119 +#: src/pages/stages/email/EmailStageForm.ts:120 msgid "Verify the user's email address by sending them a one-time-link. Can also be used for recovery to verify the user's authenticity." msgstr "" -#: src/pages/admin-overview/AdminOverviewPage.ts:80 +#: src/pages/admin-overview/AdminOverviewPage.ts:90 msgid "Version" msgstr "" @@ -3910,27 +3934,23 @@ msgstr "" msgid "View deployment documentation" msgstr "" -#: src/pages/flows/FlowForm.ts:98 +#: src/pages/flows/FlowForm.ts:103 msgid "Visible in the URL." msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:93 +#: src/pages/policies/dummy/DummyPolicyForm.ts:91 msgid "Wait (max)" msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:86 +#: src/pages/policies/dummy/DummyPolicyForm.ts:84 msgid "Wait (min)" msgstr "" -#: src/pages/events/RuleForm.ts:48 +#: src/pages/events/RuleForm.ts:53 #: src/pages/system-tasks/SystemTaskListPage.ts:66 msgid "Warning" msgstr "" -#: src/pages/admin-overview/cards/ProviderStatusCard.ts:24 -msgid "Warning: At least one Provider has no application assigned." -msgstr "" - #: src/pages/policies/PolicyListPage.ts:71 msgid "Warning: Policy is not assigned." msgstr "" @@ -3947,45 +3967,45 @@ msgstr "" msgid "WebAuthn Devices" msgstr "" -#: src/pages/events/TransportForm.ts:52 +#: src/pages/events/TransportForm.ts:57 msgid "Webhook (Slack/Discord)" msgstr "" -#: src/pages/events/TransportForm.ts:49 +#: src/pages/events/TransportForm.ts:54 msgid "Webhook (generic)" msgstr "" -#: src/pages/events/TransportForm.ts:91 +#: src/pages/events/TransportForm.ts:96 msgid "Webhook URL" msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:103 +#: src/pages/stages/identification/IdentificationStageForm.ts:101 msgid "When a valid username/email has been entered, and this option is enabled, the user's username and avatar will be shown. Otherwise, the text that the user entered will be shown." msgstr "" -#: src/pages/stages/email/EmailStageForm.ts:142 +#: src/pages/stages/email/EmailStageForm.ts:143 msgid "When enabled, global Email connection settings will be used and connection settings below will be ignored." msgstr "" -#: src/pages/stages/invitation/InvitationForm.ts:66 +#: src/pages/stages/invitation/InvitationForm.ts:71 msgid "When enabled, the invitation will be deleted after usage." msgstr "" -#: src/pages/stages/identification/IdentificationStageForm.ts:94 +#: src/pages/stages/identification/IdentificationStageForm.ts:92 msgid "When enabled, user fields are matched regardless of their casing." msgstr "" -#: src/pages/providers/saml/SAMLProviderForm.ts:151 +#: src/pages/providers/saml/SAMLProviderForm.ts:150 msgid "When selected, incoming assertion's Signatures will be validated against this certificate. To allow unsigned Requests, leave on default." msgstr "" -#: src/pages/policies/dummy/DummyPolicyForm.ts:69 -#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:70 -#: src/pages/policies/expiry/ExpiryPolicyForm.ts:69 -#: src/pages/policies/expression/ExpressionPolicyForm.ts:70 -#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:70 -#: src/pages/policies/password/PasswordPolicyForm.ts:69 -#: src/pages/policies/reputation/ReputationPolicyForm.ts:69 +#: src/pages/policies/dummy/DummyPolicyForm.ts:67 +#: src/pages/policies/event_matcher/EventMatcherPolicyForm.ts:68 +#: src/pages/policies/expiry/ExpiryPolicyForm.ts:67 +#: src/pages/policies/expression/ExpressionPolicyForm.ts:68 +#: src/pages/policies/hibp/HaveIBeenPwnedPolicyForm.ts:68 +#: src/pages/policies/password/PasswordPolicyForm.ts:67 +#: src/pages/policies/reputation/ReputationPolicyForm.ts:67 msgid "When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged." msgstr "" @@ -3993,21 +4013,21 @@ msgstr "" msgid "Whoops!" msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:158 +#: src/pages/sources/saml/SAMLSourceForm.ts:156 msgid "Windows" msgstr "" -#: src/pages/admin-overview/AdminOverviewPage.ts:92 +#: src/pages/admin-overview/AdminOverviewPage.ts:98 msgid "Workers" msgstr "" -#: src/pages/stages/user_write/UserWriteStageForm.ts:51 +#: src/pages/stages/user_write/UserWriteStageForm.ts:49 msgid "" "Write any data from the flow's context's 'prompt_data' to the currently pending user. If no user\n" "is pending, a new user is created, and data is written to them." msgstr "" -#: src/pages/sources/saml/SAMLSourceForm.ts:161 +#: src/pages/sources/saml/SAMLSourceForm.ts:159 msgid "X509 Subject" msgstr "" @@ -4028,11 +4048,11 @@ msgstr "" msgid "You're currently impersonating {0}." msgstr "" -#: src/pages/stages/password/PasswordStageForm.ts:79 +#: src/pages/stages/password/PasswordStageForm.ts:77 msgid "authentik Builtin Database" msgstr "" -#: src/pages/stages/password/PasswordStageForm.ts:82 +#: src/pages/stages/password/PasswordStageForm.ts:80 msgid "authentik LDAP Backend" msgstr "" @@ -4045,11 +4065,11 @@ msgstr "" msgid "{0}" msgstr "" -#: src/pages/stages/prompt/PromptStageForm.ts:82 +#: src/pages/stages/prompt/PromptStageForm.ts:80 msgid "{0} (\"{1}\", of type {2})" msgstr "" -#: src/pages/stages/prompt/PromptStageForm.ts:115 +#: src/pages/stages/prompt/PromptStageForm.ts:113 msgid "{0} ({1})" msgstr "" diff --git a/web/src/pages/applications/ApplicationForm.ts b/web/src/pages/applications/ApplicationForm.ts index a169e0d94..2e027a1bf 100644 --- a/web/src/pages/applications/ApplicationForm.ts +++ b/web/src/pages/applications/ApplicationForm.ts @@ -3,7 +3,6 @@ import { t } from "@lingui/macro"; import { CSSResult, customElement, property } from "lit-element"; import { html, TemplateResult } from "lit-html"; import { DEFAULT_CONFIG } from "../../api/Config"; -import { Form } from "../../elements/forms/Form"; import { until } from "lit-html/directives/until"; import { ifDefined } from "lit-html/directives/if-defined"; import "../../elements/buttons/Dropdown"; @@ -13,18 +12,22 @@ import "../../elements/forms/ModalForm"; import "../../elements/forms/HorizontalFormElement"; import "../../elements/forms/FormGroup"; import PFDropdown from "@patternfly/patternfly/components/Dropdown/dropdown.css"; +import { ModelForm } from "../../elements/forms/ModelForm"; @customElement("ak-application-form") -export class ApplicationForm extends Form { +export class ApplicationForm extends ModelForm { - @property({ attribute: false }) - application?: Application; + loadInstance(pk: string): Promise { + return new CoreApi(DEFAULT_CONFIG).coreApplicationsRead({ + slug: pk + }); + } @property({ attribute: false }) provider?: number; getSuccessMessage(): string { - if (this.application) { + if (this.instance) { return t`Successfully updated application.`; } else { return t`Successfully created application.`; @@ -37,9 +40,9 @@ export class ApplicationForm extends Form { send = (data: Application): Promise => { let writeOp: Promise; - if (this.application) { + if (this.instance) { writeOp = new CoreApi(DEFAULT_CONFIG).coreApplicationsUpdate({ - slug: this.application.slug, + slug: this.instance.slug, data: data }); } else { @@ -72,7 +75,7 @@ export class ApplicationForm extends Form { ${Array.from(m).map(([group, providers]) => { return html` ${providers.map(p => { - const selected = (this.application?.provider === p.pk) || (this.provider === p.pk); + const selected = (this.instance?.provider === p.pk) || (this.provider === p.pk); return html``; })} `; @@ -86,21 +89,21 @@ export class ApplicationForm extends Form { label=${t`Name`} ?required=${true} name="name"> - +

${t`Application's display Name.`}

- +

${t`Internal application name, used in URLs.`}

- - @@ -158,23 +161,23 @@ export class ApplicationForm extends Form { - +

${t`If left empty, authentik will try to extract the launch URL based on the selected provider.`}

- + - + - + diff --git a/web/src/pages/applications/ApplicationListPage.ts b/web/src/pages/applications/ApplicationListPage.ts index 66177438d..3bdebecc8 100644 --- a/web/src/pages/applications/ApplicationListPage.ts +++ b/web/src/pages/applications/ApplicationListPage.ts @@ -89,7 +89,7 @@ export class ApplicationListPage extends TablePage { ${t`Update Application`} - +