diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-26 18:30:00 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-26 18:30:00 +0000 |
commit | 76457655ef5f098420af793740f03f6e2bdc80a0 (patch) | |
tree | 450a3bc0578e93d5aa57dfbb20586142e36f03a1 /modules/freifunk/luasrc | |
parent | 9fd4e54cbbdbfb005fe798902e7a0cd7a612c830 (diff) |
modules/freifunk: fix wrong call to translate in controller
Diffstat (limited to 'modules/freifunk/luasrc')
-rw-r--r-- | modules/freifunk/luasrc/controller/freifunk/freifunk.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/freifunk/luasrc/controller/freifunk/freifunk.lua b/modules/freifunk/luasrc/controller/freifunk/freifunk.lua index fd61bb3bd..9769ea08b 100644 --- a/modules/freifunk/luasrc/controller/freifunk/freifunk.lua +++ b/modules/freifunk/luasrc/controller/freifunk/freifunk.lua @@ -72,7 +72,7 @@ function index() page.title = "Kontakt" page.order = 40 - entry({"freifunk", "map"}, template("freifunk-map/frame"), translate("freifunk_map", "Karte"), 50) + entry({"freifunk", "map"}, template("freifunk-map/frame"), i18n("freifunk_map", "Karte"), 50) entry({"freifunk", "map", "content"}, template("freifunk-map/map"), nil, 51) end |