web/admin: rework admin dashboard, add more links, remove user and group graphs (#4399)

This commit is contained in:
Jens L 2023-01-10 23:47:55 +01:00 committed by GitHub
parent 2a83d79ace
commit b424c5dd27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
26 changed files with 823 additions and 669 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-01-05 13:59+0000\n" "POT-Creation-Date: 2023-01-10 22:35+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -31,15 +31,23 @@ msgstr ""
msgid "Validation Error" msgid "Validation Error"
msgstr "" msgstr ""
#: authentik/blueprints/models.py:42 #: authentik/blueprints/api.py:52
msgid "Failed to validate blueprint"
msgstr ""
#: authentik/blueprints/api.py:57
msgid "Either path or content must be set."
msgstr ""
#: authentik/blueprints/models.py:30
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "" msgstr ""
#: authentik/blueprints/models.py:155 #: authentik/blueprints/models.py:113
msgid "Blueprint Instance" msgid "Blueprint Instance"
msgstr "" msgstr ""
#: authentik/blueprints/models.py:156 #: authentik/blueprints/models.py:114
msgid "Blueprint Instances" msgid "Blueprint Instances"
msgstr "" msgstr ""

View File

@ -1,15 +1,13 @@
import "@goauthentik/admin/admin-overview/TopApplicationsTable"; import "@goauthentik/admin/admin-overview/TopApplicationsTable";
import "@goauthentik/admin/admin-overview/cards/AdminStatusCard"; import "@goauthentik/admin/admin-overview/cards/AdminStatusCard";
import "@goauthentik/admin/admin-overview/cards/RecentEventsCard";
import "@goauthentik/admin/admin-overview/cards/SystemStatusCard"; import "@goauthentik/admin/admin-overview/cards/SystemStatusCard";
import "@goauthentik/admin/admin-overview/cards/VersionStatusCard"; import "@goauthentik/admin/admin-overview/cards/VersionStatusCard";
import "@goauthentik/admin/admin-overview/cards/WorkerStatusCard"; import "@goauthentik/admin/admin-overview/cards/WorkerStatusCard";
import "@goauthentik/admin/admin-overview/charts/AdminLoginAuthorizeChart"; import "@goauthentik/admin/admin-overview/charts/AdminLoginAuthorizeChart";
import "@goauthentik/admin/admin-overview/charts/FlowStatusChart";
import "@goauthentik/admin/admin-overview/charts/GroupCountStatusChart";
import "@goauthentik/admin/admin-overview/charts/LDAPSyncStatusChart"; import "@goauthentik/admin/admin-overview/charts/LDAPSyncStatusChart";
import "@goauthentik/admin/admin-overview/charts/OutpostStatusChart"; import "@goauthentik/admin/admin-overview/charts/OutpostStatusChart";
import "@goauthentik/admin/admin-overview/charts/PolicyStatusChart"; import { VERSION } from "@goauthentik/common/constants";
import "@goauthentik/admin/admin-overview/charts/UserCountStatusChart";
import { me } from "@goauthentik/common/users"; import { me } from "@goauthentik/common/users";
import { AKElement } from "@goauthentik/elements/Base"; import { AKElement } from "@goauthentik/elements/Base";
import "@goauthentik/elements/PageHeader"; import "@goauthentik/elements/PageHeader";
@ -28,6 +26,12 @@ import PFList from "@patternfly/patternfly/components/List/list.css";
import PFPage from "@patternfly/patternfly/components/Page/page.css"; import PFPage from "@patternfly/patternfly/components/Page/page.css";
import PFGrid from "@patternfly/patternfly/layouts/Grid/grid.css"; import PFGrid from "@patternfly/patternfly/layouts/Grid/grid.css";
export function versionFamily(): string {
const parts = VERSION.split(".");
parts.pop();
return parts.join(".");
}
@customElement("ak-admin-overview") @customElement("ak-admin-overview")
export class AdminOverviewPage extends AKElement { export class AdminOverviewPage extends AKElement {
static get styles(): CSSResult[] { static get styles(): CSSResult[] {
@ -72,8 +76,9 @@ export class AdminOverviewPage extends AKElement {
<section class="pf-c-page__main-section"> <section class="pf-c-page__main-section">
<div class="pf-l-grid pf-m-gutter"> <div class="pf-l-grid pf-m-gutter">
<!-- row 1 --> <!-- row 1 -->
<div class="pf-l-grid__item pf-m-6-col pf-l-grid pf-m-gutter">
<div <div
class="pf-l-grid__item pf-m-6-col pf-m-4-col-on-xl pf-m-2-col-on-2xl graph-container" class="pf-l-grid__item pf-m-12-col pf-m-8-col-on-xl pf-m-4-col-on-2xl graph-container"
> >
<ak-aggregate-card <ak-aggregate-card
icon="fa fa-share" icon="fa fa-share"
@ -103,22 +108,27 @@ export class AdminOverviewPage extends AKElement {
>${t`Explore integrations`}</a >${t`Explore integrations`}</a
> >
</li> </li>
<li>
<a class="pf-u-mb-xl" href=${paramURL("/identity/users")}
>${t`Manage users`}</a
>
</li>
<li>
<a
class="pf-u-mb-xl"
target="_blank"
href="https://goauthentik.io/docs/releases/${versionFamily()}#fixed-in-${VERSION.replaceAll(
".",
"",
)}"
>${t`Check release notes`}</a
>
</li>
</ul> </ul>
</ak-aggregate-card> </ak-aggregate-card>
</div> </div>
<div <div
class="pf-l-grid__item pf-m-6-col pf-m-4-col-on-xl pf-m-2-col-on-2xl graph-container" class="pf-l-grid__item pf-m-12-col pf-m-8-col-on-xl pf-m-4-col-on-2xl graph-container"
>
<ak-aggregate-card
icon="pf-icon pf-icon-process-automation"
header=${t`Flows`}
headerLink="#/flow/flows"
>
<ak-admin-status-chart-flow></ak-admin-status-chart-flow>
</ak-aggregate-card>
</div>
<div
class="pf-l-grid__item pf-m-6-col pf-m-4-col-on-xl pf-m-2-col-on-2xl graph-container"
> >
<ak-aggregate-card <ak-aggregate-card
icon="pf-icon pf-icon-zone" icon="pf-icon pf-icon-zone"
@ -129,29 +139,7 @@ export class AdminOverviewPage extends AKElement {
</ak-aggregate-card> </ak-aggregate-card>
</div> </div>
<div <div
class="pf-l-grid__item pf-m-6-col pf-m-4-col-on-xl pf-m-2-col-on-2xl graph-container" class="pf-l-grid__item pf-m-12-col pf-m-8-col-on-xl pf-m-4-col-on-2xl graph-container"
>
<ak-aggregate-card
icon="pf-icon pf-icon-user"
header=${t`Users`}
headerLink="#/identity/users"
>
<ak-admin-status-chart-user-count></ak-admin-status-chart-user-count>
</ak-aggregate-card>
</div>
<div
class="pf-l-grid__item pf-m-6-col pf-m-4-col-on-xl pf-m-2-col-on-2xl graph-container"
>
<ak-aggregate-card
icon="pf-icon pf-icon-users"
header=${t`Groups`}
headerLink="#/identity/groups"
>
<ak-admin-status-chart-group-count></ak-admin-status-chart-group-count>
</ak-aggregate-card>
</div>
<div
class="pf-l-grid__item pf-m-6-col pf-m-4-col-on-xl pf-m-2-col-on-2xl graph-container"
> >
<ak-aggregate-card <ak-aggregate-card
icon="fa fa-sync-alt" icon="fa fa-sync-alt"
@ -164,7 +152,6 @@ export class AdminOverviewPage extends AKElement {
<div class="pf-l-grid__item pf-m-12-col row-divider"> <div class="pf-l-grid__item pf-m-12-col row-divider">
<hr /> <hr />
</div> </div>
<!-- row 2 -->
<div <div
class="pf-l-grid__item pf-m-6-col pf-m-4-col-on-md pf-m-4-col-on-xl card-container" class="pf-l-grid__item pf-m-6-col pf-m-4-col-on-md pf-m-4-col-on-xl card-container"
> >
@ -180,6 +167,10 @@ export class AdminOverviewPage extends AKElement {
> >
<ak-admin-status-card-workers> </ak-admin-status-card-workers> <ak-admin-status-card-workers> </ak-admin-status-card-workers>
</div> </div>
</div>
<div class="pf-l-grid__item pf-m-6-col">
<ak-recent-events pageSize="6"></ak-recent-events>
</div>
<div class="pf-l-grid__item pf-m-12-col row-divider"> <div class="pf-l-grid__item pf-m-12-col row-divider">
<hr /> <hr />
</div> </div>

View File

@ -1,7 +1,7 @@
import "@goauthentik/admin/admin-overview/charts/AdminModelPerDay";
import { AKElement } from "@goauthentik/elements/Base"; import { AKElement } from "@goauthentik/elements/Base";
import "@goauthentik/elements/PageHeader"; import "@goauthentik/elements/PageHeader";
import "@goauthentik/elements/cards/AggregatePromiseCard"; import "@goauthentik/elements/cards/AggregatePromiseCard";
import "@goauthentik/elements/charts/AdminModelPerDay";
import { t } from "@lingui/macro"; import { t } from "@lingui/macro";

View File

@ -0,0 +1,104 @@
import "@goauthentik/admin/events/EventInfo";
import { ActionToLabel } from "@goauthentik/admin/events/utils";
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
import { EventWithContext } from "@goauthentik/common/events";
import "@goauthentik/elements/Tabs";
import "@goauthentik/elements/buttons/Dropdown";
import "@goauthentik/elements/buttons/ModalButton";
import "@goauthentik/elements/buttons/SpinnerButton";
import { KeyUnknown } from "@goauthentik/elements/forms/Form";
import { PaginatedResponse } from "@goauthentik/elements/table/Table";
import { Table, TableColumn } from "@goauthentik/elements/table/Table";
import { t } from "@lingui/macro";
import { CSSResult, TemplateResult, css, html } from "lit";
import { customElement, property } from "lit/decorators.js";
import PFCard from "@patternfly/patternfly/components/Card/card.css";
import { Event, EventsApi } from "@goauthentik/api";
@customElement("ak-recent-events")
export class RecentEventsCard extends Table<Event> {
@property()
order = "-created";
@property()
pageSize = 10;
async apiEndpoint(page: number): Promise<PaginatedResponse<Event>> {
return new EventsApi(DEFAULT_CONFIG).eventsEventsList({
ordering: this.order,
page: page,
pageSize: this.pageSize,
search: this.search || "",
});
}
static get styles(): CSSResult[] {
return super.styles.concat(
PFCard,
css`
.pf-c-card__title {
--pf-c-card__title--FontFamily: var(
--pf-global--FontFamily--heading--sans-serif
);
--pf-c-card__title--FontSize: var(--pf-global--FontSize--md);
--pf-c-card__title--FontWeight: var(--pf-global--FontWeight--bold);
}
`,
);
}
columns(): TableColumn[] {
return [
new TableColumn(t`Action`, "action"),
new TableColumn(t`User`, "user"),
new TableColumn(t`Creation Date`, "created"),
new TableColumn(t`Client IP`, "client_ip"),
new TableColumn(t`Tenant`, "tenant_name"),
];
}
renderToolbar(): TemplateResult {
return html`<div class="pf-c-card__title">
<i class="pf-icon pf-icon-catalog"></i>&nbsp;${t`Recent events`}
</div>`;
}
row(item: EventWithContext): TemplateResult[] {
let geo: KeyUnknown | undefined = undefined;
if (Object.hasOwn(item.context, "geo")) {
geo = item.context.geo as KeyUnknown;
}
return [
html`<div><a href="${`#/events/log/${item.pk}`}">${ActionToLabel(item.action)}</a></div>
<small>${item.app}</small>`,
item.user?.username
? html`<div>
<a href="#/identity/users/${item.user.pk}"
>${item.user?.username.substring(0, 15)}</a
>
</div>
${item.user.on_behalf_of
? html`<small>
<a href="#/identity/users/${item.user.on_behalf_of.pk}"
>${t`On behalf of ${item.user.on_behalf_of.username}`}</a
>
</small>`
: html``}`
: html`-`,
html`<span>${item.created?.toLocaleString()}</span>`,
html` <div>${item.clientIp || t`-`}</div>
${geo ? html`<small>${geo.city}, ${geo.country}</small> ` : html``}`,
html`<span>${item.tenant?.name || t`-`}</span>`,
];
}
renderEmpty(): TemplateResult {
return super.renderEmpty(html`<ak-empty-state header=${t`No Events found.`}>
<div slot="body">${t`No matching events could be found.`}</div>
</ak-empty-state>`);
}
}

View File

@ -72,6 +72,7 @@ export class SystemStatusCard extends AdminStatusCard<System> {
message: html`${t`Server and client are further than 5 seconds apart.`}`, message: html`${t`Server and client are further than 5 seconds apart.`}`,
}); });
} }
this.header = t`OK`;
return Promise.resolve<AdminStatus>({ return Promise.resolve<AdminStatus>({
icon: "fa fa-check-circle pf-m-success", icon: "fa fa-check-circle pf-m-success",
message: html`${t`Everything is ok.`}`, message: html`${t`Everything is ok.`}`,

View File

@ -1,61 +0,0 @@
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
import { AKChart } from "@goauthentik/elements/charts/Chart";
import "@goauthentik/elements/forms/ConfirmationForm";
import { ChartData, ChartOptions } from "chart.js";
import { t } from "@lingui/macro";
import { customElement } from "lit/decorators.js";
import { FlowsApi } from "@goauthentik/api";
interface FlowMetrics {
count: number;
cached: number;
}
@customElement("ak-admin-status-chart-flow")
export class PolicyStatusChart extends AKChart<FlowMetrics> {
getChartType(): string {
return "doughnut";
}
getOptions(): ChartOptions {
return {
plugins: {
legend: {
display: false,
},
},
maintainAspectRatio: false,
};
}
async apiRequest(): Promise<FlowMetrics> {
const api = new FlowsApi(DEFAULT_CONFIG);
const cached = (await api.flowsInstancesCacheInfoRetrieve()).count || 0;
const count = (
await api.flowsInstancesList({
pageSize: 1,
})
).pagination.count;
this.centerText = count.toString();
return {
count: count - cached,
cached: cached,
};
}
getChartData(data: FlowMetrics): ChartData {
return {
labels: [t`Total flows`, t`Cached flows`],
datasets: [
{
backgroundColor: ["#2b9af3", "#3e8635"],
spanGaps: true,
data: [data.count, data.cached],
},
],
};
}
}

View File

@ -1,64 +0,0 @@
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
import { AKChart } from "@goauthentik/elements/charts/Chart";
import { ChartData, ChartOptions } from "chart.js";
import { t } from "@lingui/macro";
import { customElement } from "lit/decorators.js";
import { CoreApi } from "@goauthentik/api";
interface GroupMetrics {
count: number;
superusers: number;
}
@customElement("ak-admin-status-chart-group-count")
export class GroupCountStatusChart extends AKChart<GroupMetrics> {
getChartType(): string {
return "doughnut";
}
getOptions(): ChartOptions {
return {
plugins: {
legend: {
display: false,
},
},
maintainAspectRatio: false,
};
}
async apiRequest(): Promise<GroupMetrics> {
const api = new CoreApi(DEFAULT_CONFIG);
const count = (
await api.coreGroupsList({
pageSize: 1,
})
).pagination.count;
const superusers = (
await api.coreGroupsList({
isSuperuser: true,
})
).pagination.count;
this.centerText = count.toString();
return {
count: count - superusers,
superusers,
};
}
getChartData(data: GroupMetrics): ChartData {
return {
labels: [t`Total groups`, t`Superuser-groups`],
datasets: [
{
backgroundColor: ["#2b9af3", "#3e8635"],
spanGaps: true,
data: [data.count, data.superusers],
},
],
};
}
}

View File

@ -1,71 +0,0 @@
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
import { AKChart } from "@goauthentik/elements/charts/Chart";
import "@goauthentik/elements/forms/ConfirmationForm";
import { ChartData, ChartOptions } from "chart.js";
import { t } from "@lingui/macro";
import { customElement } from "lit/decorators.js";
import { PoliciesApi } from "@goauthentik/api";
interface PolicyMetrics {
count: number;
cached: number;
unbound: number;
}
@customElement("ak-admin-status-chart-policy")
export class PolicyStatusChart extends AKChart<PolicyMetrics> {
getChartType(): string {
return "doughnut";
}
getOptions(): ChartOptions {
return {
plugins: {
legend: {
display: false,
},
},
maintainAspectRatio: false,
};
}
async apiRequest(): Promise<PolicyMetrics> {
const api = new PoliciesApi(DEFAULT_CONFIG);
const cached = (await api.policiesAllCacheInfoRetrieve()).count || 0;
const count = (
await api.policiesAllList({
pageSize: 1,
})
).pagination.count;
const unbound = (
await api.policiesAllList({
bindingsIsnull: true,
promptstageIsnull: true,
})
).pagination.count;
this.centerText = count.toString();
return {
// If we have more cache than total policies, only show that
// otherwise show count without unbound
count: cached >= count ? cached : count - unbound,
cached: cached,
unbound: unbound,
};
}
getChartData(data: PolicyMetrics): ChartData {
return {
labels: [t`Total policies`, t`Cached policies`, t`Unbound policies`],
datasets: [
{
backgroundColor: ["#2b9af3", "#3e8635", "#f0ab00"],
spanGaps: true,
data: [data.count, data.cached, data.unbound],
},
],
};
}
}

View File

@ -1,64 +0,0 @@
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
import { AKChart } from "@goauthentik/elements/charts/Chart";
import { ChartData, ChartOptions } from "chart.js";
import { t } from "@lingui/macro";
import { customElement } from "lit/decorators.js";
import { CoreApi } from "@goauthentik/api";
interface UserMetrics {
count: number;
superusers: number;
}
@customElement("ak-admin-status-chart-user-count")
export class UserCountStatusChart extends AKChart<UserMetrics> {
getChartType(): string {
return "doughnut";
}
getOptions(): ChartOptions {
return {
plugins: {
legend: {
display: false,
},
},
maintainAspectRatio: false,
};
}
async apiRequest(): Promise<UserMetrics> {
const api = new CoreApi(DEFAULT_CONFIG);
const count = (
await api.coreUsersList({
pageSize: 1,
})
).pagination.count;
const superusers = (
await api.coreUsersList({
isSuperuser: true,
})
).pagination.count;
this.centerText = count.toString();
return {
count: count - superusers,
superusers,
};
}
getChartData(data: UserMetrics): ChartData {
return {
labels: [t`Total users`, t`Superusers`],
datasets: [
{
backgroundColor: ["#2b9af3", "#3e8635"],
spanGaps: true,
data: [data.count, data.superusers],
},
],
};
}
}

View File

@ -1,3 +1,4 @@
import "@goauthentik/admin/applications/ApplicationAuthorizeChart";
import "@goauthentik/admin/applications/ApplicationCheckAccessForm"; import "@goauthentik/admin/applications/ApplicationCheckAccessForm";
import "@goauthentik/admin/applications/ApplicationForm"; import "@goauthentik/admin/applications/ApplicationForm";
import "@goauthentik/admin/policies/BoundPoliciesList"; import "@goauthentik/admin/policies/BoundPoliciesList";
@ -7,7 +8,6 @@ import "@goauthentik/elements/EmptyState";
import "@goauthentik/elements/PageHeader"; import "@goauthentik/elements/PageHeader";
import "@goauthentik/elements/Tabs"; import "@goauthentik/elements/Tabs";
import "@goauthentik/elements/buttons/SpinnerButton"; import "@goauthentik/elements/buttons/SpinnerButton";
import "@goauthentik/elements/charts/ApplicationAuthorizeChart";
import "@goauthentik/elements/events/ObjectChangelog"; import "@goauthentik/elements/events/ObjectChangelog";
import { t } from "@lingui/macro"; import { t } from "@lingui/macro";

View File

@ -1,5 +1,6 @@
import "@goauthentik/admin/groups/RelatedGroupList"; import "@goauthentik/admin/groups/RelatedGroupList";
import "@goauthentik/admin/users/UserActiveForm"; import "@goauthentik/admin/users/UserActiveForm";
import "@goauthentik/admin/users/UserChart";
import "@goauthentik/admin/users/UserForm"; import "@goauthentik/admin/users/UserForm";
import "@goauthentik/admin/users/UserPasswordForm"; import "@goauthentik/admin/users/UserPasswordForm";
import { DEFAULT_CONFIG, config } from "@goauthentik/common/api/config"; import { DEFAULT_CONFIG, config } from "@goauthentik/common/api/config";
@ -13,7 +14,6 @@ import { PFSize } from "@goauthentik/elements/Spinner";
import "@goauthentik/elements/Tabs"; import "@goauthentik/elements/Tabs";
import "@goauthentik/elements/buttons/ActionButton"; import "@goauthentik/elements/buttons/ActionButton";
import "@goauthentik/elements/buttons/SpinnerButton"; import "@goauthentik/elements/buttons/SpinnerButton";
import "@goauthentik/elements/charts/UserChart";
import "@goauthentik/elements/events/ObjectChangelog"; import "@goauthentik/elements/events/ObjectChangelog";
import "@goauthentik/elements/events/UserEvents"; import "@goauthentik/elements/events/UserEvents";
import "@goauthentik/elements/forms/ModalForm"; import "@goauthentik/elements/forms/ModalForm";

View File

@ -47,6 +47,8 @@ msgstr "(Format: hours=-1;minutes=-2;seconds=-3)."
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "(Format: hours=-1;minutes=-2;seconds=-3)." msgstr "(Format: hours=-1;minutes=-2;seconds=-3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -212,6 +214,7 @@ msgstr "Zugangstoken-URL"
msgid "Access token validity" msgid "Access token validity"
msgstr "Zugangstokengültigkeit" msgstr "Zugangstokengültigkeit"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -516,7 +519,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "Applikationsgenehmigungen" msgstr "Applikationsgenehmigungen"
@ -738,7 +741,7 @@ msgid "Authorization flow"
msgstr "Autorisierungsablauf" msgstr "Autorisierungsablauf"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "Berechtigungen" msgstr "Berechtigungen"
@ -879,6 +882,10 @@ msgstr "Verknüpfung"
msgid "Binding Type" msgid "Binding Type"
msgstr "Verknüpfungstyp" msgstr "Verknüpfungstyp"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -937,12 +944,12 @@ msgstr ""
#~ msgstr "Zwischengespeicherte Bindung, Flow wird ausgeführt und Sitzung wird im Arbeitsspeicher zwischengespeichert. Flow wird ausgeführt, wenn die Sitzung abläuft." #~ msgstr "Zwischengespeicherte Bindung, Flow wird ausgeführt und Sitzung wird im Arbeitsspeicher zwischengespeichert. Flow wird ausgeführt, wenn die Sitzung abläuft."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "Gecachte Abläufe" #~ msgstr "Gecachte Abläufe"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "Gecachte Richtlinien" #~ msgstr "Gecachte Richtlinien"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1098,6 +1105,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "Outposts prüfen" msgstr "Outposts prüfen"
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1202,6 +1213,7 @@ msgstr "Token kopieren"
msgid "Client ID" msgid "Client ID"
msgstr "Client-ID" msgstr "Client-ID"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1705,6 +1717,7 @@ msgstr "Erstellt von"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "{0} erstellt" #~ msgstr "{0} erstellt"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2075,6 +2088,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "Duo-Aktivierung" msgstr "Duo-Aktivierung"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Duo-Authentifikator" msgstr "Duo-Authentifikator"
@ -2453,7 +2470,7 @@ msgid "External host"
msgstr "Externer Host" msgstr "Externer Host"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "Fehlgeschlagene Anmeldungen" msgstr "Fehlgeschlagene Anmeldungen"
@ -2637,7 +2654,6 @@ msgid "Flow(s)"
msgstr "Ablauf/Abläufe" msgstr "Ablauf/Abläufe"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2812,7 +2828,6 @@ msgid "Group(s)"
msgstr "Gruppe(n)" msgstr "Gruppe(n)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3132,6 +3147,10 @@ msgstr "Integrationsschlüssel"
msgid "Intent" msgid "Intent"
msgstr "Zweck" msgstr "Zweck"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "Interner Host" msgstr "Interner Host"
@ -3540,6 +3559,10 @@ msgstr "Machine-to-Machine-Authentifizierungseinstellungen"
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "Bewahren Sie diese Tokens an einem sicheren Ort auf." msgstr "Bewahren Sie diese Tokens an einem sicheren Ort auf."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "Verwaltet durch Authentik" msgstr "Verwaltet durch Authentik"
@ -3891,6 +3914,7 @@ msgstr "Nein"
msgid "No Applications available." msgid "No Applications available."
msgstr "Keine Anwendungen vorhanden." msgstr "Keine Anwendungen vorhanden."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3929,6 +3953,7 @@ msgstr "Keine Integrationen aktiv"
msgid "No log messages." msgid "No log messages."
msgstr "Keine Logeinträge." msgstr "Keine Logeinträge."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4106,9 +4131,9 @@ msgstr ""
msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
msgstr "Bekannte OIDC-Konfigurations-URL. Kann verwendet werden, um die obigen URLs automatisch zu konfigurieren." msgstr "Bekannte OIDC-Konfigurations-URL. Kann verwendet werden, um die obigen URLs automatisch zu konfigurieren."
#: src/pages/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "OK" msgstr "OK"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4123,7 +4148,7 @@ msgstr "Objektfeld"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "Feld für die Eindeutigkeit des Objekts" msgstr "Feld für die Eindeutigkeit des Objekts"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "Objekte erstellt" msgstr "Objekte erstellt"
@ -4134,6 +4159,7 @@ msgstr ""
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "Die Einwilligung erlischt in. (Format: Stunden=1;Minuten=2;Sekunden=3)." #~ msgstr "Die Einwilligung erlischt in. (Format: Stunden=1;Minuten=2;Sekunden=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4743,6 +4769,10 @@ msgstr "Richtlinien neu bewerten"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "Erhalten Sie eine Push-Benachrichtigung auf Ihrem Gerät." msgstr "Erhalten Sie eine Push-Benachrichtigung auf Ihrem Gerät."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5685,7 +5715,7 @@ msgid "Successful"
msgstr "Erfolgreich" msgstr "Erfolgreich"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "Erfolgreiche Anmeldungen" msgstr "Erfolgreiche Anmeldungen"
@ -6030,12 +6060,12 @@ msgid "Superuser privileges?"
msgstr "Administrationsrechte?" msgstr "Administrationsrechte?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "Superuser-Gruppen" #~ msgstr "Superuser-Gruppen"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "Administratoren" #~ msgstr "Administratoren"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6134,6 +6164,7 @@ msgstr "Aufgabe mit Warnungen beendet"
msgid "Template" msgid "Template"
msgstr "Schablone" msgstr "Schablone"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "Umgebung" msgstr "Umgebung"
@ -6444,20 +6475,20 @@ msgid "Tokens sent via SMS."
msgstr "Per SMS versendete Token." msgstr "Per SMS versendete Token."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "Abläufe insgesamt" #~ msgstr "Abläufe insgesamt"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "Gruppen insgesamt" #~ msgstr "Gruppen insgesamt"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "Richtlinien insgesamt" #~ msgstr "Richtlinien insgesamt"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "Benutzer insgesamt" #~ msgstr "Benutzer insgesamt"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6598,8 +6629,8 @@ msgid "Unauthenticated URLs"
msgstr "Nicht authentifizierte URLs" msgstr "Nicht authentifizierte URLs"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "Ungebundene Richtlinien" #~ msgstr "Ungebundene Richtlinien"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -6927,6 +6958,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7112,7 +7144,6 @@ msgstr "Benutzername: Wie bei der Texteingabe, prüft jedoch auf doppelte Benutz
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7579,7 +7610,7 @@ msgstr "\"{0}\", sollte \"{1}\" sein"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0}: {1}" msgstr "{0}: {1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "vor {ago} Tagen" msgstr "vor {ago} Tagen"

View File

@ -29,6 +29,8 @@ msgstr "(Format: hours=-1;minutes=-2;seconds=-3)."
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "(Format: hours=1;minutes=2;seconds=3)." msgstr "(Format: hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -191,6 +193,7 @@ msgstr "Access token URL"
msgid "Access token validity" msgid "Access token validity"
msgstr "Access token validity" msgstr "Access token validity"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -499,7 +502,7 @@ msgstr "Application Link"
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "Application already has access to the following permissions:" msgstr "Application already has access to the following permissions:"
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "Application authorizations" msgstr "Application authorizations"
@ -726,7 +729,7 @@ msgid "Authorization flow"
msgstr "Authorization flow" msgstr "Authorization flow"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "Authorizations" msgstr "Authorizations"
@ -870,6 +873,10 @@ msgstr "Binding"
msgid "Binding Type" msgid "Binding Type"
msgstr "Binding Type" msgstr "Binding Type"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr "Blueprint"
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "Blueprint(s)" msgstr "Blueprint(s)"
@ -929,12 +936,12 @@ msgstr "Cached binding"
#~ msgstr "Cached binding, flow is executed and session is cached in memory. Flow is executed when session expires." #~ msgstr "Cached binding, flow is executed and session is cached in memory. Flow is executed when session expires."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "Cached flows" #~ msgstr "Cached flows"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "Cached policies" #~ msgstr "Cached policies"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1093,6 +1100,10 @@ msgstr "Check haveibeenpwned.com"
msgid "Check outposts." msgid "Check outposts."
msgstr "Check outposts." msgstr "Check outposts."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr "Check release notes"
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "Check static rules" msgstr "Check static rules"
@ -1198,6 +1209,7 @@ msgstr "Click to copy token"
msgid "Client ID" msgid "Client ID"
msgstr "Client ID" msgstr "Client ID"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1710,6 +1722,7 @@ msgstr "Created by"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "Created {0}" #~ msgstr "Created {0}"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2097,6 +2110,10 @@ msgstr "Duo User ID"
msgid "Duo activation" msgid "Duo activation"
msgstr "Duo activation" msgstr "Duo activation"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr "Duo activation QR code"
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Duo authenticator" msgstr "Duo authenticator"
@ -2489,7 +2506,7 @@ msgid "External host"
msgstr "External host" msgstr "External host"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "Failed Logins" msgstr "Failed Logins"
@ -2674,7 +2691,6 @@ msgid "Flow(s)"
msgstr "Flow(s)" msgstr "Flow(s)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2851,7 +2867,6 @@ msgid "Group(s)"
msgstr "Group(s)" msgstr "Group(s)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3180,6 +3195,10 @@ msgstr "Integration key"
msgid "Intent" msgid "Intent"
msgstr "Intent" msgstr "Intent"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr "Internal"
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "Internal Host" msgstr "Internal Host"
@ -3596,6 +3615,10 @@ msgstr "Machine-to-Machine authentication settings"
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "Make sure to keep these tokens in a safe place." msgstr "Make sure to keep these tokens in a safe place."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr "Manage users"
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "Managed by authentik" msgstr "Managed by authentik"
@ -3948,6 +3971,7 @@ msgstr "No"
msgid "No Applications available." msgid "No Applications available."
msgstr "No Applications available." msgstr "No Applications available."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3986,6 +4010,7 @@ msgstr "No integration active"
msgid "No log messages." msgid "No log messages."
msgstr "No log messages." msgstr "No log messages."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4172,8 +4197,8 @@ msgid "OIDC well-known configuration URL. Can be used to automatically configure
msgstr "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgstr "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
#: src/admin/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "OK" msgstr "OK"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4188,7 +4213,7 @@ msgstr "Object field"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "Object uniqueness field" msgstr "Object uniqueness field"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "Objects created" msgstr "Objects created"
@ -4200,6 +4225,7 @@ msgstr "Offset after which consent expires."
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgstr "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4833,6 +4859,10 @@ msgstr "Re-evaluate policies"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "Receive a push notification on your device." msgstr "Receive a push notification on your device."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr "Recent events"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5814,7 +5844,7 @@ msgid "Successful"
msgstr "Successful" msgstr "Successful"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "Successful Logins" msgstr "Successful Logins"
@ -6164,12 +6194,12 @@ msgid "Superuser privileges?"
msgstr "Superuser privileges?" msgstr "Superuser privileges?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "Superuser-groups" #~ msgstr "Superuser-groups"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "Superusers" #~ msgstr "Superusers"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6273,6 +6303,7 @@ msgstr "Task finished with warnings"
msgid "Template" msgid "Template"
msgstr "Template" msgstr "Template"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "Tenant" msgstr "Tenant"
@ -6592,20 +6623,20 @@ msgid "Tokens sent via SMS."
msgstr "Tokens sent via SMS." msgstr "Tokens sent via SMS."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "Total flows" #~ msgstr "Total flows"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "Total groups" #~ msgstr "Total groups"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "Total policies" #~ msgstr "Total policies"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "Total users" #~ msgstr "Total users"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6746,8 +6777,8 @@ msgid "Unauthenticated URLs"
msgstr "Unauthenticated URLs" msgstr "Unauthenticated URLs"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "Unbound policies" #~ msgstr "Unbound policies"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -7076,6 +7107,7 @@ msgstr "Used to access the API programmatically"
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "Used to login using a flow executor" msgstr "Used to login using a flow executor"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7266,7 +7298,6 @@ msgstr "Username: Same as Text input, but checks for and prevents duplicate user
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7742,7 +7773,7 @@ msgstr "{0}, should be {1}"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0}: {1}" msgstr "{0}: {1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "{ago} days ago" msgstr "{ago} days ago"

View File

@ -31,6 +31,8 @@ msgstr "(Formato: hours=-1;minutes=-2;seconds=-3)."
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "(Formato: hours=1;minutes=2;seconds=3)." msgstr "(Formato: hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -196,6 +198,7 @@ msgstr "URL de token de acceso"
msgid "Access token validity" msgid "Access token validity"
msgstr "Validez de token de acceso" msgstr "Validez de token de acceso"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -494,7 +497,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "Autorizaciones de aplicación" msgstr "Autorizaciones de aplicación"
@ -716,7 +719,7 @@ msgid "Authorization flow"
msgstr "Flujo de autorización" msgstr "Flujo de autorización"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "Autorizaciones" msgstr "Autorizaciones"
@ -857,6 +860,10 @@ msgstr "Vinculación"
msgid "Binding Type" msgid "Binding Type"
msgstr "Tipo de vinculación" msgstr "Tipo de vinculación"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -915,12 +922,12 @@ msgstr ""
#~ msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "Flujos almacenados en caché" #~ msgstr "Flujos almacenados en caché"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "Políticas almacenadas en caché" #~ msgstr "Políticas almacenadas en caché"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1074,6 +1081,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "Comprobar controladores." msgstr "Comprobar controladores."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1178,6 +1189,7 @@ msgstr "Haga clic para copiar el token"
msgid "Client ID" msgid "Client ID"
msgstr "ID de cliente" msgstr "ID de cliente"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1681,6 +1693,7 @@ msgstr "Creado por"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "Creado {0}" #~ msgstr "Creado {0}"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2051,6 +2064,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "Activación Duo" msgstr "Activación Duo"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Autenticador Duo" msgstr "Autenticador Duo"
@ -2429,7 +2446,7 @@ msgid "External host"
msgstr "Servidor externo" msgstr "Servidor externo"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "inicios de sesión fallidos" msgstr "inicios de sesión fallidos"
@ -2613,7 +2630,6 @@ msgid "Flow(s)"
msgstr "Flujo(s)" msgstr "Flujo(s)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2788,7 +2804,6 @@ msgid "Group(s)"
msgstr "Grupo(s)" msgstr "Grupo(s)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3106,6 +3121,10 @@ msgstr "Clave de integración"
msgid "Intent" msgid "Intent"
msgstr "Intención" msgstr "Intención"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "Host Interno" msgstr "Host Interno"
@ -3516,6 +3535,10 @@ msgstr ""
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "Asegúrese de guardar estos tokens en un lugar seguro." msgstr "Asegúrese de guardar estos tokens en un lugar seguro."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "Gestionado por authentik" msgstr "Gestionado por authentik"
@ -3867,6 +3890,7 @@ msgstr "No"
msgid "No Applications available." msgid "No Applications available."
msgstr "No hay aplicaciones disponibles." msgstr "No hay aplicaciones disponibles."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3905,6 +3929,7 @@ msgstr "Sin integración activa"
msgid "No log messages." msgid "No log messages."
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4082,9 +4107,9 @@ msgstr ""
msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
msgstr "" msgstr ""
#: src/pages/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "OK" msgstr "OK"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4099,7 +4124,7 @@ msgstr "Campo objeto"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "Campo de exclusividad de objeto" msgstr "Campo de exclusividad de objeto"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "Objetos creados" msgstr "Objetos creados"
@ -4110,6 +4135,7 @@ msgstr ""
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "Tiempo después del cual caduca el consentimiento. (Formato: hours=1;minutes=2;seconds=3)." #~ msgstr "Tiempo después del cual caduca el consentimiento. (Formato: hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4719,6 +4745,10 @@ msgstr "Reevaluar las políticas"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "Reciba una notificación push en su dispositivo." msgstr "Reciba una notificación push en su dispositivo."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5661,7 +5691,7 @@ msgid "Successful"
msgstr "Éxito" msgstr "Éxito"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "Inicios de sesión exitosos" msgstr "Inicios de sesión exitosos"
@ -6006,12 +6036,12 @@ msgid "Superuser privileges?"
msgstr "¿Los privilegios de superusuario?" msgstr "¿Los privilegios de superusuario?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "Grupos de superusuarios" #~ msgstr "Grupos de superusuarios"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "Superusuarios" #~ msgstr "Superusuarios"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6110,6 +6140,7 @@ msgstr "Tarea finalizada con advertencias"
msgid "Template" msgid "Template"
msgstr "Plantilla" msgstr "Plantilla"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "inquilino" msgstr "inquilino"
@ -6420,20 +6451,20 @@ msgid "Tokens sent via SMS."
msgstr "Tokens enviados por SMS." msgstr "Tokens enviados por SMS."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "Flujos totales" #~ msgstr "Flujos totales"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "Grupos totales" #~ msgstr "Grupos totales"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "Políticas totales" #~ msgstr "Políticas totales"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "Usuarios totales" #~ msgstr "Usuarios totales"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6574,8 +6605,8 @@ msgid "Unauthenticated URLs"
msgstr "URL no autenticadas" msgstr "URL no autenticadas"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "Políticas independientes" #~ msgstr "Políticas independientes"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -6903,6 +6934,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7088,7 +7120,6 @@ msgstr "Nombre de usuario: igual que la entrada de texto, pero comprueba y evita
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7555,7 +7586,7 @@ msgstr "{0}, debe ser {1}"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0}: {1}" msgstr "{0}: {1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "{ago} días atrás" msgstr "{ago} días atrás"

View File

@ -36,6 +36,8 @@ msgstr "(Format : heures=-1;minutes=-2;seconds=-3)"
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "(Format : heures=-1;minutes=-2;secondes=-3)" msgstr "(Format : heures=-1;minutes=-2;secondes=-3)"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -201,6 +203,7 @@ msgstr "URL du jeton d'accès"
msgid "Access token validity" msgid "Access token validity"
msgstr "Validité du jeton d'accès" msgstr "Validité du jeton d'accès"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -499,7 +502,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "Autorisations de l'application" msgstr "Autorisations de l'application"
@ -721,7 +724,7 @@ msgid "Authorization flow"
msgstr "Flux d'autorisation" msgstr "Flux d'autorisation"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "Autorisations" msgstr "Autorisations"
@ -862,6 +865,10 @@ msgstr "Liaison"
msgid "Binding Type" msgid "Binding Type"
msgstr "Type de binding" msgstr "Type de binding"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -920,12 +927,12 @@ msgstr ""
#~ msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "Flux mis en cache" #~ msgstr "Flux mis en cache"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "Politiques mises en cache" #~ msgstr "Politiques mises en cache"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1079,6 +1086,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "Vérifier les avant-postes." msgstr "Vérifier les avant-postes."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1183,6 +1194,7 @@ msgstr "Cliquer pour copier le jeton"
msgid "Client ID" msgid "Client ID"
msgstr "ID client" msgstr "ID client"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1686,6 +1698,7 @@ msgstr "Créé par"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "Créé {0}" #~ msgstr "Créé {0}"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2054,6 +2067,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "Activation Duo" msgstr "Activation Duo"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Authentificateur Duo" msgstr "Authentificateur Duo"
@ -2432,7 +2449,7 @@ msgid "External host"
msgstr "Hôte externe" msgstr "Hôte externe"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "Connexions échouées" msgstr "Connexions échouées"
@ -2616,7 +2633,6 @@ msgid "Flow(s)"
msgstr "Flux" msgstr "Flux"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2791,7 +2807,6 @@ msgid "Group(s)"
msgstr "Groupe(s)" msgstr "Groupe(s)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3109,6 +3124,10 @@ msgstr "Clé d'intégration"
msgid "Intent" msgid "Intent"
msgstr "Intention" msgstr "Intention"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "Hôte interne" msgstr "Hôte interne"
@ -3517,6 +3536,10 @@ msgstr ""
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "" msgstr ""
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "Géré par authentik" msgstr "Géré par authentik"
@ -3868,6 +3891,7 @@ msgstr "Non"
msgid "No Applications available." msgid "No Applications available."
msgstr "Aucune Application disponible." msgstr "Aucune Application disponible."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3906,6 +3930,7 @@ msgstr "Aucune intégration active"
msgid "No log messages." msgid "No log messages."
msgstr "Pas de messages." msgstr "Pas de messages."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4083,9 +4108,9 @@ msgstr ""
msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
msgstr "" msgstr ""
#: src/pages/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "OK" msgstr "OK"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4100,7 +4125,7 @@ msgstr "Champ d'objet"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "Champ d'unicité de l'objet" msgstr "Champ d'unicité de l'objet"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "Objets créés" msgstr "Objets créés"
@ -4111,6 +4136,7 @@ msgstr ""
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "Durée d'expiration du consentement (Format : hours=1;minutes=2;seconds=3)." #~ msgstr "Durée d'expiration du consentement (Format : hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4720,6 +4746,10 @@ msgstr "Ré-évaluer les politiques"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "Recevoir une notification push sur votre téléphone." msgstr "Recevoir une notification push sur votre téléphone."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5662,7 +5692,7 @@ msgid "Successful"
msgstr "Réussite" msgstr "Réussite"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "Connexions réussies" msgstr "Connexions réussies"
@ -6007,12 +6037,12 @@ msgid "Superuser privileges?"
msgstr "Privilèges de super-utilisateur ?" msgstr "Privilèges de super-utilisateur ?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "Groupes de super-utilisateur" #~ msgstr "Groupes de super-utilisateur"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "Super-utilisateurs" #~ msgstr "Super-utilisateurs"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6111,6 +6141,7 @@ msgstr "Tâche terminée avec avertissements"
msgid "Template" msgid "Template"
msgstr "Modèle" msgstr "Modèle"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "Tenant" msgstr "Tenant"
@ -6411,20 +6442,20 @@ msgid "Tokens sent via SMS."
msgstr "Jetons envoyés par SMS." msgstr "Jetons envoyés par SMS."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "Flux totaux" #~ msgstr "Flux totaux"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "Groupes totaux" #~ msgstr "Groupes totaux"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "Politiques totales" #~ msgstr "Politiques totales"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "Utilisateurs totaux" #~ msgstr "Utilisateurs totaux"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6565,8 +6596,8 @@ msgid "Unauthenticated URLs"
msgstr "" msgstr ""
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "Politiques non liées" #~ msgstr "Politiques non liées"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -6894,6 +6925,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7079,7 +7111,6 @@ msgstr "Nom d'utilisateur : Identique à la saisie de texte, mais vérifie et em
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7544,7 +7575,7 @@ msgstr "{0}, devrait être {1}"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0} : {1}" msgstr "{0} : {1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "il y a {ago} jours" msgstr "il y a {ago} jours"

View File

@ -31,6 +31,8 @@ msgstr "(Format: hours=-1;minutes=-2;seconds=-3)."
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "(Format: hours=1;minutes=2;seconds=3)." msgstr "(Format: hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -196,6 +198,7 @@ msgstr "URL tokena dostępu"
msgid "Access token validity" msgid "Access token validity"
msgstr "Ważność tokena dostępu" msgstr "Ważność tokena dostępu"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -498,7 +501,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "Autoryzacje aplikacji" msgstr "Autoryzacje aplikacji"
@ -720,7 +723,7 @@ msgid "Authorization flow"
msgstr "Przepływ autoryzacji" msgstr "Przepływ autoryzacji"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "Autoryzacje" msgstr "Autoryzacje"
@ -861,6 +864,10 @@ msgstr "Wiązanie"
msgid "Binding Type" msgid "Binding Type"
msgstr "Typ wiązania" msgstr "Typ wiązania"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -919,12 +926,12 @@ msgstr ""
#~ msgstr "Powiązanie w pamięci podręcznej, przepływ jest wykonywany, a sesja jest buforowana w pamięci. Przepływ jest wykonywany po wygaśnięciu sesji." #~ msgstr "Powiązanie w pamięci podręcznej, przepływ jest wykonywany, a sesja jest buforowana w pamięci. Przepływ jest wykonywany po wygaśnięciu sesji."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "Przepływy w pamięci podręcznej" #~ msgstr "Przepływy w pamięci podręcznej"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "Zasady w pamięci podręcznej" #~ msgstr "Zasady w pamięci podręcznej"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1080,6 +1087,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "Sprawdź placówki." msgstr "Sprawdź placówki."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1184,6 +1195,7 @@ msgstr "Kliknij, aby skopiować token"
msgid "Client ID" msgid "Client ID"
msgstr "Client ID" msgstr "Client ID"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1687,6 +1699,7 @@ msgstr "Utworzono przez"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "Utworzono {0}" #~ msgstr "Utworzono {0}"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2057,6 +2070,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "Aktywacja Duo" msgstr "Aktywacja Duo"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Uwierzytelniacz Duo" msgstr "Uwierzytelniacz Duo"
@ -2435,7 +2452,7 @@ msgid "External host"
msgstr "Zewnętrzny host" msgstr "Zewnętrzny host"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "Nieudane logowania" msgstr "Nieudane logowania"
@ -2619,7 +2636,6 @@ msgid "Flow(s)"
msgstr "Przepływ(y)" msgstr "Przepływ(y)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2794,7 +2810,6 @@ msgid "Group(s)"
msgstr "Grupa(y)" msgstr "Grupa(y)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3114,6 +3129,10 @@ msgstr "Klucz integracji"
msgid "Intent" msgid "Intent"
msgstr "Przeznaczenie" msgstr "Przeznaczenie"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "Wewnętrzny host" msgstr "Wewnętrzny host"
@ -3524,6 +3543,10 @@ msgstr "Ustawienia uwierzytelniania typu maszyna-maszyna"
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "Upewnij się, że przechowujesz te tokeny w bezpiecznym miejscu." msgstr "Upewnij się, że przechowujesz te tokeny w bezpiecznym miejscu."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "Zarządzane przez authentik" msgstr "Zarządzane przez authentik"
@ -3875,6 +3898,7 @@ msgstr "Nie"
msgid "No Applications available." msgid "No Applications available."
msgstr "Brak dostępnych aplikacji." msgstr "Brak dostępnych aplikacji."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3913,6 +3937,7 @@ msgstr "Brak aktywnej integracji"
msgid "No log messages." msgid "No log messages."
msgstr "Brak dziennika wiadomości" msgstr "Brak dziennika wiadomości"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4090,9 +4115,9 @@ msgstr "OIDC Well-known URL"
msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
msgstr "OIDC well-known configuration URL. Może służyć do automatycznej konfiguracji powyższych adresów URL." msgstr "OIDC well-known configuration URL. Może służyć do automatycznej konfiguracji powyższych adresów URL."
#: src/pages/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "OK" msgstr "OK"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4107,7 +4132,7 @@ msgstr "Pole obiektu"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "Pole unikatowości obiektu" msgstr "Pole unikatowości obiektu"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "Utworzone obiekty" msgstr "Utworzone obiekty"
@ -4118,6 +4143,7 @@ msgstr "Przesunięcie, po którym zgoda wygasa."
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "Przesunięcie, po którym zgoda wygasa. (Format: hours=1;minutes=2;seconds=3)." #~ msgstr "Przesunięcie, po którym zgoda wygasa. (Format: hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4729,6 +4755,10 @@ msgstr "Ponowna ocena zasad"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "Otrzymuj powiadomienia push na swoje urządzenie." msgstr "Otrzymuj powiadomienia push na swoje urządzenie."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5671,7 +5701,7 @@ msgid "Successful"
msgstr "Pomyślny" msgstr "Pomyślny"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "Pomyślne logowania" msgstr "Pomyślne logowania"
@ -6016,12 +6046,12 @@ msgid "Superuser privileges?"
msgstr "Uprawnienia superużytkownika?" msgstr "Uprawnienia superużytkownika?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "Grupy superużytkowników" #~ msgstr "Grupy superużytkowników"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "Superużytkownicy" #~ msgstr "Superużytkownicy"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6120,6 +6150,7 @@ msgstr "Zadanie zakończone z ostrzeżeniami"
msgid "Template" msgid "Template"
msgstr "Szablon" msgstr "Szablon"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "Najemca" msgstr "Najemca"
@ -6430,20 +6461,20 @@ msgid "Tokens sent via SMS."
msgstr "Tokeny wysyłane SMS-em." msgstr "Tokeny wysyłane SMS-em."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "Łącznie przepływy" #~ msgstr "Łącznie przepływy"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "Łącznie grup" #~ msgstr "Łącznie grup"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "Łącznie zasad" #~ msgstr "Łącznie zasad"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "Łącznie użytkowników" #~ msgstr "Łącznie użytkowników"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6584,8 +6615,8 @@ msgid "Unauthenticated URLs"
msgstr "Nieuwierzytelnione adresy URL" msgstr "Nieuwierzytelnione adresy URL"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "Zasady niezwiązane" #~ msgstr "Zasady niezwiązane"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -6913,6 +6944,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7098,7 +7130,6 @@ msgstr "Nazwa użytkownika: to samo, co wprowadzanie tekstu, ale sprawdza i zapo
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7567,7 +7598,7 @@ msgstr "{0}, powinno być {1}"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0}: {1}" msgstr "{0}: {1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "{ago} dni temu" msgstr "{ago} dni temu"

View File

@ -29,6 +29,8 @@ msgstr ""
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -191,6 +193,7 @@ msgstr ""
msgid "Access token validity" msgid "Access token validity"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -495,7 +498,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "" msgstr ""
@ -718,7 +721,7 @@ msgid "Authorization flow"
msgstr "" msgstr ""
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "" msgstr ""
@ -862,6 +865,10 @@ msgstr ""
msgid "Binding Type" msgid "Binding Type"
msgstr "" msgstr ""
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -921,12 +928,12 @@ msgstr ""
#~ msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "" #~ msgstr ""
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1083,6 +1090,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "" msgstr ""
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1186,6 +1197,7 @@ msgstr ""
msgid "Client ID" msgid "Client ID"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1698,6 +1710,7 @@ msgstr ""
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "" #~ msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2083,6 +2096,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "" msgstr ""
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "" msgstr ""
@ -2475,7 +2492,7 @@ msgid "External host"
msgstr "" msgstr ""
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "" msgstr ""
@ -2660,7 +2677,6 @@ msgid "Flow(s)"
msgstr "" msgstr ""
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2837,7 +2853,6 @@ msgid "Group(s)"
msgstr "" msgstr ""
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3164,6 +3179,10 @@ msgstr ""
msgid "Intent" msgid "Intent"
msgstr "" msgstr ""
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "" msgstr ""
@ -3578,6 +3597,10 @@ msgstr ""
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "" msgstr ""
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "" msgstr ""
@ -3930,6 +3953,7 @@ msgstr ""
msgid "No Applications available." msgid "No Applications available."
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3968,6 +3992,7 @@ msgstr ""
msgid "No log messages." msgid "No log messages."
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4154,8 +4179,8 @@ msgid "OIDC well-known configuration URL. Can be used to automatically configure
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "" msgstr ""
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4170,7 +4195,7 @@ msgstr ""
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "" msgstr ""
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "" msgstr ""
@ -4182,6 +4207,7 @@ msgstr ""
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "" #~ msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4813,6 +4839,10 @@ msgstr ""
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5794,7 +5824,7 @@ msgid "Successful"
msgstr "" msgstr ""
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "" msgstr ""
@ -6144,12 +6174,12 @@ msgid "Superuser privileges?"
msgstr "" msgstr ""
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "" #~ msgstr ""
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6253,6 +6283,7 @@ msgstr ""
msgid "Template" msgid "Template"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "" msgstr ""
@ -6562,20 +6593,20 @@ msgid "Tokens sent via SMS."
msgstr "" msgstr ""
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "" #~ msgstr ""
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6716,8 +6747,8 @@ msgid "Unauthenticated URLs"
msgstr "" msgstr ""
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "" #~ msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -7046,6 +7077,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7236,7 +7268,6 @@ msgstr ""
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7706,7 +7737,7 @@ msgstr ""
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "" msgstr ""
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "" msgstr ""

View File

@ -31,6 +31,8 @@ msgstr "(Biçim: saat=-1; dakika=-2; ikincil=-3)."
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "(Biçim: saat=1; dakika=2; saniye= 3)." msgstr "(Biçim: saat=1; dakika=2; saniye= 3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -196,6 +198,7 @@ msgstr "Erişim belirteci URL'si"
msgid "Access token validity" msgid "Access token validity"
msgstr "Erişim belirteci geçerliliği" msgstr "Erişim belirteci geçerliliği"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -494,7 +497,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "Uygulama yetkilendirmeleri" msgstr "Uygulama yetkilendirmeleri"
@ -716,7 +719,7 @@ msgid "Authorization flow"
msgstr "Yetkilendirme akışı" msgstr "Yetkilendirme akışı"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "Yetkilendirmeler" msgstr "Yetkilendirmeler"
@ -857,6 +860,10 @@ msgstr "Ciltleme"
msgid "Binding Type" msgid "Binding Type"
msgstr "Bağlama Tipi" msgstr "Bağlama Tipi"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -915,12 +922,12 @@ msgstr ""
#~ msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "Önbelleğe alınmış akışlar" #~ msgstr "Önbelleğe alınmış akışlar"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "Önbelleğe alınan ilkeler" #~ msgstr "Önbelleğe alınan ilkeler"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1074,6 +1081,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "İleri üsleri kontrol edin." msgstr "İleri üsleri kontrol edin."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1178,6 +1189,7 @@ msgstr "Belirteci kopyalamak için tıklayın"
msgid "Client ID" msgid "Client ID"
msgstr "Müşteri Kimliği" msgstr "Müşteri Kimliği"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1681,6 +1693,7 @@ msgstr "Tarafından yaratıldı"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "Oluşturuldu {0}" #~ msgstr "Oluşturuldu {0}"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2051,6 +2064,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "İkili aktivasyon" msgstr "İkili aktivasyon"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Duo kimlik doğrulayıcı" msgstr "Duo kimlik doğrulayıcı"
@ -2429,7 +2446,7 @@ msgid "External host"
msgstr "Harici ana bilgisayar" msgstr "Harici ana bilgisayar"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "Başarısız Oturum Açma" msgstr "Başarısız Oturum Açma"
@ -2613,7 +2630,6 @@ msgid "Flow(s)"
msgstr "Akış (ler)" msgstr "Akış (ler)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2788,7 +2804,6 @@ msgid "Group(s)"
msgstr "Grup (ler)" msgstr "Grup (ler)"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3106,6 +3121,10 @@ msgstr "Entegrasyon anahtarı"
msgid "Intent" msgid "Intent"
msgstr "Niyet" msgstr "Niyet"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "Dahili Ana Bilgisayar" msgstr "Dahili Ana Bilgisayar"
@ -3516,6 +3535,10 @@ msgstr ""
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "Bu belirteçleri güvenli bir yerde tuttuğunuzdan emin olun." msgstr "Bu belirteçleri güvenli bir yerde tuttuğunuzdan emin olun."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "Auentik tarafından yönetiliyor" msgstr "Auentik tarafından yönetiliyor"
@ -3867,6 +3890,7 @@ msgstr "Hayır"
msgid "No Applications available." msgid "No Applications available."
msgstr "Kullanılabilir Uygulama yok." msgstr "Kullanılabilir Uygulama yok."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3905,6 +3929,7 @@ msgstr "Entegrasyon etkin"
msgid "No log messages." msgid "No log messages."
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4082,9 +4107,9 @@ msgstr ""
msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
msgstr "" msgstr ""
#: src/pages/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "OK" msgstr "OK"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4099,7 +4124,7 @@ msgstr "Nesne alanı"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "Nesne benzersizliği alanı" msgstr "Nesne benzersizliği alanı"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "Oluşturulan nesneler" msgstr "Oluşturulan nesneler"
@ -4110,6 +4135,7 @@ msgstr ""
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "Onay sona erdikten sonra ofset. (Biçim: saat=1; dakika=2; saniye/= 3)." #~ msgstr "Onay sona erdikten sonra ofset. (Biçim: saat=1; dakika=2; saniye/= 3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4719,6 +4745,10 @@ msgstr "İlkeleri yeniden değerlendirin"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "Cihazınızda anında iletme bildirimi alın." msgstr "Cihazınızda anında iletme bildirimi alın."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5661,7 +5691,7 @@ msgid "Successful"
msgstr "Başarılı" msgstr "Başarılı"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "Başarılı Oturum Açma" msgstr "Başarılı Oturum Açma"
@ -6006,12 +6036,12 @@ msgid "Superuser privileges?"
msgstr "Süper kullanıcı ayrıcalıkları mı?" msgstr "Süper kullanıcı ayrıcalıkları mı?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "Süper kullanıcı grupları" #~ msgstr "Süper kullanıcı grupları"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "Süper Kullanıcılar" #~ msgstr "Süper Kullanıcılar"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6110,6 +6140,7 @@ msgstr "Görev uyarılarla tamamlandı"
msgid "Template" msgid "Template"
msgstr "Şablon" msgstr "Şablon"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "Sakin" msgstr "Sakin"
@ -6420,20 +6451,20 @@ msgid "Tokens sent via SMS."
msgstr "Belirteçler SMS ile gönderildi." msgstr "Belirteçler SMS ile gönderildi."
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "Toplam akışlar" #~ msgstr "Toplam akışlar"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "Toplam gruplar" #~ msgstr "Toplam gruplar"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "Toplam ilkeler" #~ msgstr "Toplam ilkeler"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "Toplam kullanıcı" #~ msgstr "Toplam kullanıcı"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6574,8 +6605,8 @@ msgid "Unauthenticated URLs"
msgstr "Kimliği Doğrulanmamış URL'ler" msgstr "Kimliği Doğrulanmamış URL'ler"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "Bağlanmayan ilkeler" #~ msgstr "Bağlanmayan ilkeler"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -6903,6 +6934,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7088,7 +7120,6 @@ msgstr "Kullanıcı adı: Metin girişi ile aynı, ancak yinelenen kullanıcı a
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7555,7 +7586,7 @@ msgstr "{0}, {1} olmalıdır"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0}: {1}" msgstr "{0}: {1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "{ago} gün önce" msgstr "{ago} gün önce"

View File

@ -33,6 +33,8 @@ msgstr "格式hours=-1;minutes=-2;seconds=-3。"
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "格式hours=1;minutes=2;seconds=3。" msgstr "格式hours=1;minutes=2;seconds=3。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -198,6 +200,7 @@ msgstr "访问令牌 URL"
msgid "Access token validity" msgid "Access token validity"
msgstr "访问令牌有效性" msgstr "访问令牌有效性"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -500,7 +503,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "应用程序授权" msgstr "应用程序授权"
@ -722,7 +725,7 @@ msgid "Authorization flow"
msgstr "授权流程" msgstr "授权流程"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "授权" msgstr "授权"
@ -863,6 +866,10 @@ msgstr "绑定"
msgid "Binding Type" msgid "Binding Type"
msgstr "绑定类型" msgstr "绑定类型"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -921,12 +928,12 @@ msgstr ""
#~ msgstr "缓存绑定,流程与会话会在内存中执行与缓存。会话过期时执行流程。" #~ msgstr "缓存绑定,流程与会话会在内存中执行与缓存。会话过期时执行流程。"
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "缓存流程" #~ msgstr "缓存流程"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "缓存策略" #~ msgstr "缓存策略"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1082,6 +1089,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "检查前哨。" msgstr "检查前哨。"
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1186,6 +1197,7 @@ msgstr "点击复制令牌"
msgid "Client ID" msgid "Client ID"
msgstr "客户端 ID" msgstr "客户端 ID"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1689,6 +1701,7 @@ msgstr "创建者"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "已创建 {0}" #~ msgstr "已创建 {0}"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2059,6 +2072,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "Duo 激活" msgstr "Duo 激活"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Duo 身份验证器" msgstr "Duo 身份验证器"
@ -2437,7 +2454,7 @@ msgid "External host"
msgstr "外部主机" msgstr "外部主机"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "失败登录" msgstr "失败登录"
@ -2621,7 +2638,6 @@ msgid "Flow(s)"
msgstr "流程" msgstr "流程"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2796,7 +2812,6 @@ msgid "Group(s)"
msgstr "组" msgstr "组"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3114,6 +3129,10 @@ msgstr "集成密钥"
msgid "Intent" msgid "Intent"
msgstr "意图" msgstr "意图"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "内部主机" msgstr "内部主机"
@ -3524,6 +3543,10 @@ msgstr "M2M机器到机器身份验证设置"
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "确保将这些令牌保存在安全的地方。" msgstr "确保将这些令牌保存在安全的地方。"
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "由 authentik 管理" msgstr "由 authentik 管理"
@ -3875,6 +3898,7 @@ msgstr "否"
msgid "No Applications available." msgid "No Applications available."
msgstr "没有可用的应用程序。" msgstr "没有可用的应用程序。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3913,6 +3937,7 @@ msgstr "没有激活的集成"
msgid "No log messages." msgid "No log messages."
msgstr "没有日志消息。" msgstr "没有日志消息。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4090,9 +4115,9 @@ msgstr "OIDC Well-known URL"
msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
msgstr "OIDC Well-known 配置 URL。可用于自动配置上述 URL。" msgstr "OIDC Well-known 配置 URL。可用于自动配置上述 URL。"
#: src/pages/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "好的" msgstr "好的"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4107,7 +4132,7 @@ msgstr "对象字段"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "对象唯一性字段" msgstr "对象唯一性字段"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "已创建对象" msgstr "已创建对象"
@ -4118,6 +4143,7 @@ msgstr "同意过期后的偏移。"
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "经过多少偏移量后同意授权过期。格式hours=1;minutes=2;seconds=3。" #~ msgstr "经过多少偏移量后同意授权过期。格式hours=1;minutes=2;seconds=3。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4727,6 +4753,10 @@ msgstr "重新评估策略"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "在您的设备上接收推送通知。" msgstr "在您的设备上接收推送通知。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5669,7 +5699,7 @@ msgid "Successful"
msgstr "成功" msgstr "成功"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "成功登录" msgstr "成功登录"
@ -6014,12 +6044,12 @@ msgid "Superuser privileges?"
msgstr "超级用户权限?" msgstr "超级用户权限?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "超级用户组" #~ msgstr "超级用户组"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "超级用户" #~ msgstr "超级用户"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6118,6 +6148,7 @@ msgstr "任务已完成但有警告"
msgid "Template" msgid "Template"
msgstr "模板" msgstr "模板"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "租户" msgstr "租户"
@ -6428,20 +6459,20 @@ msgid "Tokens sent via SMS."
msgstr "通过短信发送的令牌。" msgstr "通过短信发送的令牌。"
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "流程总数" #~ msgstr "流程总数"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "组总数" #~ msgstr "组总数"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "策略总数" #~ msgstr "策略总数"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "用户总数" #~ msgstr "用户总数"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6582,8 +6613,8 @@ msgid "Unauthenticated URLs"
msgstr "不验证身份的 URL" msgstr "不验证身份的 URL"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "未绑定策略" #~ msgstr "未绑定策略"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -6911,6 +6942,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7096,7 +7128,6 @@ msgstr "用户名:与文本输入相同,但检查并防止用户名重复。
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7565,7 +7596,7 @@ msgstr "{0},应该是 {1}"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0}{1}" msgstr "{0}{1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "{ago} 天前" msgstr "{ago} 天前"

View File

@ -33,6 +33,8 @@ msgstr "(格式: hours=-1;minutes=-2;seconds=-3)."
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "(格式: hours=1;minutes=2;seconds=3)." msgstr "(格式: hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -198,6 +200,7 @@ msgstr "访问令牌 URL"
msgid "Access token validity" msgid "Access token validity"
msgstr "访问令牌有效性" msgstr "访问令牌有效性"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -500,7 +503,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "应用程序授权" msgstr "应用程序授权"
@ -722,7 +725,7 @@ msgid "Authorization flow"
msgstr "授权流程" msgstr "授权流程"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "授权" msgstr "授权"
@ -863,6 +866,10 @@ msgstr "绑定"
msgid "Binding Type" msgid "Binding Type"
msgstr "绑定类型" msgstr "绑定类型"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -921,12 +928,12 @@ msgstr ""
#~ msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "缓存的流程" #~ msgstr "缓存的流程"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "缓存策略" #~ msgstr "缓存策略"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1082,6 +1089,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "检查 outposts." msgstr "检查 outposts."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1186,6 +1197,7 @@ msgstr "点击复制令牌"
msgid "Client ID" msgid "Client ID"
msgstr "客户端 ID" msgstr "客户端 ID"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1689,6 +1701,7 @@ msgstr "由... 创建"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "已创建 {0}" #~ msgstr "已创建 {0}"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2059,6 +2072,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "Duo 激活" msgstr "Duo 激活"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Duo 身份验证器" msgstr "Duo 身份验证器"
@ -2437,7 +2454,7 @@ msgid "External host"
msgstr "外部主机" msgstr "外部主机"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "登入失败" msgstr "登入失败"
@ -2621,7 +2638,6 @@ msgid "Flow(s)"
msgstr "流程" msgstr "流程"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2796,7 +2812,6 @@ msgid "Group(s)"
msgstr "组" msgstr "组"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3114,6 +3129,10 @@ msgstr "集成密钥"
msgid "Intent" msgid "Intent"
msgstr "意图" msgstr "意图"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "内部主机" msgstr "内部主机"
@ -3524,6 +3543,10 @@ msgstr ""
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "确保将这些令牌保存在安全的地方。" msgstr "确保将这些令牌保存在安全的地方。"
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "由 authentik 管理" msgstr "由 authentik 管理"
@ -3875,6 +3898,7 @@ msgstr "No"
msgid "No Applications available." msgid "No Applications available."
msgstr "没有可用的应用程序。" msgstr "没有可用的应用程序。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3913,6 +3937,7 @@ msgstr "没有激活的集成"
msgid "No log messages." msgid "No log messages."
msgstr "没有日志消息。" msgstr "没有日志消息。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4090,9 +4115,9 @@ msgstr ""
msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
msgstr "" msgstr ""
#: src/pages/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "OK" msgstr "OK"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4107,7 +4132,7 @@ msgstr "对象字段"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "对象唯一性字段" msgstr "对象唯一性字段"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "已创建对象" msgstr "已创建对象"
@ -4118,6 +4143,7 @@ msgstr ""
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "偏移量在此之后同意过期。格式hours=1;minutes=2;seconds=3。" #~ msgstr "偏移量在此之后同意过期。格式hours=1;minutes=2;seconds=3。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4727,6 +4753,10 @@ msgstr "重新评估策略"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "在您的设备上接收推送通知。" msgstr "在您的设备上接收推送通知。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5669,7 +5699,7 @@ msgid "Successful"
msgstr "成功" msgstr "成功"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "成功登入" msgstr "成功登入"
@ -6014,12 +6044,12 @@ msgid "Superuser privileges?"
msgstr "超级用户权限?" msgstr "超级用户权限?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "超级用户组" #~ msgstr "超级用户组"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "超级用户" #~ msgstr "超级用户"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6118,6 +6148,7 @@ msgstr "任务已完成,但出现警告"
msgid "Template" msgid "Template"
msgstr "“模板”" msgstr "“模板”"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "租户" msgstr "租户"
@ -6428,20 +6459,20 @@ msgid "Tokens sent via SMS."
msgstr "通过短信发送的令牌。" msgstr "通过短信发送的令牌。"
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "总流程" #~ msgstr "总流程"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "组总数" #~ msgstr "组总数"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "总策略数" #~ msgstr "总策略数"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "用户总数" #~ msgstr "用户总数"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6582,8 +6613,8 @@ msgid "Unauthenticated URLs"
msgstr "未经身份验证的 URL" msgstr "未经身份验证的 URL"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "未绑定策略" #~ msgstr "未绑定策略"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -6911,6 +6942,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7096,7 +7128,6 @@ msgstr "用户名:与文本输入相同,但检查并防止用户名重复。
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7565,7 +7596,7 @@ msgstr "{0},应该是 {1}"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0}: {1}" msgstr "{0}: {1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "{ago} 天前" msgstr "{ago} 天前"

View File

@ -33,6 +33,8 @@ msgstr "(格式: hours=-1;minutes=-2;seconds=-3)."
msgid "(Format: hours=1;minutes=2;seconds=3)." msgid "(Format: hours=1;minutes=2;seconds=3)."
msgstr "(格式: hours=1;minutes=2;seconds=3)." msgstr "(格式: hours=1;minutes=2;seconds=3)."
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/applications/ApplicationListPage.ts #: src/admin/applications/ApplicationListPage.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -198,6 +200,7 @@ msgstr "访问令牌 URL"
msgid "Access token validity" msgid "Access token validity"
msgstr "访问令牌有效性" msgstr "访问令牌有效性"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -500,7 +503,7 @@ msgstr ""
msgid "Application already has access to the following permissions:" msgid "Application already has access to the following permissions:"
msgstr "" msgstr ""
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Application authorizations" msgid "Application authorizations"
msgstr "应用程序授权" msgstr "应用程序授权"
@ -722,7 +725,7 @@ msgid "Authorization flow"
msgstr "授权流程" msgstr "授权流程"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/ApplicationAuthorizeChart.ts #: src/admin/applications/ApplicationAuthorizeChart.ts
msgid "Authorizations" msgid "Authorizations"
msgstr "授权" msgstr "授权"
@ -863,6 +866,10 @@ msgstr "绑定"
msgid "Binding Type" msgid "Binding Type"
msgstr "绑定类型" msgstr "绑定类型"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Blueprint"
msgstr ""
#: src/admin/blueprints/BlueprintListPage.ts #: src/admin/blueprints/BlueprintListPage.ts
msgid "Blueprint(s)" msgid "Blueprint(s)"
msgstr "" msgstr ""
@ -921,12 +928,12 @@ msgstr ""
#~ msgstr "" #~ msgstr ""
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Cached flows" #~ msgid "Cached flows"
msgstr "缓存的流程" #~ msgstr "缓存的流程"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Cached policies" #~ msgid "Cached policies"
msgstr "缓存策略" #~ msgstr "缓存策略"
#: src/admin/providers/ldap/LDAPProviderForm.ts #: src/admin/providers/ldap/LDAPProviderForm.ts
msgid "Cached querying" msgid "Cached querying"
@ -1082,6 +1089,10 @@ msgstr ""
msgid "Check outposts." msgid "Check outposts."
msgstr "检查 outposts." msgstr "检查 outposts."
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Check release notes"
msgstr ""
#: src/admin/policies/password/PasswordPolicyForm.ts #: src/admin/policies/password/PasswordPolicyForm.ts
msgid "Check static rules" msgid "Check static rules"
msgstr "" msgstr ""
@ -1186,6 +1197,7 @@ msgstr "点击复制令牌"
msgid "Client ID" msgid "Client ID"
msgstr "客户端 ID" msgstr "客户端 ID"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts #: src/admin/policies/event_matcher/EventMatcherPolicyForm.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
@ -1689,6 +1701,7 @@ msgstr "由... 创建"
#~ msgid "Created {0}" #~ msgid "Created {0}"
#~ msgstr "已创建 {0}" #~ msgstr "已创建 {0}"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -2059,6 +2072,10 @@ msgstr ""
msgid "Duo activation" msgid "Duo activation"
msgstr "Duo 激活" msgstr "Duo 激活"
#: src/flow/stages/authenticator_duo/AuthenticatorDuoStage.ts
msgid "Duo activation QR code"
msgstr ""
#: src/user/user-settings/mfa/MFADevicesPage.ts #: src/user/user-settings/mfa/MFADevicesPage.ts
msgid "Duo authenticator" msgid "Duo authenticator"
msgstr "Duo 身份验证器" msgstr "Duo 身份验证器"
@ -2437,7 +2454,7 @@ msgid "External host"
msgstr "外部主机" msgstr "外部主机"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Failed Logins" msgid "Failed Logins"
msgstr "登入失败" msgstr "登入失败"
@ -2621,7 +2638,6 @@ msgid "Flow(s)"
msgstr "流程" msgstr "流程"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/flows/FlowListPage.ts #: src/admin/flows/FlowListPage.ts
#: src/admin/stages/StageListPage.ts #: src/admin/stages/StageListPage.ts
msgid "Flows" msgid "Flows"
@ -2796,7 +2812,6 @@ msgid "Group(s)"
msgstr "组" msgstr "组"
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupListPage.ts #: src/admin/groups/GroupListPage.ts
#: src/admin/users/UserForm.ts #: src/admin/users/UserForm.ts
#: src/admin/users/UserViewPage.ts #: src/admin/users/UserViewPage.ts
@ -3114,6 +3129,10 @@ msgstr "集成密钥"
msgid "Intent" msgid "Intent"
msgstr "意图" msgstr "意图"
#: src/admin/blueprints/BlueprintForm.ts
msgid "Internal"
msgstr ""
#: src/admin/providers/proxy/ProxyProviderViewPage.ts #: src/admin/providers/proxy/ProxyProviderViewPage.ts
msgid "Internal Host" msgid "Internal Host"
msgstr "内部主机" msgstr "内部主机"
@ -3524,6 +3543,10 @@ msgstr ""
msgid "Make sure to keep these tokens in a safe place." msgid "Make sure to keep these tokens in a safe place."
msgstr "确保将这些令牌保存在安全的地方。" msgstr "确保将这些令牌保存在安全的地方。"
#: src/admin/admin-overview/AdminOverviewPage.ts
msgid "Manage users"
msgstr ""
#: src/admin/crypto/CertificateKeyPairListPage.ts #: src/admin/crypto/CertificateKeyPairListPage.ts
msgid "Managed by authentik" msgid "Managed by authentik"
msgstr "由 authentik 管理" msgstr "由 authentik 管理"
@ -3875,6 +3898,7 @@ msgstr "No"
msgid "No Applications available." msgid "No Applications available."
msgstr "没有可用的应用程序。" msgstr "没有可用的应用程序。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No Events found." msgid "No Events found."
@ -3913,6 +3937,7 @@ msgstr "没有激活的集成"
msgid "No log messages." msgid "No log messages."
msgstr "没有日志消息。" msgstr "没有日志消息。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
msgid "No matching events could be found." msgid "No matching events could be found."
@ -4090,9 +4115,9 @@ msgstr ""
msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above." msgid "OIDC well-known configuration URL. Can be used to automatically configure the URLs above."
msgstr "" msgstr ""
#: src/pages/admin-overview/cards/SystemStatusCard.ts #: src/admin/admin-overview/cards/SystemStatusCard.ts
#~ msgid "OK" msgid "OK"
#~ msgstr "OK" msgstr "OK"
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
@ -4107,7 +4132,7 @@ msgstr "对象字段"
msgid "Object uniqueness field" msgid "Object uniqueness field"
msgstr "对象唯一性字段" msgstr "对象唯一性字段"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "Objects created" msgid "Objects created"
msgstr "已创建对象" msgstr "已创建对象"
@ -4118,6 +4143,7 @@ msgstr ""
#~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)." #~ msgid "Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3)."
#~ msgstr "偏移量在此之后同意过期。格式hours=1;minutes=2;seconds=3。" #~ msgstr "偏移量在此之后同意过期。格式hours=1;minutes=2;seconds=3。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
#: src/elements/events/ObjectChangelog.ts #: src/elements/events/ObjectChangelog.ts
#: src/elements/events/UserEvents.ts #: src/elements/events/UserEvents.ts
@ -4727,6 +4753,10 @@ msgstr "重新评估策略"
msgid "Receive a push notification on your device." msgid "Receive a push notification on your device."
msgstr "在您的设备上接收推送通知。" msgstr "在您的设备上接收推送通知。"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
msgid "Recent events"
msgstr ""
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
#: src/admin/tokens/TokenListPage.ts #: src/admin/tokens/TokenListPage.ts
#: src/admin/users/RelatedUserList.ts #: src/admin/users/RelatedUserList.ts
@ -5669,7 +5699,7 @@ msgid "Successful"
msgstr "成功" msgstr "成功"
#: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts #: src/admin/admin-overview/charts/AdminLoginAuthorizeChart.ts
#: src/elements/charts/UserChart.ts #: src/admin/users/UserChart.ts
msgid "Successful Logins" msgid "Successful Logins"
msgstr "成功登入" msgstr "成功登入"
@ -6014,12 +6044,12 @@ msgid "Superuser privileges?"
msgstr "超级用户权限?" msgstr "超级用户权限?"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Superuser-groups" #~ msgid "Superuser-groups"
msgstr "超级用户组" #~ msgstr "超级用户组"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Superusers" #~ msgid "Superusers"
msgstr "超级用户" #~ msgstr "超级用户"
#: src/admin/events/utils.ts #: src/admin/events/utils.ts
msgid "Suspicious request" msgid "Suspicious request"
@ -6118,6 +6148,7 @@ msgstr "任务已完成,但出现警告"
msgid "Template" msgid "Template"
msgstr "“模板”" msgstr "“模板”"
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
msgid "Tenant" msgid "Tenant"
msgstr "租户" msgstr "租户"
@ -6428,20 +6459,20 @@ msgid "Tokens sent via SMS."
msgstr "通过短信发送的令牌。" msgstr "通过短信发送的令牌。"
#: src/admin/admin-overview/charts/FlowStatusChart.ts #: src/admin/admin-overview/charts/FlowStatusChart.ts
msgid "Total flows" #~ msgid "Total flows"
msgstr "总流程" #~ msgstr "总流程"
#: src/admin/admin-overview/charts/GroupCountStatusChart.ts #: src/admin/admin-overview/charts/GroupCountStatusChart.ts
msgid "Total groups" #~ msgid "Total groups"
msgstr "组总数" #~ msgstr "组总数"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Total policies" #~ msgid "Total policies"
msgstr "总策略数" #~ msgstr "总策略数"
#: src/admin/admin-overview/charts/UserCountStatusChart.ts #: src/admin/admin-overview/charts/UserCountStatusChart.ts
msgid "Total users" #~ msgid "Total users"
msgstr "用户总数" #~ msgstr "用户总数"
#: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts #: src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts
msgid "Traditional authenticator" msgid "Traditional authenticator"
@ -6582,8 +6613,8 @@ msgid "Unauthenticated URLs"
msgstr "未经身份验证的 URL" msgstr "未经身份验证的 URL"
#: src/admin/admin-overview/charts/PolicyStatusChart.ts #: src/admin/admin-overview/charts/PolicyStatusChart.ts
msgid "Unbound policies" #~ msgid "Unbound policies"
msgstr "未绑定策略" #~ msgstr "未绑定策略"
#: src/admin/flows/utils.ts #: src/admin/flows/utils.ts
msgid "Unenrollment" msgid "Unenrollment"
@ -6911,6 +6942,7 @@ msgstr ""
msgid "Used to login using a flow executor" msgid "Used to login using a flow executor"
msgstr "" msgstr ""
#: src/admin/admin-overview/cards/RecentEventsCard.ts
#: src/admin/applications/ApplicationCheckAccessForm.ts #: src/admin/applications/ApplicationCheckAccessForm.ts
#: src/admin/events/EventInfo.ts #: src/admin/events/EventInfo.ts
#: src/admin/events/EventListPage.ts #: src/admin/events/EventListPage.ts
@ -7096,7 +7128,6 @@ msgstr "用户名:与文本输入相同,但检查并防止用户名重复。
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/AdminInterface.ts #: src/admin/AdminInterface.ts
#: src/admin/admin-overview/AdminOverviewPage.ts
#: src/admin/groups/GroupViewPage.ts #: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserListPage.ts #: src/admin/users/UserListPage.ts
msgid "Users" msgid "Users"
@ -7565,7 +7596,7 @@ msgstr "{0},应该是 {1}"
msgid "{0}: {1}" msgid "{0}: {1}"
msgstr "{0}: {1}" msgstr "{0}: {1}"
#: src/elements/charts/AdminModelPerDay.ts #: src/admin/admin-overview/charts/AdminModelPerDay.ts
msgid "{ago} days ago" msgid "{ago} days ago"
msgstr "{ago} 天前" msgstr "{ago} 天前"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

After

Width:  |  Height:  |  Size: 284 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 284 KiB