summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-06-08 15:36:57 +0000
committerSteven Barth <steven@midlink.org>2008-06-08 15:36:57 +0000
commit14438002a1df1e56564e19eec4726a077c0cfa0e (patch)
treed5421d802fb6479d75769bed3078220263824159 /libs
parent2d5110fcb4fe30c3923fb745146c6766d5dfbf9c (diff)
* More Translation
Diffstat (limited to 'libs')
-rw-r--r--libs/web/luasrc/i18n.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/web/luasrc/i18n.lua b/libs/web/luasrc/i18n.lua
index 546429933..3ed1ce017 100644
--- a/libs/web/luasrc/i18n.lua
+++ b/libs/web/luasrc/i18n.lua
@@ -55,6 +55,7 @@ end
-- Same as load but autocompletes the filename with .LANG from config.lang
function loadc(file, force)
+ load(file .. ".en", force)
return load(file .. "." .. require("luci.config").main.lang, force)
end