From 552e8adcca053bbe13cbc087eb7cd6cad473dbb2 Mon Sep 17 00:00:00 2001 From: Karen Grigoryan Date: Fri, 8 Mar 2024 18:12:25 +0100 Subject: [PATCH] [Security Solution][Detection & Response] Fix view all cases button label (#178325) fix for: #177808 ## Summary In detection & response dashboard button label to all cases has a wrong label mentioning "View recent cases". This PR fixes it and changes it to "View all cases". Before: image After: image --- .../detection_response/cases_table/cases_table.tsx | 2 +- .../overview/components/detection_response/translations.ts | 6 +++--- x-pack/plugins/translations/translations/fr-FR.json | 1 - x-pack/plugins/translations/translations/ja-JP.json | 1 - x-pack/plugins/translations/translations/zh-CN.json | 1 - 5 files changed, 4 insertions(+), 7 deletions(-) diff --git a/x-pack/plugins/security_solution/public/overview/components/detection_response/cases_table/cases_table.tsx b/x-pack/plugins/security_solution/public/overview/components/detection_response/cases_table/cases_table.tsx index a3b84aeadee41..879f20cb233fa 100644 --- a/x-pack/plugins/security_solution/public/overview/components/detection_response/cases_table/cases_table.tsx +++ b/x-pack/plugins/security_solution/public/overview/components/detection_response/cases_table/cases_table.tsx @@ -87,7 +87,7 @@ export const CasesTable = React.memo(() => { /> - {i18n.VIEW_RECENT_CASES} + {i18n.VIEW_ALL_CASES} )} diff --git a/x-pack/plugins/security_solution/public/overview/components/detection_response/translations.ts b/x-pack/plugins/security_solution/public/overview/components/detection_response/translations.ts index 5066a8c184e87..79f9001e173f7 100644 --- a/x-pack/plugins/security_solution/public/overview/components/detection_response/translations.ts +++ b/x-pack/plugins/security_solution/public/overview/components/detection_response/translations.ts @@ -203,10 +203,10 @@ export const OPEN_ALL_ALERTS_BUTTON = i18n.translate( } ); -export const VIEW_RECENT_CASES = i18n.translate( - 'xpack.securitySolution.detectionResponse.viewRecentCases', +export const VIEW_ALL_CASES = i18n.translate( + 'xpack.securitySolution.detectionResponse.viewAllCases', { - defaultMessage: 'View recent cases', + defaultMessage: 'View all cases', } ); diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 8fff409092935..8fad7bdf8159e 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -33510,7 +33510,6 @@ "xpack.securitySolution.detectionResponse.userAlertsUserName": "Nom d'utilisateur", "xpack.securitySolution.detectionResponse.userSectionTooltip": "Maximum de 100 utilisateurs. Veuillez consulter la page Alertes pour plus d'informations.", "xpack.securitySolution.detectionResponse.viewCases": "Afficher les cas", - "xpack.securitySolution.detectionResponse.viewRecentCases": "Afficher les cas récents", "xpack.securitySolution.detections.alerts.agentStatus": "Statut de l'agent", "xpack.securitySolution.detections.alerts.quarantinedFilePath": "Chemin de fichiers en quarantaine", "xpack.securitySolution.detections.alerts.ruleType": "Type de règle", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index b58f698ca390d..e60bde52a81d1 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -33510,7 +33510,6 @@ "xpack.securitySolution.detectionResponse.userAlertsUserName": "ユーザー名", "xpack.securitySolution.detectionResponse.userSectionTooltip": "最大100ユーザー。詳細については、「アラート」ページを参照してください。", "xpack.securitySolution.detectionResponse.viewCases": "ケースの表示", - "xpack.securitySolution.detectionResponse.viewRecentCases": "最近のケースを表示", "xpack.securitySolution.detections.alerts.agentStatus": "エージェントステータス", "xpack.securitySolution.detections.alerts.quarantinedFilePath": "隔離されたファイルパス", "xpack.securitySolution.detections.alerts.ruleType": "ルールタイプ", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 0d703923541f5..a77723e37e7f9 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -33492,7 +33492,6 @@ "xpack.securitySolution.detectionResponse.userAlertsUserName": "用户名", "xpack.securitySolution.detectionResponse.userSectionTooltip": "最多 100 个用户。请访问“告警”页面获取更多信息。", "xpack.securitySolution.detectionResponse.viewCases": "查看案例", - "xpack.securitySolution.detectionResponse.viewRecentCases": "查看最近案例", "xpack.securitySolution.detections.alerts.agentStatus": "代理状态", "xpack.securitySolution.detections.alerts.quarantinedFilePath": "已隔离文件路径", "xpack.securitySolution.detections.alerts.ruleType": "规则类型",