pmg-gui/js/SpamDetectorConfiguration.js
2017-02-28 16:53:40 +01:00

29 lines
489 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'),
html: 'Quarantine'
},
{
title: gettext('Backscatter'),
html: 'Backscatter'
},
{
title: gettext('Theme'),
html: 'Theme'
}
]
});