luci-base: remove references to luci.i18n.loadc()
authorJo-Philipp Wich <jo@mein.io>
Thu, 18 Oct 2018 09:02:28 +0000 (11:02 +0200)
committerJo-Philipp Wich <jo@mein.io>
Mon, 5 Nov 2018 10:01:45 +0000 (11:01 +0100)
The i18n.loadc() function has been a no-op since almost six years so it
makes no sense to invoke it anymore.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-base/luasrc/dispatcher.lua

index 8b9003d207ddcedfdea37626d4210f3aa0f14589..1e610e748919edd1601e5026ea12f62755b3bfe9 100644 (file)
@@ -296,10 +296,6 @@ function dispatch(request)
        ctx.requestpath = ctx.requestpath or freq
        ctx.path = preq
 
-       if track.i18n then
-               i18n.loadc(track.i18n)
-       end
-
        -- Init template engine
        if (c and c.index) or not track.notemplate then
                local tpl = require("luci.template")
@@ -603,9 +599,6 @@ function createtree()
        ctx.tree = tree
        ctx.modifiers = modi
 
-       -- Load default translation
-       require "luci.i18n".loadc("base")
-
        local scope = setmetatable({}, {__index = luci.dispatcher})
 
        for k, v in pairs(index) do