mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-05-31 18:15:18 +00:00
28 lines
489 B
JavaScript
28 lines
489 B
JavaScript
Ext.define('PMG.SpamDetectorConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgSpamDetectorConfiguration',
|
|
|
|
title: gettext('Configuration') + ': ' +
|
|
gettext('Spam Detector'),
|
|
|
|
border: false,
|
|
defaults: { border: false },
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Options'),
|
|
xtype: 'pmgSpamDetectorOptions'
|
|
},
|
|
{
|
|
title: gettext('Quarantine'),
|
|
xtype: 'pmgSpamQuarantineOptions'
|
|
},
|
|
{
|
|
title: gettext('Theme'),
|
|
html: 'Theme'
|
|
}
|
|
]
|
|
});
|
|
|
|
|