]> git.proxmox.com Git - proxmox-backup.git/commitdiff
ui: tape/ChangerStatus: add missing tooltips
authorDominik Csapak <d.csapak@proxmox.com>
Fri, 29 Jan 2021 13:57:52 +0000 (14:57 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 29 Jan 2021 15:54:37 +0000 (16:54 +0100)
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
www/tape/ChangerStatus.js

index ecfdc424d5e663fdbec692fa0abc0026823c4b29..78265024387185065de9432f7e26156c01c01f69 100644 (file)
@@ -527,11 +527,13 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
                                {
                                    iconCls: 'fa fa-rotate-90 fa-exchange',
                                    handler: 'slotTransfer',
+                                   tooltip: gettext('Transfer'),
                                    isDisabled: (v, r, c, i, rec) => !rec.data['label-text'],
                                },
                                {
                                    iconCls: 'fa fa-rotate-90 fa-upload',
                                    handler: 'load',
+                                   tooltip: gettext('Load'),
                                    isDisabled: (v, r, c, i, rec) => !rec.data['label-text'],
                                },
                            ],
@@ -601,29 +603,35 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
                                        {
                                            iconCls: 'fa fa-rotate-270 fa-upload',
                                            handler: 'unload',
+                                           tooltip: gettext('Unload'),
                                            isDisabled: (v, r, c, i, rec) => !rec.data['label-text'],
                                        },
                                        {
                                            iconCls: 'fa fa-hdd-o',
                                            handler: 'cartridgeMemory',
+                                           tooltip: gettext('Cartridge Memory'),
                                            isDisabled: (v, r, c, i, rec) => !rec.data['label-text'],
                                        },
                                        {
                                            iconCls: 'fa fa-line-chart',
                                            handler: 'volumeStatistics',
+                                           tooltip: gettext('Volume Statistics'),
                                            isDisabled: (v, r, c, i, rec) => !rec.data['label-text'],
                                        },
                                        {
                                            iconCls: 'fa fa-tag',
                                            handler: 'readLabel',
+                                           tooltip: gettext('Read Label'),
                                            isDisabled: (v, r, c, i, rec) => !rec.data['label-text'],
                                        },
                                        {
                                            iconCls: 'fa fa-info-circle',
+                                           tooltip: gettext('Status'),
                                            handler: 'status',
                                        },
                                        {
                                            iconCls: 'fa fa-shower',
+                                           tooltip: gettext('Clean Drive'),
                                            handler: 'cleanDrive',
                                        },
                                    ],