eed626c5b72f1a378043658db2b8f244b2eda536
[project/luci.git] / src / ffluci / model / cbi / admin_index / luci.lua
1 -- ToDo: Translate, Add descriptions and help texts
2 m = Map("luci", "FFLuCI")
3
4 c = m:section(NamedSection, "main", "core", "Allgemein")
5 c:option(Value, "lang", "Sprache")
6 c:option(Value, "mediaurlbase", "Mediaverzeichnis")
7
8 f = m:section(NamedSection, "flash", "extern", "Firmwareupgrade")
9 f:option(Value, "keep", "Übernehme Dateien").size = 64
10
11 p = m:section(NamedSection, "category_privileges", "core", "Kategorieprivilegien")
12 p.dynamic = true
13
14 u = m:section(NamedSection, "uci_oncommit", "event", "UCI-Befehle beim Anwenden")
15 u.dynamic = true
16
17 return m