From 4ab71200e7cdc9bfcd715a3652d1ef4e697acaa9 Mon Sep 17 00:00:00 2001 From: Jiawei Wu <74562234+JiaweiWu@users.noreply.github.com> Date: Fri, 5 Jan 2024 11:31:44 -0800 Subject: [PATCH] [RAM][Maintenance Window] MW scoped query language improvements (#172993) ## Summary Some language improvements for maintenance window scoped queries. ### Before ![image](https://github.com/elastic/kibana/assets/74562234/f9fa39f9-f057-4dc5-9a6f-91ef85f0de79) ### After ![image](https://github.com/elastic/kibana/assets/26471269/c6e409cd-634a-4c62-b85d-6ad867afe4cd) --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Lisa Cawley (cherry picked from commit 845cd06d9aca6b7e33cac5b037c30e5c536fbbf2) --- .../alerting/public/pages/maintenance_windows/translations.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts index 9133548a4e253..3ad894c5fb7aa 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts @@ -211,7 +211,7 @@ export const CREATE_FORM_CATEGORY_STACK_RULES = i18n.translate( export const CREATE_FORM_SCOPED_QUERY_TITLE = i18n.translate( 'xpack.alerting.maintenanceWindows.createForm.scopedQuery.title', { - defaultMessage: 'Define scope of rules', + defaultMessage: 'Filters', } ); @@ -219,7 +219,7 @@ export const CREATE_FORM_SCOPED_QUERY_DESCRIPTION = i18n.translate( 'xpack.alerting.maintenanceWindows.createForm.scopedQuery.description', { defaultMessage: - 'Use KQL to further narrow down the alerts affected by this maintenance window.', + 'Add filters that refine the scope of the maintenance window. You can select only one category when filters are enabled.', } );