fix #2336: ui: adjust message for bulk start/stop/migrate

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@proxmox.com>
This commit is contained in:
Folke Gleumes 2023-11-07 12:38:52 +01:00 committed by Thomas Lamprecht
parent 2f6467d8eb
commit 2dac21405a

View File

@ -1967,7 +1967,7 @@ Ext.define('PVE.Utils', {
lvmremove: ['Volume Group', gettext('Remove')], lvmremove: ['Volume Group', gettext('Remove')],
lvmthincreate: [gettext('LVM-Thin Storage'), gettext('Create')], lvmthincreate: [gettext('LVM-Thin Storage'), gettext('Create')],
lvmthinremove: ['Thinpool', gettext('Remove')], lvmthinremove: ['Thinpool', gettext('Remove')],
migrateall: ['', gettext('Migrate all VMs and Containers')], migrateall: ['', gettext('Bulk migrate VMs and Containers')],
'move_volume': ['CT', gettext('Move Volume')], 'move_volume': ['CT', gettext('Move Volume')],
'pbs-download': ['VM/CT', gettext('File Restore Download')], 'pbs-download': ['VM/CT', gettext('File Restore Download')],
pull_file: ['CT', gettext('Pull file')], pull_file: ['CT', gettext('Pull file')],
@ -1994,8 +1994,8 @@ Ext.define('PVE.Utils', {
resize: ['VM/CT', gettext('Resize')], resize: ['VM/CT', gettext('Resize')],
spiceproxy: ['VM/CT', gettext('Console') + ' (Spice)'], spiceproxy: ['VM/CT', gettext('Console') + ' (Spice)'],
spiceshell: ['', gettext('Shell') + ' (Spice)'], spiceshell: ['', gettext('Shell') + ' (Spice)'],
startall: ['', gettext('Start all VMs and Containers')], startall: ['', gettext('Bulk start VMs and Containers')],
stopall: ['', gettext('Stop all VMs and Containers')], stopall: ['', gettext('Bulk shutdown VMs and Containers')],
unknownimgdel: ['', gettext('Destroy image from unknown guest')], unknownimgdel: ['', gettext('Destroy image from unknown guest')],
wipedisk: ['Device', gettext('Wipe Disk')], wipedisk: ['Device', gettext('Wipe Disk')],
vncproxy: ['VM/CT', gettext('Console')], vncproxy: ['VM/CT', gettext('Console')],