summaryrefslogtreecommitdiffhomepage
path: root/libs/web
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2009-01-14 23:47:56 +0000
committerSteven Barth <steven@midlink.org>2009-01-14 23:47:56 +0000
commitd0d1fe0a28c5dcd5ffe62c59fde634dda2b5f1cd (patch)
tree2c0741ce91c03c1fc5caf2a8549cb3ceda4dbd92 /libs/web
parentd415e9ac42e23ce2c0784be0e092205ec82c78df (diff)
Automatic language detection
Diffstat (limited to 'libs/web')
-rw-r--r--libs/web/luasrc/dispatcher.lua13
-rw-r--r--libs/web/root/etc/config/luci2
2 files changed, 13 insertions, 2 deletions
diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua
index 5f450eb5e..c0d8b98c2 100644
--- a/libs/web/luasrc/dispatcher.lua
+++ b/libs/web/luasrc/dispatcher.lua
@@ -130,7 +130,18 @@ function dispatch(request)
ctx.path = request
ctx.urltoken = ctx.urltoken or {}
- require "luci.i18n".setlanguage(require "luci.config".main.lang)
+ local conf = require "luci.config"
+ local lang = conf.main.lang
+ if lang == "auto" then
+ local aclang = http.getenv("HTTP_ACCEPT_LANGUAGE") or ""
+ for lpat in aclang:gmatch("[%w]+") do
+ if conf.languages[lpat] then
+ lang = lpat
+ break
+ end
+ end
+ end
+ require "luci.i18n".setlanguage(lang)
local c = ctx.tree
local stat
diff --git a/libs/web/root/etc/config/luci b/libs/web/root/etc/config/luci
index 0178f6c28..207b962d6 100644
--- a/libs/web/root/etc/config/luci
+++ b/libs/web/root/etc/config/luci
@@ -1,5 +1,5 @@
config core main
- option lang en
+ option lang auto
option mediaurlbase /luci-static/openwrt.org
option resourcebase /luci-static/resources