Changeset 4040
- Timestamp:
- 01/16/09 13:35:25 (4 years ago)
- Location:
- luci/trunk
- Files:
-
- 3 modified
-
i18n/english/luasrc/i18n/admin-core.en.lua (modified) (1 diff)
-
i18n/german/luasrc/i18n/admin-core.de.lua (modified) (1 diff)
-
modules/admin-full/luasrc/controller/admin/index.lua (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
luci/trunk/i18n/english/luasrc/i18n/admin-core.en.lua
r4027 r4040 327 327 hostnames_hostname = 'Hostname' 328 328 hostnames_address = 'IP address' 329 luci_components = "LuCI Components" -
luci/trunk/i18n/german/luasrc/i18n/admin-core.de.lua
r3899 r4040 339 339 hostnames_hostname = 'Rechnername' 340 340 hostnames_address = 'IP-Adresse' 341 luci_components = "LuCI Komponenten" -
luci/trunk/modules/admin-full/luasrc/controller/admin/index.lua
r3908 r4040 41 41 page.order = 10 42 42 page.index = true 43 43 44 44 local page = node("admin", "index", "luci") 45 45 page.target = cbi("admin_index/luci") 46 46 page.title = i18n("a_i_ui", "Oberfläche") 47 48 entry({"admin", "index", "logout"}, call("action_logout"), i18n("logout")) 47 page.order = 10 48 49 entry({"admin", "index", "components"}, call("redir_components"), i18n("luci_components", "LuCI Components"), 20) 50 entry({"admin", "index", "logout"}, call("action_logout"), i18n("logout"), 90) 51 end 52 53 function redir_components() 54 luci.http.redirect(luci.dispatcher.build_url("admin", "system", "packages")..'?update=1&query=luci') 49 55 end 50 56
