]> git.proxmox.com Git - proxmox-backup.git/commitdiff
ui: add task descriptions for the different types of verification(job, snapshot,...
authorHannes Laimer <h.laimer@proxmox.com>
Tue, 20 Oct 2020 09:10:10 +0000 (11:10 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 21 Oct 2020 10:51:35 +0000 (12:51 +0200)
Signed-off-by: Hannes Laimer <h.laimer@proxmox.com>
www/Utils.js

index 8ad332ebaa8ec504660e2f94a611ae08741a9ccf..221a2f2b65d4b05bc0a41afd322a0f3c3cd8fa1e 100644 (file)
@@ -91,9 +91,12 @@ Ext.define('PBS.Utils', {
        Proxmox.Utils.override_task_descriptions({
            garbage_collection: ['Datastore', gettext('Garbage collect')],
            sync: ['Datastore', gettext('Remote Sync')],
+           verify: ['Datastore', gettext('Verification')],
+           verify_group: ['Group', gettext('Verification')],
+           verify_snapshot: ['Snapshot', gettext('Verification')],
            syncjob: [gettext('Sync Job'), gettext('Remote Sync')],
+           verifyjob: [gettext('Verify Job'), gettext('Scheduled Verification')],
            prune: (type, id) => PBS.Utils.render_datastore_worker_id(id, gettext('Prune')),
-           verify: (type, id) => PBS.Utils.render_datastore_worker_id(id, gettext('Verify')),
            backup: (type, id) => PBS.Utils.render_datastore_worker_id(id, gettext('Backup')),
            reader: (type, id) => PBS.Utils.render_datastore_worker_id(id, gettext('Read objects')),
            logrotate: [gettext('Log'), gettext('Rotation')],