From 7c3c6b013b26ca45a06f140083131195a7807bb6 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 2 Dec 2012 13:30:46 +0000 Subject: [PATCH] libs/web: let luci.i18n.setlanguage() return the lang that was actually loaded --- libs/web/luasrc/i18n.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/web/luasrc/i18n.lua b/libs/web/luasrc/i18n.lua index ff917c6f3..545a8aed9 100644 --- a/libs/web/luasrc/i18n.lua +++ b/libs/web/luasrc/i18n.lua @@ -63,8 +63,10 @@ function setlanguage(lang) if not tparser.load_catalog(context.lang, i18ndir) then if context.parent then tparser.load_catalog(context.parent, i18ndir) + return context.parent end end + return context.lang end --- Return the translated value for a specific translation key. -- 2.11.0