mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-06 13:18:00 +03:00
ui: gc job edit: fix i18n gettext usage
String concatenating a variable with some static text as gettext parameter cannot really work, and it also does not make sense to do most of the time, as even if we'd use some overly generic format string like '{0} (disabled)', it would be not easy to translate correctly in all languages in such a generic way. So just use the actual full string, which is already contained in our translation catalogue anyway… Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
5c15fb97b4
commit
74d735eeed
@ -23,6 +23,6 @@ Ext.define('PBS.window.GCJobEdit', {
|
||||
xtype: 'pbsCalendarEvent',
|
||||
name: 'gc-schedule',
|
||||
fieldLabel: gettext("GC Schedule"),
|
||||
emptyText: gettext(Proxmox.Utils.NoneText + " (disabled)"),
|
||||
emptyText: gettext('none (disabled)'),
|
||||
},
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user