diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-11-26 12:53:43 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-11-26 12:53:43 +0000 |
commit | 848e43a5b47c0467b90e7d9a029e59ec53461da3 (patch) | |
tree | 175f8f2aae92abc3a587fe39f082f53ea627ccc9 /applications/luci-wol | |
parent | 264aae7910c2598fe845ebdd952e504bf8f0e48e (diff) |
remove .i18n annotations from controller files
Diffstat (limited to 'applications/luci-wol')
-rw-r--r-- | applications/luci-wol/luasrc/controller/wol.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-wol/luasrc/controller/wol.lua b/applications/luci-wol/luasrc/controller/wol.lua index bb98b6d89..73a9594b2 100644 --- a/applications/luci-wol/luasrc/controller/wol.lua +++ b/applications/luci-wol/luasrc/controller/wol.lua @@ -1,6 +1,6 @@ module("luci.controller.wol", package.seeall) function index() - entry({"admin", "network", "wol"}, cbi("wol"), _("Wake on LAN"), 90).i18n = "wol" - entry({"mini", "network", "wol"}, cbi("wol"), _("Wake on LAN"), 90).i18n = "wol" + entry({"admin", "network", "wol"}, cbi("wol"), _("Wake on LAN"), 90) + entry({"mini", "network", "wol"}, cbi("wol"), _("Wake on LAN"), 90) end |