From 4b9937e4de808471b6fe3181b7732bcb450e7c79 Mon Sep 17 00:00:00 2001 From: mgiota Date: Tue, 22 Mar 2022 22:50:55 +0100 Subject: [PATCH] change permanently to indefinitely --- x-pack/plugins/observability/public/pages/rules/config.ts | 4 ++-- .../observability/public/pages/rules/translations.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/x-pack/plugins/observability/public/pages/rules/config.ts b/x-pack/plugins/observability/public/pages/rules/config.ts index ed34317b48e76..736f538ee7b21 100644 --- a/x-pack/plugins/observability/public/pages/rules/config.ts +++ b/x-pack/plugins/observability/public/pages/rules/config.ts @@ -15,7 +15,7 @@ import { RULE_STATUS_WARNING, RULE_STATUS_ENABLED, RULE_STATUS_DISABLED, - RULE_STATUS_SNOOZED_PERMANENTLY, + RULE_STATUS_SNOOZED_INDEFINITELY, } from './translations'; import { AlertExecutionStatuses } from '../../../../alerting/common'; import { Rule, RuleTypeIndex, RuleType } from '../../../../triggers_actions_ui/public'; @@ -31,7 +31,7 @@ export const statusMap: Status = { }, [RuleStatus.snoozed]: { color: 'warning', - label: RULE_STATUS_SNOOZED_PERMANENTLY, + label: RULE_STATUS_SNOOZED_INDEFINITELY, }, }; diff --git a/x-pack/plugins/observability/public/pages/rules/translations.ts b/x-pack/plugins/observability/public/pages/rules/translations.ts index 49d55b48bbb69..36f8ff62f1a4c 100644 --- a/x-pack/plugins/observability/public/pages/rules/translations.ts +++ b/x-pack/plugins/observability/public/pages/rules/translations.ts @@ -67,10 +67,10 @@ export const RULE_STATUS_DISABLED = i18n.translate( } ); -export const RULE_STATUS_SNOOZED_PERMANENTLY = i18n.translate( - 'xpack.observability.rules.rulesTable.ruleStatusSnoozedPermanently', +export const RULE_STATUS_SNOOZED_INDEFINITELY = i18n.translate( + 'xpack.observability.rules.rulesTable.ruleStatusSnoozedIndefinitely', { - defaultMessage: 'Snoozed permanently', + defaultMessage: 'Snoozed indefinitely', } );