From 7f15c83c03f3098d4f79e5fe8eb41d82d7b8ad28 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 27 Jun 2017 15:01:26 +0200 Subject: [PATCH] replication/ui: improve wording for job removal Delete the strange sounding Note from the Removal dialog. This was added to make sure that an user isn't confused that a Job is still shown after 'removing' it. But it isn't needed as there is already noted in the jobs status that it will get removed soon after doing so, so the user sees that his action had the desired effect, no extra note needed. Signed-off-by: Thomas Lamprecht --- www/manager6/grid/Replication.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/www/manager6/grid/Replication.js b/www/manager6/grid/Replication.js index 66dbf81d..6381c63a 100644 --- a/www/manager6/grid/Replication.js +++ b/www/manager6/grid/Replication.js @@ -245,9 +245,7 @@ Ext.define('PVE.grid.ReplicaView', { handler: 'removeJob', dangerous: true, confirmMsg: function(rec) { - var msg = Ext.String.format(gettext('Are you sure you want to remove replication job {0}'), - "'" + rec.id + "'" + '
' + - gettext('(Note: Removal of replication job has to be replicated)')); + var msg = Ext.String.format(gettext("Are you sure you want to remove replication job '{0}'?"), rec.id); return msg; }, disabled: true