From 107a11d91a72379d80e4c3fca6c8659ac94bfe38 Mon Sep 17 00:00:00 2001 From: Kevin Logan <56395104+kevinlog@users.noreply.github.com> Date: Wed, 30 Dec 2020 07:30:18 -0500 Subject: [PATCH] [Security Solution] Change 'anti-virus' text to 'antivirus' (#87001) (#87014) --- .../view/components/antivirus_registration_form/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/components/antivirus_registration_form/index.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/components/antivirus_registration_form/index.tsx index 072f588663c5a0..a533530cfe934f 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/components/antivirus_registration_form/index.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/components/antivirus_registration_form/index.tsx @@ -18,21 +18,21 @@ const TRANSLATIONS: Readonly<{ [K in 'title' | 'description' | 'label']: string title: i18n.translate( 'xpack.securitySolution.endpoint.policy.details.antivirusRegistration.type', { - defaultMessage: 'Register as anti-virus', + defaultMessage: 'Register as antivirus', } ), description: i18n.translate( 'xpack.securitySolution.endpoint.policy.details.antivirusRegistration.explanation', { defaultMessage: - 'Toggle on to register Elastic as an official Anti-Virus solution for Windows OS. ' + + 'Toggle on to register Elastic as an official Antivirus solution for Windows OS. ' + 'This will also disable Windows Defender.', } ), label: i18n.translate( 'xpack.securitySolution.endpoint.policy.details.antivirusRegistration.toggle', { - defaultMessage: 'Register as anti-virus', + defaultMessage: 'Register as antivirus', } ), };