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