summaryrefslogtreecommitdiffhomepage
path: root/libs/web
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-07-06 15:21:12 +0000
committerSteven Barth <steven@midlink.org>2008-07-06 15:21:12 +0000
commitf12acd8a11a200d8f4c7c2bcccc38e44be56a983 (patch)
treed80731dd6c2c59df3a2a69df8faa02aaf6eb9046 /libs/web
parent8f770fd17a561f9e7eecf0b415abb9bb5101cb94 (diff)
libs/web: Removed deprecated i18n-file naming convention
Diffstat (limited to 'libs/web')
-rw-r--r--libs/web/luasrc/i18n.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/libs/web/luasrc/i18n.lua b/libs/web/luasrc/i18n.lua
index 2c2bb2e1a..e30116202 100644
--- a/libs/web/luasrc/i18n.lua
+++ b/libs/web/luasrc/i18n.lua
@@ -43,7 +43,6 @@ function load(file, lang, force)
lang = lang or ""
if force or not loaded[lang] or not loaded[lang][file] then
local f = loadfile(i18ndir .. file .. "." .. lang .. ".lua")
- or loadfile(i18ndir .. file .. "." .. lang)
if f then
table[lang] = table[lang] or {}
setfenv(f, table[lang])