mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-05-31 19:38:44 +00:00
32 lines
516 B
JavaScript
32 lines
516 B
JavaScript
Ext.define('PMG.SpamDetectorConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgSpamDetectorConfiguration',
|
|
|
|
title: gettext('Spam Detector Configuration'),
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Options'),
|
|
html: 'Options'
|
|
},
|
|
{
|
|
title: gettext('Languages'),
|
|
html: 'Languages'
|
|
},
|
|
{
|
|
title: gettext('Quarantine'),
|
|
html: 'Quarantine'
|
|
},
|
|
{
|
|
title: gettext('Backscatter'),
|
|
html: 'Backscatter'
|
|
},
|
|
{
|
|
title: gettext('Theme'),
|
|
html: 'Theme'
|
|
}
|
|
]
|
|
});
|
|
|
|
|