proxmox-backup/www/tape/TapeManagement.js
Dominik Csapak 2048073355 ui: tape/TapeManagement: change Text of Backup/Tape Inventory
to 'Content' and 'Inventory' respectively

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2021-02-16 08:34:18 +01:00

51 lines
933 B
JavaScript

Ext.define('PBS.TapeManagement', {
extend: 'Ext.tab.Panel',
alias: 'widget.pbsTapeManagement',
title: gettext('Tape Backup'),
border: true,
defaults: {
border: false,
xtype: 'panel',
},
items: [
{
title: gettext('Content'),
itemId: 'content',
xtype: 'pbsBackupOverview',
},
{
title: gettext('Inventory'),
itemId: 'inventory',
xtype: 'pbsTapeInventory',
},
{
title: gettext('Library'),
itemId: 'library',
xtype: 'pbsChangerStatus',
},
{
title: gettext('Changers'),
itemId: 'changers',
xtype: 'pbsTapeChangerPanel',
},
{
title: gettext('Drives'),
itemId: 'drives',
xtype: 'pbsTapeDrivePanel',
},
{
title: gettext('Media Pools'),
itemId: 'pools',
xtype: 'pbsMediaPoolPanel',
},
{
title: gettext('Encryption Keys'),
itemId: 'encryption-keys',
xtype: 'pbsEncryptionKeys',
},
],
});