diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 15:54:11 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 15:54:11 +0000 |
commit | 7c765875884d6866c53b63757731b079bace2e9b (patch) | |
tree | db436df0eaff7de048bca26a7e419aedeb4a08a4 /modules/freifunk/luasrc/controller | |
parent | dc7138e424dfd454951ed5ed4eeddbf842457e87 (diff) |
all: change most translate statements to new format, some need manual cleanup
Diffstat (limited to 'modules/freifunk/luasrc/controller')
-rw-r--r-- | modules/freifunk/luasrc/controller/freifunk/freifunk.lua | 6 | ||||
-rw-r--r-- | modules/freifunk/luasrc/controller/freifunk/remote_update.lua | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/freifunk/luasrc/controller/freifunk/freifunk.lua b/modules/freifunk/luasrc/controller/freifunk/freifunk.lua index 5efd50f813..52b37dc6a1 100644 --- a/modules/freifunk/luasrc/controller/freifunk/freifunk.lua +++ b/modules/freifunk/luasrc/controller/freifunk/freifunk.lua @@ -45,7 +45,7 @@ function index() local page = node("freifunk", "status", "status") page.target = form("freifunk/public_status") - page.title = i18n("overview") + page.title = i18n("Overview") page.order = 20 page.i18n = "admin-core" page.setuser = false @@ -57,7 +57,7 @@ function index() assign({"freifunk", "olsr"}, {"admin", "status", "olsr"}, "OLSR", 30) if nixio.fs.access("/etc/config/luci_statistics") then - assign({"freifunk", "graph"}, {"admin", "statistics", "graph"}, i18n("stat_statistics", "Statistiken"), 40) + assign({"freifunk", "graph"}, {"admin", "statistics", "graph"}, i18n("Statistics"), 40) end assign({"mini", "freifunk"}, {"admin", "freifunk"}, "Freifunk", 15) @@ -72,7 +72,7 @@ function index() page.title = "Kontakt" page.order = 40 - entry({"freifunk", "map"}, template("freifunk-map/frame"), i18n("freifunk_map", "Karte"), 50) + entry({"freifunk", "map"}, template("freifunk-map/frame"), i18n("Karte"), 50) entry({"freifunk", "map", "content"}, template("freifunk-map/map"), nil, 51) end diff --git a/modules/freifunk/luasrc/controller/freifunk/remote_update.lua b/modules/freifunk/luasrc/controller/freifunk/remote_update.lua index badfbf2da8..b894af7ebd 100644 --- a/modules/freifunk/luasrc/controller/freifunk/remote_update.lua +++ b/modules/freifunk/luasrc/controller/freifunk/remote_update.lua @@ -20,7 +20,7 @@ function index() local i18n = luci.i18n.translate entry({"admin", "system", "remote_update"}, call("act_remote_update"), - i18n("ff_remote_update", "Freifunk Remote Update"), 90) + i18n("Freifunk Remote Update"), 90) end function act_remote_update() |