From 2aa5d7e7bac708591156413af4d4f689cbd5560c Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 16 Nov 2024 16:33:08 +0100 Subject: [PATCH] network edit: shorten bridge VLAN ID label and tooltip This is certainly a bit subjective, but IMO not much information is lost, and the "space-separated" in the tooltip was never true (at least for the backend), so might be even confusing; the example should be enough to direct users in the right direction, real docs in the documentation would be way better anyway than all those subtle UI hints. Signed-off-by: Thomas Lamprecht --- src/node/NetworkEdit.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node/NetworkEdit.js b/src/node/NetworkEdit.js index fbd4f21..1a61c11 100644 --- a/src/node/NetworkEdit.js +++ b/src/node/NetworkEdit.js @@ -61,13 +61,13 @@ Ext.define('Proxmox.node.NetworkEdit', { if (me.iftype === 'bridge') { let vids = Ext.create('Ext.form.field.Text', { - fieldLabel: gettext('Bridge VLAN IDs'), + fieldLabel: gettext('VLAN IDs'), name: 'bridge_vids', emptyText: '2-4094', disabled: true, autoEl: { tag: 'div', - 'data-qtip': gettext("Space-separated list of VLANs offloaded to the hardware. Useful for NICs with restricted VLAN offloading support. Single VLAN IDs and ranges. For example: '2 4 100-200'"), + 'data-qtip': gettext("List of VLAN IDs and ranges, useful for NICs with restricted VLAN offloading support. For example: '2 4 100-200'"), }, validator: function(value) { if (!value) { // empty