]> git.proxmox.com Git - pmg-gui.git/blob - js/SpamDetectorConfiguration.js
SpamDetectorConfiguration.js: new panel for SPAM configuration
[pmg-gui.git] / js / SpamDetectorConfiguration.js
1 Ext.define('PMG.SpamDetectorConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgSpamDetectorConfiguration',
4
5 title: gettext('Spam Detector Configuration'),
6
7 items: [
8 {
9 title: gettext('Options'),
10 html: 'Options'
11 },
12 {
13 title: gettext('Languages'),
14 html: 'Languages'
15 },
16 {
17 title: gettext('Quarantine'),
18 html: 'Quarantine'
19 },
20 {
21 title: gettext('Backscatter'),
22 html: 'Backscatter'
23 },
24 {
25 title: gettext('Theme'),
26 html: 'Theme'
27 }
28 ]
29 });
30
31