web/admin: small wizard fixes (#7259)
This commit is contained in:
parent
f3e02f9281
commit
75aedb4d3f
|
@ -38,9 +38,10 @@ export type LocalTypeCreate = TypeCreate & {
|
||||||
const _providerModelsTable: ProviderType[] = [
|
const _providerModelsTable: ProviderType[] = [
|
||||||
[
|
[
|
||||||
"oauth2provider",
|
"oauth2provider",
|
||||||
msg("OAuth2/OpenID"),
|
msg("OAuth2/OIDC (Open Authorization/OpenID Connect)"),
|
||||||
msg("Modern applications, APIs and Single-page applications."),
|
msg("Modern applications, APIs and Single-page applications."),
|
||||||
() => html`<ak-application-wizard-authentication-by-oauth></ak-application-wizard-authentication-by-oauth>`,
|
() =>
|
||||||
|
html`<ak-application-wizard-authentication-by-oauth></ak-application-wizard-authentication-by-oauth>`,
|
||||||
ProviderModelEnum.Oauth2Oauth2provider,
|
ProviderModelEnum.Oauth2Oauth2provider,
|
||||||
(provider: OneOfProvider) => ({
|
(provider: OneOfProvider) => ({
|
||||||
providerModel: ProviderModelEnum.Oauth2Oauth2provider,
|
providerModel: ProviderModelEnum.Oauth2Oauth2provider,
|
||||||
|
@ -49,21 +50,22 @@ const _providerModelsTable: ProviderType[] = [
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"ldapprovider",
|
"ldapprovider",
|
||||||
msg("LDAP"),
|
msg("LDAP (Lightweight Directory Access Protocol)"),
|
||||||
msg("Provide an LDAP interface for applications and users to authenticate against."),
|
msg("Provide an LDAP interface for applications and users to authenticate against."),
|
||||||
() => html`<ak-application-wizard-authentication-by-ldap></ak-application-wizard-authentication-by-ldap>`,
|
() =>
|
||||||
|
html`<ak-application-wizard-authentication-by-ldap></ak-application-wizard-authentication-by-ldap>`,
|
||||||
ProviderModelEnum.LdapLdapprovider,
|
ProviderModelEnum.LdapLdapprovider,
|
||||||
(provider: OneOfProvider) => ({
|
(provider: OneOfProvider) => ({
|
||||||
providerModel: ProviderModelEnum.LdapLdapprovider,
|
providerModel: ProviderModelEnum.LdapLdapprovider,
|
||||||
...(provider as LDAPProviderRequest),
|
...(provider as LDAPProviderRequest),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"proxyprovider-proxy",
|
"proxyprovider-proxy",
|
||||||
msg("Transparent Reverse Proxy"),
|
msg("Transparent Reverse Proxy"),
|
||||||
msg("For transparent reverse proxies with required authentication"),
|
msg("For transparent reverse proxies with required authentication"),
|
||||||
() => html`<ak-application-wizard-authentication-for-reverse-proxy></ak-application-wizard-authentication-for-reverse-proxy>`,
|
() =>
|
||||||
|
html`<ak-application-wizard-authentication-for-reverse-proxy></ak-application-wizard-authentication-for-reverse-proxy>`,
|
||||||
ProviderModelEnum.ProxyProxyprovider,
|
ProviderModelEnum.ProxyProxyprovider,
|
||||||
(provider: OneOfProvider) => ({
|
(provider: OneOfProvider) => ({
|
||||||
providerModel: ProviderModelEnum.ProxyProxyprovider,
|
providerModel: ProviderModelEnum.ProxyProxyprovider,
|
||||||
|
@ -73,23 +75,24 @@ const _providerModelsTable: ProviderType[] = [
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"proxyprovider-forwardsingle",
|
"proxyprovider-forwardsingle",
|
||||||
msg("Forward Auth Single Application"),
|
msg("Forward Auth (Single Application)"),
|
||||||
msg("For nginx's auth_request or traefix's forwardAuth"),
|
msg("For nginx's auth_request or traefix's forwardAuth"),
|
||||||
() => html`<ak-application-wizard-authentication-for-single-forward-proxy></ak-application-wizard-authentication-for-single-forward-proxy>`,
|
() =>
|
||||||
ProviderModelEnum.ProxyProxyprovider ,
|
html`<ak-application-wizard-authentication-for-single-forward-proxy></ak-application-wizard-authentication-for-single-forward-proxy>`,
|
||||||
|
ProviderModelEnum.ProxyProxyprovider,
|
||||||
(provider: OneOfProvider) => ({
|
(provider: OneOfProvider) => ({
|
||||||
providerModel: ProviderModelEnum.ProxyProxyprovider,
|
providerModel: ProviderModelEnum.ProxyProxyprovider,
|
||||||
...(provider as ProxyProviderRequest),
|
...(provider as ProxyProviderRequest),
|
||||||
mode: ProxyMode.ForwardSingle,
|
mode: ProxyMode.ForwardSingle,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"proxyprovider-forwarddomain",
|
"proxyprovider-forwarddomain",
|
||||||
msg("Forward Auth Domain Level"),
|
msg("Forward Auth (Domain Level)"),
|
||||||
msg("For nginx's auth_request or traefix's forwardAuth per root domain"),
|
msg("For nginx's auth_request or traefix's forwardAuth per root domain"),
|
||||||
() => html`<ak-application-wizard-authentication-for-forward-proxy-domain></ak-application-wizard-authentication-for-forward-proxy-domain>`,
|
() =>
|
||||||
ProviderModelEnum.ProxyProxyprovider ,
|
html`<ak-application-wizard-authentication-for-forward-proxy-domain></ak-application-wizard-authentication-for-forward-proxy-domain>`,
|
||||||
|
ProviderModelEnum.ProxyProxyprovider,
|
||||||
(provider: OneOfProvider) => ({
|
(provider: OneOfProvider) => ({
|
||||||
providerModel: ProviderModelEnum.ProxyProxyprovider,
|
providerModel: ProviderModelEnum.ProxyProxyprovider,
|
||||||
...(provider as ProxyProviderRequest),
|
...(provider as ProxyProviderRequest),
|
||||||
|
@ -98,39 +101,39 @@ const _providerModelsTable: ProviderType[] = [
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"samlprovider",
|
"samlprovider",
|
||||||
msg("SAML Configuration"),
|
msg("SAML (Security Assertion Markup Language)"),
|
||||||
msg("Configure SAML provider manually"),
|
msg("Configure SAML provider manually"),
|
||||||
() => html`<ak-application-wizard-authentication-by-saml-configuration></ak-application-wizard-authentication-by-saml-configuration>`,
|
() =>
|
||||||
|
html`<ak-application-wizard-authentication-by-saml-configuration></ak-application-wizard-authentication-by-saml-configuration>`,
|
||||||
ProviderModelEnum.SamlSamlprovider,
|
ProviderModelEnum.SamlSamlprovider,
|
||||||
(provider: OneOfProvider) => ({
|
(provider: OneOfProvider) => ({
|
||||||
providerModel: ProviderModelEnum.SamlSamlprovider,
|
providerModel: ProviderModelEnum.SamlSamlprovider,
|
||||||
...(provider as SAMLProviderRequest),
|
...(provider as SAMLProviderRequest),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"radiusprovider",
|
"radiusprovider",
|
||||||
msg("RADIUS Configuration"),
|
msg("RADIUS (Remote Authentication Dial-In User Service)"),
|
||||||
msg("Configure RADIUS provider manually"),
|
msg("Configure RADIUS provider manually"),
|
||||||
() => html`<ak-application-wizard-authentication-by-radius></ak-application-wizard-authentication-by-radius>`,
|
() =>
|
||||||
|
html`<ak-application-wizard-authentication-by-radius></ak-application-wizard-authentication-by-radius>`,
|
||||||
ProviderModelEnum.RadiusRadiusprovider,
|
ProviderModelEnum.RadiusRadiusprovider,
|
||||||
(provider: OneOfProvider) => ({
|
(provider: OneOfProvider) => ({
|
||||||
providerModel: ProviderModelEnum.RadiusRadiusprovider,
|
providerModel: ProviderModelEnum.RadiusRadiusprovider,
|
||||||
...(provider as RadiusProviderRequest),
|
...(provider as RadiusProviderRequest),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"scimprovider",
|
"scimprovider",
|
||||||
msg("SCIM configuration"),
|
msg("SCIM (System for Cross-domain Identity Management)"),
|
||||||
msg("Configure SCIM provider manually"),
|
msg("Configure SCIM provider manually"),
|
||||||
() => html`<ak-application-wizard-authentication-by-scim></ak-application-wizard-authentication-by-scim>`,
|
() =>
|
||||||
|
html`<ak-application-wizard-authentication-by-scim></ak-application-wizard-authentication-by-scim>`,
|
||||||
ProviderModelEnum.ScimScimprovider,
|
ProviderModelEnum.ScimScimprovider,
|
||||||
(provider: OneOfProvider) => ({
|
(provider: OneOfProvider) => ({
|
||||||
providerModel: ProviderModelEnum.ScimScimprovider,
|
providerModel: ProviderModelEnum.ScimScimprovider,
|
||||||
...(provider as SCIMProviderRequest),
|
...(provider as SCIMProviderRequest),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -245,13 +245,14 @@ export class ApplicationWizardAuthenticationByOauth extends BaseProviderPanel {
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
</ak-radio-input>
|
</ak-radio-input>
|
||||||
<ak-switch-input name="includeClaimsInIdToken">
|
<ak-switch-input
|
||||||
|
name="includeClaimsInIdToken"
|
||||||
label=${msg("Include claims in id_token")}
|
label=${msg("Include claims in id_token")}
|
||||||
?checked=${first(provider?.includeClaimsInIdToken, true)}
|
?checked=${first(provider?.includeClaimsInIdToken, true)}
|
||||||
help=${msg(
|
help=${msg(
|
||||||
"Include User claims from scopes in the id_token, for applications that don't access the userinfo endpoint.",
|
"Include User claims from scopes in the id_token, for applications that don't access the userinfo endpoint.",
|
||||||
)}></ak-switch-input
|
)}
|
||||||
>
|
></ak-switch-input>
|
||||||
<ak-radio-input
|
<ak-radio-input
|
||||||
name="issuerMode"
|
name="issuerMode"
|
||||||
label=${msg("Issuer mode")}
|
label=${msg("Issuer mode")}
|
||||||
|
|
|
@ -30,7 +30,7 @@ export class WebsocketClient {
|
||||||
this.retryDelay = 200;
|
this.retryDelay = 200;
|
||||||
});
|
});
|
||||||
this.messageSocket.addEventListener("close", (e) => {
|
this.messageSocket.addEventListener("close", (e) => {
|
||||||
console.debug(`authentik/ws: closed ws connection: ${e}`);
|
console.debug("authentik/ws: closed ws connection", e);
|
||||||
if (this.retryDelay > 6000) {
|
if (this.retryDelay > 6000) {
|
||||||
window.dispatchEvent(
|
window.dispatchEvent(
|
||||||
new CustomEvent(EVENT_MESSAGE, {
|
new CustomEvent(EVENT_MESSAGE, {
|
||||||
|
|
|
@ -3324,14 +3324,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>Benutzerinformation</target>
|
<target>Benutzerinformation</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>Um einen Wiederherstellungslink erstellen zu können, muss für die aktuelle Umgebung ein Wiederherstellungsablauf konfigiert sein.</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>Passwort zurücksetzen</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
<target>Aktionen der letzten Woche (pro 8 Stunden)</target>
|
<target>Aktionen der letzten Woche (pro 8 Stunden)</target>
|
||||||
|
@ -5807,39 +5799,24 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="se2b29e6cfe59414c">
|
<trans-unit id="se2b29e6cfe59414c">
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s945a6b94361ee45b">
|
<trans-unit id="s945a6b94361ee45b">
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s40830ec037f34626">
|
<trans-unit id="s40830ec037f34626">
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -6004,6 +5981,45 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -3487,14 +3487,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>User Info</target>
|
<target>User Info</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>To create a recovery link, the current tenant needs to have a recovery flow configured.</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>Reset Password</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
<target>Actions over the last week (per 8 hours)</target>
|
<target>Actions over the last week (per 8 hours)</target>
|
||||||
|
@ -6089,39 +6081,24 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="se2b29e6cfe59414c">
|
<trans-unit id="se2b29e6cfe59414c">
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s945a6b94361ee45b">
|
<trans-unit id="s945a6b94361ee45b">
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s40830ec037f34626">
|
<trans-unit id="s40830ec037f34626">
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -6286,6 +6263,45 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -3271,14 +3271,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>Información del usuario</target>
|
<target>Información del usuario</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>Para crear un enlace de recuperación, el inquilino actual debe tener configurado un flujo de recuperación.</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>Restablecer contraseña</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5722,39 +5714,24 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="se2b29e6cfe59414c">
|
<trans-unit id="se2b29e6cfe59414c">
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s945a6b94361ee45b">
|
<trans-unit id="s945a6b94361ee45b">
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s40830ec037f34626">
|
<trans-unit id="s40830ec037f34626">
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5919,6 +5896,45 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -4349,16 +4349,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>Info utilisateur</target>
|
<target>Info utilisateur</target>
|
||||||
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>Pour créer un lien de récupération, le locataire actuel doit avoir un flux de récupération configuré.</target>
|
|
||||||
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>Réinitialiser le mot de passe</target>
|
|
||||||
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
|
@ -7627,39 +7617,24 @@ Les liaisons avec les groupes/utilisateurs sont vérifiées par rapport à l'uti
|
||||||
<trans-unit id="se2b29e6cfe59414c">
|
<trans-unit id="se2b29e6cfe59414c">
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s945a6b94361ee45b">
|
<trans-unit id="s945a6b94361ee45b">
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s40830ec037f34626">
|
<trans-unit id="s40830ec037f34626">
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -7861,6 +7836,45 @@ Les liaisons avec les groupes/utilisateurs sont vérifiées par rapport à l'uti
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -3390,14 +3390,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>Informacje użytkownika</target>
|
<target>Informacje użytkownika</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>Aby utworzyć link odzyskiwania, bieżący najmeca musi mieć skonfigurowany przepływ odzyskiwania.</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>Zresetuj hasło</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5930,39 +5922,24 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="se2b29e6cfe59414c">
|
<trans-unit id="se2b29e6cfe59414c">
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s945a6b94361ee45b">
|
<trans-unit id="s945a6b94361ee45b">
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s40830ec037f34626">
|
<trans-unit id="s40830ec037f34626">
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -6127,6 +6104,45 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -4317,16 +4317,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>Ũśēŕ Ĩńƒō</target>
|
<target>Ũśēŕ Ĩńƒō</target>
|
||||||
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>Ţō ćŕēàţē à ŕēćōvēŕŷ ĺĩńķ, ţĥē ćũŕŕēńţ ţēńàńţ ńēēďś ţō ĥàvē à ŕēćōvēŕŷ ƒĺōŵ ćōńƒĩĝũŕēď.</target>
|
|
||||||
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>Ŕēśēţ Ƥàśśŵōŕď</target>
|
|
||||||
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
|
@ -7569,10 +7559,6 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
<target>ŨĨ Śēţţĩńĝś</target>
|
<target>ŨĨ Śēţţĩńĝś</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
<target>ŌÀũţĥ2/ŌƥēńĨĎ</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
<target>Ţŕàńśƥàŕēńţ Ŕēvēŕśē Ƥŕōxŷ</target>
|
<target>Ţŕàńśƥàŕēńţ Ŕēvēŕśē Ƥŕōxŷ</target>
|
||||||
|
@ -7581,18 +7567,10 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
<target>Ƒōŕ ţŕàńśƥàŕēńţ ŕēvēŕśē ƥŕōxĩēś ŵĩţĥ ŕēǫũĩŕēď àũţĥēńţĩćàţĩōń</target>
|
<target>Ƒōŕ ţŕàńśƥàŕēńţ ŕēvēŕśē ƥŕōxĩēś ŵĩţĥ ŕēǫũĩŕēď àũţĥēńţĩćàţĩōń</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
<target>Ƒōŕŵàŕď Àũţĥ Śĩńĝĺē Àƥƥĺĩćàţĩōń</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
<target>Ƒōŕ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩx'ś ƒōŕŵàŕďÀũţĥ</target>
|
<target>Ƒōŕ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩx'ś ƒōŕŵàŕďÀũţĥ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
<target>Ƒōŕŵàŕď Àũţĥ Ďōmàĩń Ĺēvēĺ</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
<target>Ƒōŕ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩx'ś ƒōŕŵàŕďÀũţĥ ƥēŕ ŕōōţ ďōmàĩń</target>
|
<target>Ƒōŕ ńĝĩńx'ś àũţĥ_ŕēǫũēśţ ōŕ ţŕàēƒĩx'ś ƒōŕŵàŕďÀũţĥ ƥēŕ ŕōōţ ďōmàĩń</target>
|
||||||
|
@ -7601,18 +7579,10 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
<target>Ćōńƒĩĝũŕē ŚÀMĹ ƥŕōvĩďēŕ màńũàĺĺŷ</target>
|
<target>Ćōńƒĩĝũŕē ŚÀMĹ ƥŕōvĩďēŕ màńũàĺĺŷ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
<target>ŔÀĎĨŨŚ Ćōńƒĩĝũŕàţĩōń</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
<target>Ćōńƒĩĝũŕē ŔÀĎĨŨŚ ƥŕōvĩďēŕ màńũàĺĺŷ</target>
|
<target>Ćōńƒĩĝũŕē ŔÀĎĨŨŚ ƥŕōvĩďēŕ màńũàĺĺŷ</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
<target>ŚĆĨM ćōńƒĩĝũŕàţĩōń</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
<target>Ćōńƒĩĝũŕē ŚĆĨM ƥŕōvĩďēŕ màńũàĺĺŷ</target>
|
<target>Ćōńƒĩĝũŕē ŚĆĨM ƥŕōvĩďēŕ màńũàĺĺŷ</target>
|
||||||
|
@ -7827,4 +7797,43 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
|
</trans-unit>
|
||||||
</body></file></xliff>
|
</body></file></xliff>
|
||||||
|
|
|
@ -3270,14 +3270,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>Kullanıcı Bilgileri</target>
|
<target>Kullanıcı Bilgileri</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>Kurtarma bağlantısı oluşturmak için geçerli sakinin yapılandırılmış bir kurtarma akışı olması gerekir.</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>Parolayı Sıfırla</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5715,39 +5707,24 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="se2b29e6cfe59414c">
|
<trans-unit id="se2b29e6cfe59414c">
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s945a6b94361ee45b">
|
<trans-unit id="s945a6b94361ee45b">
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s40830ec037f34626">
|
<trans-unit id="s40830ec037f34626">
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5912,6 +5889,45 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -4351,16 +4351,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>用户信息</target>
|
<target>用户信息</target>
|
||||||
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>要创建恢复链接,当前租户需要配置恢复流程。</target>
|
|
||||||
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>重置密码</target>
|
|
||||||
|
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
|
@ -7632,10 +7622,6 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
<target>用户界面设置</target>
|
<target>用户界面设置</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
<target>OAuth2/OpenID</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
<target>透明反向代理</target>
|
<target>透明反向代理</target>
|
||||||
|
@ -7644,18 +7630,10 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
<target>适用于需要验证身份的透明反向代理</target>
|
<target>适用于需要验证身份的透明反向代理</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
<target>Forward Auth 单应用</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
<target>适用于 nginx 的 auth_request 或 traefik 的 forwardAuth</target>
|
<target>适用于 nginx 的 auth_request 或 traefik 的 forwardAuth</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
<target>Forward Auth 域名级</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
<target>适用于按根域名配置的 nginx 的 auth_request 或 traefik 的 forwardAuth</target>
|
<target>适用于按根域名配置的 nginx 的 auth_request 或 traefik 的 forwardAuth</target>
|
||||||
|
@ -7664,18 +7642,10 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
<target>手动配置 SAML 提供程序</target>
|
<target>手动配置 SAML 提供程序</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
<target>RADIUS 配置</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
<target>手动配置 RADIUS 提供程序</target>
|
<target>手动配置 RADIUS 提供程序</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
<target>SCIM 配置</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
<target>手动配置 SCIM 提供程序</target>
|
<target>手动配置 SCIM 提供程序</target>
|
||||||
|
@ -7897,6 +7867,45 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
<target>运行演示向导</target>
|
<target>运行演示向导</target>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -3297,14 +3297,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>用户信息</target>
|
<target>用户信息</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>要创建恢复链接,当前租户需要配置恢复流程。</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>重置密码</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5763,39 +5755,24 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="se2b29e6cfe59414c">
|
<trans-unit id="se2b29e6cfe59414c">
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s945a6b94361ee45b">
|
<trans-unit id="s945a6b94361ee45b">
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s40830ec037f34626">
|
<trans-unit id="s40830ec037f34626">
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5960,6 +5937,45 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
|
@ -3297,14 +3297,6 @@ doesn't pass when either or both of the selected options are equal or above the
|
||||||
<source>User Info</source>
|
<source>User Info</source>
|
||||||
<target>用户信息</target>
|
<target>用户信息</target>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s06f79477aff0576c">
|
|
||||||
<source>To create a recovery link, the current tenant needs to have a recovery flow configured.</source>
|
|
||||||
<target>要创建恢复链接,当前租户需要配置恢复流程。</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sed80a99ca1491909">
|
|
||||||
<source>Reset Password</source>
|
|
||||||
<target>重置密码</target>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sc44bae5cde0083fa">
|
<trans-unit id="sc44bae5cde0083fa">
|
||||||
<source>Actions over the last week (per 8 hours)</source>
|
<source>Actions over the last week (per 8 hours)</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5762,39 +5754,24 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
<trans-unit id="se2b29e6cfe59414c">
|
<trans-unit id="se2b29e6cfe59414c">
|
||||||
<source>UI Settings</source>
|
<source>UI Settings</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="sf45734291c57c606">
|
|
||||||
<source>OAuth2/OpenID</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="s836148f721d8913b">
|
<trans-unit id="s836148f721d8913b">
|
||||||
<source>Transparent Reverse Proxy</source>
|
<source>Transparent Reverse Proxy</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s945a6b94361ee45b">
|
<trans-unit id="s945a6b94361ee45b">
|
||||||
<source>For transparent reverse proxies with required authentication</source>
|
<source>For transparent reverse proxies with required authentication</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s60e79e1793e6bd56">
|
|
||||||
<source>Forward Auth Single Application</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sadf073913458acbd">
|
<trans-unit id="sadf073913458acbd">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
<source>For nginx's auth_request or traefix's forwardAuth</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s4425a1002597151e">
|
|
||||||
<source>Forward Auth Domain Level</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="se770e9498b3bacf6">
|
<trans-unit id="se770e9498b3bacf6">
|
||||||
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
<source>For nginx's auth_request or traefix's forwardAuth per root domain</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s40830ec037f34626">
|
<trans-unit id="s40830ec037f34626">
|
||||||
<source>Configure SAML provider manually</source>
|
<source>Configure SAML provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s154eea2a61d44655">
|
|
||||||
<source>RADIUS Configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sea9fc40dfd1d18b1">
|
<trans-unit id="sea9fc40dfd1d18b1">
|
||||||
<source>Configure RADIUS provider manually</source>
|
<source>Configure RADIUS provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s5a8f04c6ef292743">
|
|
||||||
<source>SCIM configuration</source>
|
|
||||||
</trans-unit>
|
|
||||||
<trans-unit id="sa1b0052ae095b9b3">
|
<trans-unit id="sa1b0052ae095b9b3">
|
||||||
<source>Configure SCIM provider manually</source>
|
<source>Configure SCIM provider manually</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -5959,6 +5936,45 @@ Bindings to groups/users are checked against the user of the event.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="s77505ee5d2e45e53">
|
<trans-unit id="s77505ee5d2e45e53">
|
||||||
<source>Run the demo wizard</source>
|
<source>Run the demo wizard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4498e890d47a8066">
|
||||||
|
<source>OAuth2/OIDC (Open Authorization/OpenID Connect)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s4f2e195d09e2868c">
|
||||||
|
<source>LDAP (Lightweight Directory Access Protocol)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f5bb0c9923315ed">
|
||||||
|
<source>Forward Auth (Single Application)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sf8008d2d6b064b95">
|
||||||
|
<source>Forward Auth (Domain Level)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sfa8a1ffa9fee07d3">
|
||||||
|
<source>SAML (Security Assertion Markup Language)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s848a23972e388662">
|
||||||
|
<source>RADIUS (Remote Authentication Dial-In User Service)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s3e902999ddf7b50e">
|
||||||
|
<source>SCIM (System for Cross-domain Identity Management)</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="sdc5690be4a342985">
|
||||||
|
<source>The token has been copied to your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s7f3edfee24690c9f">
|
||||||
|
<source>The token was displayed because authentik does not have permission to write to the clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="saf6097bfa25205b8">
|
||||||
|
<source>A copy of this recovery link has been placed in your clipboard</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s5b8ee296ed258568">
|
||||||
|
<source>The current tenant must have a recovery flow configured to use a recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="s895514dda9cb9c94">
|
||||||
|
<source>Create recovery link</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="se5c795faf2c07514">
|
||||||
|
<source>Create Recovery Link</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
</body>
|
</body>
|
||||||
</file>
|
</file>
|
||||||
|
|
Reference in New Issue