From c160e7532aed9a85f7a1c12892c2e139a817cf54 Mon Sep 17 00:00:00 2001 From: Rohit Yadav Date: Sat, 29 Jun 2019 00:23:36 +0530 Subject: [PATCH] ui: fix LB protocol bug (#3438) Fixes #3252 This fixes labels for missing LB protocol(s). Signed-off-by: Rohit Yadav --- ui/l10n/en.js | 1 + ui/scripts/network.js | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ui/l10n/en.js b/ui/l10n/en.js index aca4d998fbc..cd5f44de4d9 100644 --- a/ui/l10n/en.js +++ b/ui/l10n/en.js @@ -989,6 +989,7 @@ var dictionary = { "label.lb.protocol.http":"HTTP", "label.lb.protocol.ssl":"SSL", "label.lb.protocol.tcp":"TCP", +"label.lb.protocol.tcp.proxy":"TCP-proxy", "label.lb.protocol.udp":"UDP", "label.ldap.configuration":"LDAP Configuration", "label.ldap.group.name":"LDAP Group", diff --git a/ui/scripts/network.js b/ui/scripts/network.js index c1101cd0ca8..24a6c7dfc91 100644 --- a/ui/scripts/network.js +++ b/ui/scripts/network.js @@ -3392,6 +3392,10 @@ id: 'tcp', name: 'tcp', description: _l('label.lb.protocol.tcp') + }, { + id: 'tcp-proxy', + name: 'tcp-proxy', + description: _l('label.lb.protocol.tcp.proxy') }, { id: 'udp', name: 'udp',