From: Jo-Philipp Wich Date: Wed, 17 Nov 2010 01:57:53 +0000 (+0000) Subject: modules/admin-full: add missing translations to switch config page X-Git-Tag: 0.10.0~450 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ba226fda1ba8a5e0e12043384bbd05b3f4ed3059;p=oweals%2Fluci.git modules/admin-full: add missing translations to switch config page --- diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua b/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua index c71b9a0f7..866cfe73a 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua @@ -93,13 +93,13 @@ m.uci:foreach("network", "switch", s = m:section(NamedSection, x['.name'], "switch", translatef("Switch %q", switch_name)) s.addremove = false - s:option(Flag, "enable", "Enable this switch") + s:option(Flag, "enable", translate("Enable this switch")) .cfgvalue = function(self, section) return Flag.cfgvalue(self, section) or self.enabled end - s:option(Flag, "enable_vlan", "Enable VLAN functionality") + s:option(Flag, "enable_vlan", translate("Enable VLAN functionality")) .cfgvalue = function(self, section) return Flag.cfgvalue(self, section) or self.enabled end - s:option(Flag, "reset", "Reset switch during setup") + s:option(Flag, "reset", translate("Reset switch during setup")) .cfgvalue = function(self, section) return Flag.cfgvalue(self, section) or self.enabled end @@ -266,8 +266,7 @@ m.uci:foreach("network", "switch", s = m:section(TypedSection, "switch", translatef("Port PVIDs on %q", switch_name), translate("Port PVIDs specify " .. - "the default VLAN ID added to received untagged frames.
" .. - "Leave the ID field empty to disable auto tagging on the associated port.")) + "the default VLAN ID added to received untagged frames.")) s.template = "cbi/tblsection" s.addremove = false