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 2804A69B40 for ; Mon, 14 Mar 2022 10:35:12 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 1EEF2E43 for ; Mon, 14 Mar 2022 10:35:12 +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 3EB12E1E for ; Mon, 14 Mar 2022 10:35:11 +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 16E88457DA for ; Mon, 14 Mar 2022 10:35:11 +0100 (CET) From: Aaron Lauterer To: pve-devel@lists.proxmox.com Date: Mon, 14 Mar 2022 10:35:06 +0100 Message-Id: <20220314093509.349554-4-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220314093509.349554-1-a.lauterer@proxmox.com> References: <20220314093509.349554-1-a.lauterer@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.018 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 v4 manager 3/6] 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, 14 Mar 2022 09:35:12 -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 4d47679d..a456fdf2 100644 --- a/www/manager6/lxc/Resources.js +++ b/www/manager6/lxc/Resources.js @@ -202,7 +202,7 @@ Ext.define('PVE.lxc.RessourceView', { }); let 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 af84fb3f..3da7499d 100644 --- a/www/manager6/qemu/HardwareView.js +++ b/www/manager6/qemu/HardwareView.js @@ -443,20 +443,20 @@ Ext.define('PVE.qemu.HardwareView', { }); let 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