ui: tape/DriveConfig: add missing tooltips

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-02-05 15:26:20 +01:00 committed by Dietmar Maurer
parent 1d70e3812c
commit 4c9174ce26
1 changed files with 5 additions and 0 deletions

View File

@ -302,14 +302,17 @@ Ext.define('PBS.TapeManagement.DrivePanel', {
{ {
iconCls: 'fa fa-hdd-o', iconCls: 'fa fa-hdd-o',
handler: 'cartridgeMemory', handler: 'cartridgeMemory',
tooltip: gettext('Cartridge Memory'),
}, },
{ {
iconCls: 'fa fa-line-chart', iconCls: 'fa fa-line-chart',
handler: 'volumeStatistics', handler: 'volumeStatistics',
tooltip: gettext('Volume Statistics'),
}, },
{ {
iconCls: 'fa fa-tag', iconCls: 'fa fa-tag',
handler: 'readLabel', handler: 'readLabel',
tooltip: gettext('Read Label'),
}, },
{ {
iconCls: 'fa fa-book', iconCls: 'fa fa-book',
@ -319,10 +322,12 @@ Ext.define('PBS.TapeManagement.DrivePanel', {
{ {
iconCls: 'fa fa-info-circle', iconCls: 'fa fa-info-circle',
handler: 'status', handler: 'status',
tooltip: gettext('Status'),
}, },
{ {
iconCls: 'fa fa-pencil-square-o', iconCls: 'fa fa-pencil-square-o',
handler: 'labelMedia', handler: 'labelMedia',
tooltip: gettext('Label Media'),
}, },
], ],
}, },