web: remove gettext from icons

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-03-20 16:06:56 +01:00
parent b6087c0f10
commit 077abdb602
14 changed files with 14 additions and 14 deletions

View File

@ -25,7 +25,7 @@ export class ApplicationListPage extends TablePage<Application> {
return gettext("External Applications which use authentik as Identity-Provider, utilizing protocols like OAuth2 and SAML.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-applications");
return "pf-icon pf-icon-applications";
}
@property()

View File

@ -27,7 +27,7 @@ export class CertificateKeyPairListPage extends TablePage<CertificateKeyPair> {
return gettext("Import certificates of external providers or create certificates to sign requests with.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-key");
return "pf-icon pf-icon-key";
}
@property()

View File

@ -27,7 +27,7 @@ export class RuleListPage extends TablePage<NotificationRule> {
return gettext("Send notifications whenever a specific Event is created and matched by policies.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-attention-bell");
return "pf-icon pf-icon-attention-bell";
}
@property()

View File

@ -25,7 +25,7 @@ export class TransportListPage extends TablePage<NotificationTransport> {
return gettext("Define how notifications are sent to users, like Email or Webhook.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-export");
return "pf-icon pf-icon-export";
}
@property()

View File

@ -24,7 +24,7 @@ export class FlowListPage extends TablePage<Flow> {
return gettext("Flows describe a chain of Stages to authenticate, enroll or recover a user. Stages are chosen based on policies applied to them.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-process-automation");
return "pf-icon pf-icon-process-automation";
}
@property()

View File

@ -24,7 +24,7 @@ export class GroupListPage extends TablePage<Group> {
return gettext("Group users together and give them permissions based on the membership.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-users");
return "pf-icon pf-icon-users";
}
@property()

View File

@ -26,7 +26,7 @@ export class PolicyListPage extends TablePage<Policy> {
return gettext("Allow users to use Applications based on properties, enforce Password Criteria and selectively apply Stages.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-infrastructure");
return "pf-icon pf-icon-infrastructure";
}
@property()

View File

@ -26,7 +26,7 @@ export class PropertyMappingListPage extends TablePage<PropertyMapping> {
return gettext("Control how authentik exposes and interprets information.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-blueprint");
return "pf-icon pf-icon-blueprint";
}
@property()

View File

@ -26,7 +26,7 @@ export class ProviderListPage extends TablePage<Provider> {
return gettext("Provide support for protocols like SAML and OAuth to assigned applications.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-integration");
return "pf-icon pf-icon-integration";
}
@property()

View File

@ -24,7 +24,7 @@ export class InvitationListPage extends TablePage<Invitation> {
return gettext("Create Invitation Links to enroll Users, and optionally force specific attributes of their account.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-migration");
return "pf-icon pf-icon-migration";
}
@property()

View File

@ -24,7 +24,7 @@ export class PromptListPage extends TablePage<Prompt> {
return gettext("Single Prompts that can be used for Prompt Stages.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-plugged");
return "pf-icon pf-icon-plugged";
}
@property()

View File

@ -22,7 +22,7 @@ export class SystemTaskListPage extends TablePage<Task> {
return gettext("Long-running operations which authentik executes in the background.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-automation");
return "pf-icon pf-icon-automation";
}
@property()

View File

@ -24,7 +24,7 @@ export class TokenListPage extends TablePage<Token> {
return gettext("Tokens are used throughout authentik for Email validation stages, Recovery keys and API access.");
}
pageIcon(): string {
return gettext("pf-icon pf-icon-security");
return "pf-icon pf-icon-security";
}
@property()

View File

@ -26,7 +26,7 @@ export class UserListPage extends TablePage<User> {
return "";
}
pageIcon(): string {
return gettext("pf-icon pf-icon-user");
return "pf-icon pf-icon-user";
}
@property()