projects
/
project
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3cf640
)
libs/uvl: fix i18n handling for errors
author
Jo-Philipp Wich
<jow@openwrt.org>
Sun, 1 Nov 2009 13:19:03 +0000
(13:19 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Sun, 1 Nov 2009 13:19:03 +0000
(13:19 +0000)
libs/uvl/luasrc/uvl/errors.lua
patch
|
blob
|
history
diff --git
a/libs/uvl/luasrc/uvl/errors.lua
b/libs/uvl/luasrc/uvl/errors.lua
index 614100fcef529b1addf667b0723834a604257b18..f4147d8b476364c2793335b538f0e833585657ab 100644
(file)
--- a/
libs/uvl/luasrc/uvl/errors.lua
+++ b/
libs/uvl/luasrc/uvl/errors.lua
@@
-85,11
+85,11
@@
for i, v in ipairs(ERRCODES) do
end
-function i18n(key
, def
)
+function i18n(key)
if luci.i18n then
- return luci.i18n.translate(key
,def
)
+ return luci.i18n.translate(key)
else
- return
def
+ return
key
end
end
@@
-130,10
+130,7
@@
end
function error.string(self,pad)
pad = pad or " "
- local str = i18n(
- 'uvl_err_%s' % string.lower(ERRCODES[self.code][1]),
- ERRCODES[self.code][2]
- )
+ local str = i18n(ERRCODES[self.code][2])
:gsub("\n", "\n"..pad)
:gsub("%%i", self:cid())
:gsub("%%I", self:sid())