libs/core: explicitely load luci.i18n in network model
This commit is contained in:
parent
647a0d33c3
commit
8772db1675
1 changed files with 17 additions and 17 deletions
|
@ -20,8 +20,7 @@ limitations under the License.
|
|||
local type, next, pairs, ipairs, loadfile, table
|
||||
= type, next, pairs, ipairs, loadfile, table
|
||||
|
||||
local tonumber, tostring, math, i18n
|
||||
= tonumber, tostring, math, luci.i18n
|
||||
local tonumber, tostring, math = tonumber, tostring, math
|
||||
|
||||
local require = require
|
||||
|
||||
|
@ -33,6 +32,7 @@ local sys = require "luci.sys"
|
|||
local utl = require "luci.util"
|
||||
local dsp = require "luci.dispatcher"
|
||||
local uci = require "luci.model.uci"
|
||||
local lng = require "luci.i18n"
|
||||
|
||||
module "luci.model.network"
|
||||
|
||||
|
@ -718,13 +718,13 @@ end
|
|||
function protocol.get_i18n(self)
|
||||
local p = self:proto()
|
||||
if p == "none" then
|
||||
return i18n.translate("Unmanaged")
|
||||
return lng.translate("Unmanaged")
|
||||
elseif p == "static" then
|
||||
return i18n.translate("Static address")
|
||||
return lng.translate("Static address")
|
||||
elseif p == "dhcp" then
|
||||
return i18n.translate("DHCP client")
|
||||
return lng.translate("DHCP client")
|
||||
else
|
||||
return i18n.translate("Unknown")
|
||||
return lng.translate("Unknown")
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -1063,7 +1063,7 @@ end
|
|||
function interface.get_i18n(self)
|
||||
if self.wif then
|
||||
return "%s: %s %q" %{
|
||||
i18n.translate("Wireless Network"),
|
||||
lng.translate("Wireless Network"),
|
||||
self.wif:active_mode(),
|
||||
self.wif:active_ssid() or self.wif:active_bssid()
|
||||
}
|
||||
|
@ -1075,17 +1075,17 @@ end
|
|||
function interface.get_type_i18n(self)
|
||||
local x = self:type()
|
||||
if x == "wifi" then
|
||||
return i18n.translate("Wireless Adapter")
|
||||
return lng.translate("Wireless Adapter")
|
||||
elseif x == "bridge" then
|
||||
return i18n.translate("Bridge")
|
||||
return lng.translate("Bridge")
|
||||
elseif x == "switch" then
|
||||
return i18n.translate("Ethernet Switch")
|
||||
return lng.translate("Ethernet Switch")
|
||||
elseif x == "vlan" then
|
||||
return i18n.translate("VLAN Interface")
|
||||
return lng.translate("VLAN Interface")
|
||||
elseif x == "tunnel" then
|
||||
return i18n.translate("Tunnel Interface")
|
||||
return lng.translate("Tunnel Interface")
|
||||
else
|
||||
return i18n.translate("Ethernet Adapter")
|
||||
return lng.translate("Ethernet Adapter")
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -1396,7 +1396,7 @@ function wifinet.active_mode(self)
|
|||
end
|
||||
|
||||
function wifinet.active_mode_i18n(self)
|
||||
return i18n.translate(self:active_mode())
|
||||
return lng.translate(self:active_mode())
|
||||
end
|
||||
|
||||
function wifinet.active_ssid(self)
|
||||
|
@ -1485,15 +1485,15 @@ end
|
|||
|
||||
function wifinet.shortname(self)
|
||||
return "%s %q" %{
|
||||
i18n.translate(self:active_mode()),
|
||||
lng.translate(self:active_mode()),
|
||||
self:active_ssid() or self:active_bssid()
|
||||
}
|
||||
end
|
||||
|
||||
function wifinet.get_i18n(self)
|
||||
return "%s: %s %q (%s)" %{
|
||||
i18n.translate("Wireless Network"),
|
||||
i18n.translate(self:active_mode()),
|
||||
lng.translate("Wireless Network"),
|
||||
lng.translate(self:active_mode()),
|
||||
self:active_ssid() or self:active_bssid(),
|
||||
self:ifname()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue