luci/applications/luci-fw/luasrc/controller/luci_fw/luci_fw.lua

19 lines
750 B
Lua
Raw Normal View History

module("luci.controller.luci_fw.luci_fw", package.seeall)
2008-05-22 14:04:03 +00:00
function index()
2008-06-08 15:36:57 +00:00
require("luci.i18n").loadc("luci-fw")
local i18n = luci.i18n.translate
local nodes = {}
2008-06-08 15:36:57 +00:00
table.insert(nodes, entry({"admin", "network", "portfw"}, cbi("luci_fw/portfw"), i18n("fw_portfw", "Portweiterleitung"), 70))
table.insert(nodes, entry({"admin", "network", "routing"}, cbi("luci_fw/routing"), i18n("fw_routing", "Routing"), 73))
table.insert(nodes, entry({"admin", "network", "firewall"}, cbi("luci_fw/firewall"), i18n("fw_fw", "Firewall"), 76))
table.insert(nodes, entry({"mini", "network", "portfw"}, cbi("luci_fw/miniportfw"), i18n("fw_portfw", "Portweiterleitung"), 70))
for i,n in ipairs(nodes) do
n.i18n = "luci-fw"
n.dependent = true
end
2008-05-22 14:04:03 +00:00
end