From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id A7F8465482 for ; Mon, 7 Mar 2022 11:07:25 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id A322925A4A for ; Mon, 7 Mar 2022 11:07:25 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id C604225A2E for ; Mon, 7 Mar 2022 11:07:24 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 383F946345 for ; Mon, 7 Mar 2022 11:07:24 +0100 (CET) From: Aaron Lauterer To: pve-devel@lists.proxmox.com Date: Mon, 7 Mar 2022 11:07:20 +0100 Message-Id: <20220307100722.257128-3-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220307100722.257128-1-a.lauterer@proxmox.com> References: <20220307100722.257128-1-a.lauterer@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.011 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH v3 manager 2/4] ui: lxc/qemu: disk/volume action simplify menu items X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Mar 2022 10:07:25 -0000 We already know that we are acting upon a disk / volume due to the submenu we are in. Signed-off-by: Aaron Lauterer --- www/manager6/lxc/Resources.js | 6 +++--- www/manager6/qemu/HardwareView.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/www/manager6/lxc/Resources.js b/www/manager6/lxc/Resources.js index 306a4988..a5df9182 100644 --- a/www/manager6/lxc/Resources.js +++ b/www/manager6/lxc/Resources.js @@ -202,7 +202,7 @@ Ext.define('PVE.lxc.RessourceView', { }); var resize_menuitem = new Ext.menu.Item({ - text: gettext('Resize disk'), + text: gettext('Resize'), selModel: me.selModel, disabled: true, handler: run_resize, @@ -247,7 +247,7 @@ Ext.define('PVE.lxc.RessourceView', { }); let reassign_menuitem = new Ext.menu.Item({ - text: gettext('Reassign Volume'), + text: gettext('Reassign'), tooltip: gettext('Reassign volume to another CT'), handler: run_reassign, reference: 'reassing_item', @@ -255,7 +255,7 @@ Ext.define('PVE.lxc.RessourceView', { }); let move_menuitem = new Ext.menu.Item({ - text: gettext('Move Volume'), + text: gettext('Move'), selModel: me.selModel, disabled: true, handler: run_move, diff --git a/www/manager6/qemu/HardwareView.js b/www/manager6/qemu/HardwareView.js index 1f19269c..21f67cd0 100644 --- a/www/manager6/qemu/HardwareView.js +++ b/www/manager6/qemu/HardwareView.js @@ -443,20 +443,20 @@ Ext.define('PVE.qemu.HardwareView', { }); var resize_menuitem = new Ext.menu.Item({ - text: gettext('Resize disk'), + text: gettext('Resize'), selModel: sm, disabled: true, handler: run_resize, }); let move_menuitem = new Ext.menu.Item({ - text: gettext('Move disk'), + text: gettext('Move'), selModel: sm, handler: run_move, }); let reassign_menuitem = new Ext.menu.Item({ - text: gettext('Reassign Disk'), + text: gettext('Reassign'), tooltip: gettext('Reassign disk to another VM'), handler: run_reassign, selModel: sm, -- 2.30.2