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-commands | |
parent | 264aae7910c2598fe845ebdd952e504bf8f0e48e (diff) |
remove .i18n annotations from controller files
Diffstat (limited to 'applications/luci-commands')
-rw-r--r-- | applications/luci-commands/luasrc/controller/commands.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-commands/luasrc/controller/commands.lua b/applications/luci-commands/luasrc/controller/commands.lua index c04d186bb..b9f0ce879 100644 --- a/applications/luci-commands/luasrc/controller/commands.lua +++ b/applications/luci-commands/luasrc/controller/commands.lua @@ -14,7 +14,7 @@ You may obtain a copy of the License at module("luci.controller.commands", package.seeall) function index() - entry({"admin", "system", "commands"}, firstchild(), _("Custom Commands"), 80).i18n = "commands" + entry({"admin", "system", "commands"}, firstchild(), _("Custom Commands"), 80) entry({"admin", "system", "commands", "dashboard"}, template("commands"), _("Dashboard"), 1) entry({"admin", "system", "commands", "config"}, cbi("commands"), _("Configure"), 2) entry({"admin", "system", "commands", "run"}, call("action_run"), nil, 3).leaf = true |