--[[ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 $Id$ ]]-- local fs = require "nixio.fs" local i18n = require "luci.i18n" local util = require "luci.util" local config = require "luci.config" m = Map("luci", "Device Settings") c = m:section(NamedSection, "main", "core", translate("Local Settings")) hn = c:option(Value, "_uniquename", translate("Unique Devicename")) function hn:cfgvalue(self) return require "nixio.fs".readfile("/proc/sys/kernel/hostname") end l = c:option(ListValue, "lang", translate("System Language")) l:value("auto") local i18ndir = i18n.i18ndir .. "default." for k, v in util.kspairs(config.languages) do local file = i18ndir .. k:gsub("_", "-") if k:sub(1, 1) ~= "." and fs.access(file .. ".lmo") then l:value(k, v) end end pw1 = c:option(Value, "_pw1", translate("Administrator Password")) pw1.password = true pw1.default = "**********" return m