Skip to content

Commit

Permalink
[Security Solution][Detection Rules] Changes 'activated' text on rule…
Browse files Browse the repository at this point in the history
… details page (elastic#111044)
  • Loading branch information
dplumlee authored and kibanamachine committed Sep 3, 2021
1 parent 38a1f7f commit cbf81ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ const RuleDetailsPageComponent: React.FC<DetectionEngineComponentProps> = ({
enabled={isExistingRule && (rule?.enabled ?? false)}
onChange={handleOnChangeEnabledRule}
/>
<EuiFlexItem>{i18n.ACTIVATED_RULE}</EuiFlexItem>
<EuiFlexItem>{i18n.ACTIVATE_RULE}</EuiFlexItem>
</EuiFlexGroup>
</EuiToolTip>
</EuiFlexItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export const EXPERIMENTAL = i18n.translate(
}
);

export const ACTIVATED_RULE = i18n.translate(
'xpack.securitySolution.detectionEngine.ruleDetails.activatedRuleLabel',
export const ACTIVATE_RULE = i18n.translate(
'xpack.securitySolution.detectionEngine.ruleDetails.activateRuleLabel',
{
defaultMessage: 'Activated',
defaultMessage: 'Activate',
}
);

Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -21121,7 +21121,6 @@
"xpack.securitySolution.detectionEngine.ruleDescription.mlJobStoppedDescription": "停止",
"xpack.securitySolution.detectionEngine.ruleDescription.thresholdResultsAggregatedByDescription": "結果集約条件",
"xpack.securitySolution.detectionEngine.ruleDescription.thresholdResultsAllDescription": "すべての結果",
"xpack.securitySolution.detectionEngine.ruleDetails.activatedRuleLabel": "有効化",
"xpack.securitySolution.detectionEngine.ruleDetails.deletedRule": "削除されたルール",
"xpack.securitySolution.detectionEngine.ruleDetails.errorCalloutTitle": "ルール失敗",
"xpack.securitySolution.detectionEngine.ruleDetails.exceptionsTab": "例外",
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -21438,7 +21438,6 @@
"xpack.securitySolution.detectionEngine.ruleDescription.mlJobStoppedDescription": "已停止",
"xpack.securitySolution.detectionEngine.ruleDescription.thresholdResultsAggregatedByDescription": "结果聚合依据",
"xpack.securitySolution.detectionEngine.ruleDescription.thresholdResultsAllDescription": "所有结果",
"xpack.securitySolution.detectionEngine.ruleDetails.activatedRuleLabel": "已激活",
"xpack.securitySolution.detectionEngine.ruleDetails.deletedRule": "已删除规则",
"xpack.securitySolution.detectionEngine.ruleDetails.errorCalloutTitle": "规则错误位置",
"xpack.securitySolution.detectionEngine.ruleDetails.exceptionsTab": "例外",
Expand Down

0 comments on commit cbf81ec

Please sign in to comment.