]> git.proxmox.com Git - proxmox-widget-toolkit.git/commitdiff
schema: endpoint types: don't translate endpoint type names
authorLukas Wagner <l.wagner@proxmox.com>
Mon, 9 Oct 2023 14:38:29 +0000 (16:38 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 6 Nov 2023 17:19:29 +0000 (18:19 +0100)
... that are not really translatable.

Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
src/Schema.js

index a7ffdf8443e82dc4af33de83e3094a549206a646..e0f583afc70bb6da72cbf0f1785777e8847ba29f 100644 (file)
@@ -39,12 +39,12 @@ Ext.define('Proxmox.Schema', { // a singleton
 
     notificationEndpointTypes: {
        sendmail: {
-           name: gettext('Sendmail'),
+           name: 'Sendmail',
            ipanel: 'pmxSendmailEditPanel',
            iconCls: 'fa-envelope-o',
        },
        gotify: {
-           name: gettext('Gotify'),
+           name: 'Gotify',
            ipanel: 'pmxGotifyEditPanel',
            iconCls: 'fa-bell-o',
        },