]> git.proxmox.com Git - pmg-gui.git/blob - js/SpamDetectorConfiguration.js
spam info grid: use monospace font for score and level names
[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 itemId: 'options',
15 xtype: 'pmgSpamDetectorOptions',
16 },
17 {
18 title: gettext('Quarantine'),
19 itemId: 'quarantine',
20 xtype: 'pmgSpamQuarantineOptions',
21 },
22 {
23 title: gettext('Status'),
24 itemId: 'status',
25 xtype: 'pmgSpamDetectorStatus',
26 },
27 {
28 title: gettext('Custom Scores'),
29 itemId: 'scores',
30 xtype: 'pmgSpamDetectorCustomScores',
31 },
32 ],
33 });
34
35