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."); return gettext("External Applications which use authentik as Identity-Provider, utilizing protocols like OAuth2 and SAML.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-applications"); return "pf-icon pf-icon-applications";
} }
@property() @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."); return gettext("Import certificates of external providers or create certificates to sign requests with.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-key"); return "pf-icon pf-icon-key";
} }
@property() @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."); return gettext("Send notifications whenever a specific Event is created and matched by policies.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-attention-bell"); return "pf-icon pf-icon-attention-bell";
} }
@property() @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."); return gettext("Define how notifications are sent to users, like Email or Webhook.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-export"); return "pf-icon pf-icon-export";
} }
@property() @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."); 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 { pageIcon(): string {
return gettext("pf-icon pf-icon-process-automation"); return "pf-icon pf-icon-process-automation";
} }
@property() @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."); return gettext("Group users together and give them permissions based on the membership.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-users"); return "pf-icon pf-icon-users";
} }
@property() @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."); return gettext("Allow users to use Applications based on properties, enforce Password Criteria and selectively apply Stages.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-infrastructure"); return "pf-icon pf-icon-infrastructure";
} }
@property() @property()

View File

@ -26,7 +26,7 @@ export class PropertyMappingListPage extends TablePage<PropertyMapping> {
return gettext("Control how authentik exposes and interprets information."); return gettext("Control how authentik exposes and interprets information.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-blueprint"); return "pf-icon pf-icon-blueprint";
} }
@property() @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."); return gettext("Provide support for protocols like SAML and OAuth to assigned applications.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-integration"); return "pf-icon pf-icon-integration";
} }
@property() @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."); return gettext("Create Invitation Links to enroll Users, and optionally force specific attributes of their account.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-migration"); return "pf-icon pf-icon-migration";
} }
@property() @property()

View File

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

View File

@ -22,7 +22,7 @@ export class SystemTaskListPage extends TablePage<Task> {
return gettext("Long-running operations which authentik executes in the background."); return gettext("Long-running operations which authentik executes in the background.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-automation"); return "pf-icon pf-icon-automation";
} }
@property() @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."); return gettext("Tokens are used throughout authentik for Email validation stages, Recovery keys and API access.");
} }
pageIcon(): string { pageIcon(): string {
return gettext("pf-icon pf-icon-security"); return "pf-icon pf-icon-security";
} }
@property() @property()

View File

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