pmg-gui/js/SystemConfiguration.js
2017-01-27 17:46:48 +01:00

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"
}
]
});