]> git.proxmox.com Git - pve-manager.git/commitdiff
ui: backup job: change field text for 'mailnotification' field
authorLukas Wagner <l.wagner@proxmox.com>
Tue, 21 Nov 2023 12:52:40 +0000 (13:52 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 21 Nov 2023 13:41:15 +0000 (14:41 +0100)
... to highlight that this setting only affects the 'legacy-sendmail'
mail notifications.

Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
www/manager6/dc/Backup.js
www/manager6/form/NotificationPolicySelector.js

index 1258772bd56eea24449dc2d92e844ff1da1c1e5b..70903bdc2e6fd4adb007a74d118be830c9e4ea19 100644 (file)
@@ -327,7 +327,7 @@ Ext.define('PVE.dc.BackupEdit', {
                                },
                                {
                                    xtype: 'pveEmailNotificationSelector',
-                                   fieldLabel: gettext('Notify'),
+                                   fieldLabel: gettext('Send email'),
                                    name: 'mailnotification',
                                    cbind: {
                                        value: (get) => get('isCreate') ? 'always' : '',
index f318ea18db717cbcb745bfcce18fad32dc484255..d2a5138626a3502f171011043b1e1fdd2fba0611 100644 (file)
@@ -2,7 +2,7 @@ Ext.define('PVE.form.EmailNotificationSelector', {
     extend: 'Proxmox.form.KVComboBox',
     alias: ['widget.pveEmailNotificationSelector'],
     comboItems: [
-       ['always', gettext('Notify always')],
+       ['always', gettext('Always')],
        ['failure', gettext('On failure only')],
     ],
 });