ui: traffic-control edit: avoid CIDR literals in gettext

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-11-22 09:21:43 +01:00
parent 91abfef049
commit f8f4d7cab4
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ Ext.define('PBS.window.TrafficControlEdit', {
xtype: 'proxmoxtextfield',
fieldLabel: gettext('Network(s)'),
name: 'network',
emptyText: gettext('0.0.0.0/0, ::/0 (Apply on all Networks)'),
emptyText: `0.0.0.0/0, ::/0 (${gettext('Apply on all Networks')})`,
autoEl: {
tag: 'div',
'data-qtip': gettext('A comma-separated list of networks to apply the (shared) limit.'),