]> git.proxmox.com Git - pmg-gui.git/blame - js/SpamDetectorConfiguration.js
add virusfilter
[pmg-gui.git] / js / SpamDetectorConfiguration.js
CommitLineData
4b5ee25e
DM
1Ext.define('PMG.SpamDetectorConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgSpamDetectorConfiguration',
4
d9e1af94
DM
5 title: gettext('Configuration') + ': ' +
6 gettext('Spam Detector'),
4b5ee25e 7
830e5827
DM
8 border: false,
9 defaults: { border: false },
10
4b5ee25e
DM
11 items: [
12 {
13 title: gettext('Options'),
b5d7e0ca 14 xtype: 'pmgSpamDetectorOptions'
4b5ee25e 15 },
4b5ee25e
DM
16 {
17 title: gettext('Quarantine'),
6ccd0a47 18 xtype: 'pmgSpamQuarantineOptions'
4b5ee25e 19 },
4b5ee25e
DM
20 {
21 title: gettext('Theme'),
22 html: 'Theme'
23 }
24 ]
25});
26
27