]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/SpamDetectorConfiguration.js
bump version to 1.0-26
[pmg-gui.git] / js / SpamDetectorConfiguration.js
index 18e66539d0dac3742bd512e87c12b214c92e2179..f10c8dc451b773164c449c84e6f7f1ea5c1c7179 100644 (file)
@@ -2,28 +2,27 @@ Ext.define('PMG.SpamDetectorConfiguration', {
     extend: 'Ext.tab.Panel',
     alias: 'widget.pmgSpamDetectorConfiguration',
 
-    title: gettext('Spam Detector Configuration'),
+    title: gettext('Configuration') + ': ' +
+       gettext('Spam Detector'),
+
+    border: false,
+    defaults: { border: false },
 
     items: [
        {
            title: gettext('Options'),
-           html: 'Options'
-       },
-       {
-           title: gettext('Languages'),
-           html: 'Languages'
+           itemId: 'options',
+           xtype: 'pmgSpamDetectorOptions'
        },
        {
            title: gettext('Quarantine'),
-           html: 'Quarantine'
-       },
-       {
-           title: gettext('Backscatter'),
-           html: 'Backscatter'
+           itemId: 'quarantine',
+           xtype: 'pmgSpamQuarantineOptions'
        },
        {
-           title: gettext('Theme'),
-           html: 'Theme'
+           title: gettext('Status'),
+           itemId: 'status',
+           xtype: 'pmgSpamDetectorStatus'
        }
     ]
 });