be4b08cf53e8a5011ff43b1b7ec0474dc6e40a27
[project/luci.git] / modules / admin-core / luasrc / model / cbi / admin_index / luci.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13 ]]--
14 require("luci.config")
15 m = Map("luci", translate("webui"), translate("a_i_luci1", 
16  "Hier können Eigenschaften und die Funktionalität der Oberfläche angepasst werden."))
17
18 c = m:section(NamedSection, "main", "core", translate("general"))
19
20 l = c:option(ListValue, "lang", translate("language"))
21
22 local i18ndir = luci.i18n.i18ndir .. "default."
23 for k, v in pairs(luci.config.languages) do
24         if k:sub(1, 1) ~= "." 
25          and (luci.fs.isfile(i18ndir .. k .. ".lua") 
26           or luci.fs.isfile(i18ndir .. k)) then
27                 l:value(k, v)
28         end
29 end
30
31 t = c:option(ListValue, "mediaurlbase", translate("design"))
32 for k, v in pairs(luci.config.themes) do
33         if k:sub(1, 1) ~= "." then
34                 t:value(v, k)
35         end
36 end
37
38 u = m:section(NamedSection, "uci_oncommit", "event", translate("a_i_ucicommit"),
39  translate("a_i_ucicommit1"))
40 u.dynamic = true
41
42 f = m:section(NamedSection, "flash_keep", "extern", translate("a_i_keepflash"),
43  translate("a_i_keepflash1"))
44 f.dynamic = true
45
46 return m