Skip to content

Commit

Permalink
change permanently to indefinitely
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiota committed Mar 22, 2022
1 parent f249324 commit 4b9937e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions x-pack/plugins/observability/public/pages/rules/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -31,7 +31,7 @@ export const statusMap: Status = {
},
[RuleStatus.snoozed]: {
color: 'warning',
label: RULE_STATUS_SNOOZED_PERMANENTLY,
label: RULE_STATUS_SNOOZED_INDEFINITELY,
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
}
);

Expand Down

0 comments on commit 4b9937e

Please sign in to comment.