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