From 05bad3dd05203c994c83f297770bc241309f7191 Mon Sep 17 00:00:00 2001 From: Pierre Gayvallet Date: Wed, 16 Dec 2020 08:18:47 +0100 Subject: [PATCH] [SO Tagging] Update tag delete modal confirmation title (#85997) (#86022) * Update tag deletion modal confirmation text * add . --- .../saved_objects_tagging/public/management/actions/delete.ts | 3 +-- .../public/management/bulk_actions/bulk_delete.ts | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/x-pack/plugins/saved_objects_tagging/public/management/actions/delete.ts b/x-pack/plugins/saved_objects_tagging/public/management/actions/delete.ts index 6b810c365635c..c81552e339f9e 100644 --- a/x-pack/plugins/saved_objects_tagging/public/management/actions/delete.ts +++ b/x-pack/plugins/saved_objects_tagging/public/management/actions/delete.ts @@ -43,8 +43,7 @@ export const getDeleteAction = ({ i18n.translate('xpack.savedObjectsTagging.modals.confirmDelete.text', { defaultMessage: 'By deleting this tag, you will no longer be able to assign it to saved objects. ' + - 'This tag will be removed from any saved objects that currently use it. ' + - 'Are you sure you wish to proceed?', + 'This tag will be removed from any saved objects that currently use it.', }), { title: i18n.translate('xpack.savedObjectsTagging.modals.confirmDelete.title', { diff --git a/x-pack/plugins/saved_objects_tagging/public/management/bulk_actions/bulk_delete.ts b/x-pack/plugins/saved_objects_tagging/public/management/bulk_actions/bulk_delete.ts index d8de937521099..ea266dbbe5323 100644 --- a/x-pack/plugins/saved_objects_tagging/public/management/bulk_actions/bulk_delete.ts +++ b/x-pack/plugins/saved_objects_tagging/public/management/bulk_actions/bulk_delete.ts @@ -40,8 +40,7 @@ export const getBulkDeleteAction = ({ i18n.translate('xpack.savedObjectsTagging.management.actions.bulkDelete.confirm.text', { defaultMessage: 'By deleting {count, plural, one {this tag} other {these tags}}, you will no longer be able to assign {count, plural, one {it} other {them}} to saved objects. ' + - '{count, plural, one {This tag} other {These tags}} will be removed from any saved objects that currently use {count, plural, one {it} other {them}}. ' + - 'Are you sure you wish to proceed?', + '{count, plural, one {This tag} other {These tags}} will be removed from any saved objects that currently use {count, plural, one {it} other {them}}.', values: { count: tagIds.length, },