[pve-devel] [PATCH manager] fix #2336: ui: adjust message for bulk start/stop/migrate
Folke Gleumes
f.gleumes at proxmox.com
Tue Nov 7 12:38:52 CET 2023
The message in the Task Log has been 'Start/Stop/Migrate all...',
which is misleading since not everything might be affected by bulk actions.
This also affects the messages send at a nodes startup and shutdown, but
since this just affects a subgroup of VMs/Containers (those who are
onboot=1) the new wording still applies better than the previous.
Signed-off-by: Folke Gleumes <f.gleumes at proxmox.com>
---
After applying, please run make update on proxmox-i18n so updated translations
can be submitted.
www/manager6/Utils.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/www/manager6/Utils.js b/www/manager6/Utils.js
index 8f46c07e..be30393e 100644
--- a/www/manager6/Utils.js
+++ b/www/manager6/Utils.js
@@ -1967,7 +1967,7 @@ Ext.define('PVE.Utils', {
lvmremove: ['Volume Group', gettext('Remove')],
lvmthincreate: [gettext('LVM-Thin Storage'), gettext('Create')],
lvmthinremove: ['Thinpool', gettext('Remove')],
- migrateall: ['', gettext('Migrate all VMs and Containers')],
+ migrateall: ['', gettext('Bulk migrate VMs and Containers')],
'move_volume': ['CT', gettext('Move Volume')],
'pbs-download': ['VM/CT', gettext('File Restore Download')],
pull_file: ['CT', gettext('Pull file')],
@@ -1994,8 +1994,8 @@ Ext.define('PVE.Utils', {
resize: ['VM/CT', gettext('Resize')],
spiceproxy: ['VM/CT', gettext('Console') + ' (Spice)'],
spiceshell: ['', gettext('Shell') + ' (Spice)'],
- startall: ['', gettext('Start all VMs and Containers')],
- stopall: ['', gettext('Stop all VMs and Containers')],
+ startall: ['', gettext('Bulk start VMs and Containers')],
+ stopall: ['', gettext('Bulk shutdown VMs and Containers')],
unknownimgdel: ['', gettext('Destroy image from unknown guest')],
wipedisk: ['Device', gettext('Wipe Disk')],
vncproxy: ['VM/CT', gettext('Console')],
--
2.39.2
More information about the pve-devel
mailing list