From: Franco Castillo Date: Mon, 2 Mar 2020 02:22:30 +0000 (-0300) Subject: luci-mod-network: fix typo X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a612574e118bf9eb283025c84055ffda2d4e8e84;p=oweals%2Fluci.git luci-mod-network: fix typo Signed-off-by: Franco Castillo --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js index 280356efb..80acd7c77 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js @@ -408,7 +408,7 @@ return L.view.extend({ o.modalonly = true; o.default = o.enabled; - type = s.taboption('physical', form.Flag, 'type', _('Bridge interfaces'), _('creates a bridge over specified interface(s)')); + type = s.taboption('physical', form.Flag, 'type', _('Bridge interfaces'), _('Creates a bridge over specified interface(s)')); type.modalonly = true; type.disabled = ''; type.enabled = 'bridge'; @@ -722,7 +722,7 @@ return L.view.extend({ proto = s2.option(form.ListValue, 'proto', _('Protocol')); proto.validate = name.validate; - bridge = s2.option(form.Flag, 'type', _('Bridge interfaces'), _('creates a bridge over specified interface(s)')); + bridge = s2.option(form.Flag, 'type', _('Bridge interfaces'), _('Creates a bridge over specified interface(s)')); bridge.modalonly = true; bridge.disabled = ''; bridge.enabled = 'bridge';