web/admin: fix unlocalised strings

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-04-04 00:10:56 +02:00
parent 195951a61a
commit 87fdb591ce
5 changed files with 10 additions and 10 deletions

View File

@ -19,10 +19,10 @@ import { ifDefined } from "lit-html/directives/if-defined";
@customElement("ak-outpost-list")
export class OutpostListPage extends TablePage<Outpost> {
pageTitle(): string {
return "Outposts";
return t`Outposts`;
}
pageDescription(): string | undefined {
return "Outposts are deployments of authentik components to support different environments and protocols, like reverse proxies.";
return t`Outposts are deployments of authentik components to support different environments and protocols, like reverse proxies.`;
}
pageIcon(): string {
return "pf-icon pf-icon-zone";