mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-05-31 12:50:54 +00:00
36 lines
584 B
JavaScript
36 lines
584 B
JavaScript
Ext.define('PMG.SystemConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgSystemConfiguration',
|
|
|
|
title: gettext('System Configuration'),
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Network'),
|
|
html: "Network"
|
|
},
|
|
{
|
|
title: gettext('Time'),
|
|
html: "Time"
|
|
},
|
|
{
|
|
title: gettext('Backup'),
|
|
html: "Backkup"
|
|
},
|
|
{
|
|
title: gettext('Restore'),
|
|
html: "Restore"
|
|
},
|
|
{
|
|
title: gettext('Reports'),
|
|
html: "Reports"
|
|
},
|
|
{
|
|
title: gettext('SSH Access'),
|
|
html: "SSH Access"
|
|
}
|
|
]
|
|
});
|
|
|
|
|