web: initial migration to lingui

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-04-03 19:26:43 +02:00
parent fc1caf1469
commit 25300c1928
150 changed files with 8720 additions and 1482 deletions

View File

@ -1,4 +1,4 @@
import { gettext } from "django";
import { t } from "@lingui/macro";
import { customElement, html, property, TemplateResult } from "lit-element";
import { AKResponse } from "../../api/Client";
import { TablePage } from "../../elements/table/TablePage";
@ -17,10 +17,10 @@ export class TokenListPage extends TablePage<Token> {
return true;
}
pageTitle(): string {
return gettext("Tokens");
return t`Tokens`;
}
pageDescription(): string {
return gettext("Tokens are used throughout authentik for Email validation stages, Recovery keys and API access.");
return t`Tokens are used throughout authentik for Email validation stages, Recovery keys and API access.`;
}
pageIcon(): string {
return "pf-icon pf-icon-security";
@ -40,10 +40,10 @@ export class TokenListPage extends TablePage<Token> {
columns(): TableColumn[] {
return [
new TableColumn("Identifier", "identifier"),
new TableColumn("User", "user"),
new TableColumn("Expires?", "expiring"),
new TableColumn("Expiry date", "expires"),
new TableColumn(t`Identifier`, t`identifier`),
new TableColumn(t`User`, t`user`),
new TableColumn(t`Expires?`, t`expiring`),
new TableColumn(t`Expiry date`, t`expires`),
new TableColumn(""),
];
}
@ -57,18 +57,18 @@ export class TokenListPage extends TablePage<Token> {
html`
<ak-forms-delete
.obj=${item}
objectLabel=${gettext("Token")}
objectLabel=${t`Token`}
.delete=${() => {
return new CoreApi(DEFAULT_CONFIG).coreTokensDelete({
identifier: item.identifier
});
}}>
<button slot="trigger" class="pf-c-button pf-m-danger">
${gettext("Delete")}
${t`Delete`}
</button>
</ak-forms-delete>
<ak-token-copy-button identifier="${item.identifier}">
${gettext("Copy Key")}
${t`Copy Key`}
</ak-token-copy-button>
`,
];