]> git.proxmox.com Git - pve-manager.git/commitdiff
fix #2336: ui: adjust message for bulk start/stop/migrate
authorFolke Gleumes <f.gleumes@proxmox.com>
Tue, 7 Nov 2023 11:38:52 +0000 (12:38 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 7 Nov 2023 15:50:56 +0000 (16:50 +0100)
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>
www/manager6/Utils.js

index 8f46c07e2896f87e3d3e66e2573d0007979ad295..be30393eb4efb25086ff575464fa54238245c1f0 100644 (file)
@@ -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')],