pmg-gui/js/SpamDetectorConfiguration.js
Dietmar Maurer 6ccd0a4725 QuarantineOptions.js: implement more options
And set deleteEmpty attribute for text inputs.
2017-03-01 08:35:54 +01:00

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