From 78b6d60a3c4a784fcd0297e3f6c48f5843e940d9 Mon Sep 17 00:00:00 2001 From: Ben Skelker <54019610+benskelker@users.noreply.github.com> Date: Tue, 29 Oct 2019 08:28:24 +0200 Subject: [PATCH] Fixes title capitalisations (#49445) (#49511) --- .../page/network/network_top_countries_table/translations.ts | 4 ++-- x-pack/legacy/plugins/siem/public/pages/hosts/translations.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/legacy/plugins/siem/public/components/page/network/network_top_countries_table/translations.ts b/x-pack/legacy/plugins/siem/public/components/page/network/network_top_countries_table/translations.ts index 70450f08a7d9..e3a2697142be 100644 --- a/x-pack/legacy/plugins/siem/public/components/page/network/network_top_countries_table/translations.ts +++ b/x-pack/legacy/plugins/siem/public/components/page/network/network_top_countries_table/translations.ts @@ -34,14 +34,14 @@ export const FLOWS = i18n.translate('xpack.siem.networkTopCountriesTable.column. export const DESTINATION_COUNTRIES = i18n.translate( 'xpack.siem.networkTopCountriesTable.heading.destinationCountries', { - defaultMessage: 'Destination Countries', + defaultMessage: 'Destination countries', } ); export const SOURCE_COUNTRIES = i18n.translate( 'xpack.siem.networkTopCountriesTable.heading.sourceCountries', { - defaultMessage: 'Source Countries', + defaultMessage: 'Source countries', } ); diff --git a/x-pack/legacy/plugins/siem/public/pages/hosts/translations.ts b/x-pack/legacy/plugins/siem/public/pages/hosts/translations.ts index e7f6c3abbd3b..1c95cbed71a4 100644 --- a/x-pack/legacy/plugins/siem/public/pages/hosts/translations.ts +++ b/x-pack/legacy/plugins/siem/public/pages/hosts/translations.ts @@ -17,7 +17,7 @@ export const PAGE_TITLE = i18n.translate('xpack.siem.hosts.pageTitle', { export const NAVIGATION_ALL_HOSTS_TITLE = i18n.translate( 'xpack.siem.hosts.navigation.allHostsTitle', { - defaultMessage: 'All Hosts', + defaultMessage: 'All hosts', } );