]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/MailProxyConfiguration.js
avoid to many gettext entries
[pmg-gui.git] / js / MailProxyConfiguration.js
index 563941923395d89b7d75623fa1139f8b9663de4c..7a06df0992fdb612e7adc4bae985fe66538363ce 100644 (file)
@@ -2,13 +2,18 @@ Ext.define('PMG.MailProxyConfiguration', {
     extend: 'Ext.tab.Panel',
     alias: 'widget.pmgMailProxyConfiguration',
 
-    title: gettext('Mail Proxy Configuration'),
+    title: gettext('Configuration') + ': ' +
+       gettext('Mail Proxy'),
 
     items: [
        {
            title: gettext('Relaying'),
            xtype: 'pmgMailProxyRelaying'
        },
+       {
+           title: gettext('Relay Domains'),
+           xtype: 'pmgRelayDomains'
+       },
        {
            title: gettext('Ports'),
            xtype: 'pmgMailProxyPorts'
@@ -19,19 +24,19 @@ Ext.define('PMG.MailProxyConfiguration', {
        },
        {
             title: gettext('Transports'),
-           html: "Transports"
+           xtype: 'pmgTransport'
        },
        {
             title: gettext('Networks'),
-           html: "Networks"
+           xtype: 'pmgMyNetworks'
        },
        {
             title: gettext('TLS'),
-           html: "TLS"
+           xtype: 'pmgMailProxyTLS'
        },
        {
             title: gettext('Whitelist'),
-           html: "whitelist"
+           xtype: "pmgSMTPWhitelist"
        }
     ]
 });