summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-10-31 16:48:31 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-10-31 16:48:31 +0000
commit50a26ced119e05fa0441107de9b586f2376b8411 (patch)
treeeaa78118094e57a8d878d33a613290feba196f6b /libs
parentccc8c1dae7f1da2a0443f8553a8146c54a4324fd (diff)
libs/cbi: remove auto-i18n, does not work anymore
Diffstat (limited to 'libs')
-rw-r--r--libs/cbi/luasrc/cbi.lua22
1 files changed, 0 insertions, 22 deletions
diff --git a/libs/cbi/luasrc/cbi.lua b/libs/cbi/luasrc/cbi.lua
index 7c20129be..9a88a2b36 100644
--- a/libs/cbi/luasrc/cbi.lua
+++ b/libs/cbi/luasrc/cbi.lua
@@ -222,22 +222,6 @@ function Node.__init__(self, title, description)
self.template = "cbi/node"
end
--- i18n helper
-function Node._i18n(self, config, section, option, title, description)
-
- -- i18n loaded?
- if type(luci.i18n) == "table" then
-
- local key = config and config:gsub("[^%w]+", "") or ""
-
- if section then key = key .. "_" .. section:lower():gsub("[^%w]+", "") end
- if option then key = key .. "_" .. tostring(option):lower():gsub("[^%w]+", "") end
-
- self.title = title or luci.i18n.translate( key, option or section or config )
- self.description = description or luci.i18n.translate( key .. "_desc", "" )
- end
-end
-
-- hook helper
function Node._run_hooks(self, ...)
local f
@@ -313,7 +297,6 @@ Map = class(Node)
function Map.__init__(self, config, ...)
Node.__init__(self, ...)
- Node._i18n(self, config, nil, nil, ...)
self.config = config
self.parsechain = {self.config}
@@ -842,9 +825,6 @@ function AbstractSection.option(self, class, option, ...)
if instanceof(class, AbstractValue) then
local obj = class(self.map, self, option, ...)
-
- Node._i18n(obj, self.config, self.section or self.sectiontype, option, ...)
-
self:append(obj)
self.fields[option] = obj
return obj
@@ -1059,7 +1039,6 @@ NamedSection = class(AbstractSection)
function NamedSection.__init__(self, map, section, stype, ...)
AbstractSection.__init__(self, map, stype, ...)
- Node._i18n(self, map.config, section, nil, ...)
-- Defaults
self.addremove = false
@@ -1124,7 +1103,6 @@ TypedSection = class(AbstractSection)
function TypedSection.__init__(self, map, type, ...)
AbstractSection.__init__(self, map, type, ...)
- Node._i18n(self, map.config, type, nil, ...)
self.template = "cbi/tsection"
self.deps = {}