From 8ab48be60630037fafeb21eb2f82147e0f45e511 Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Wed, 2 Feb 2011 10:55:38 +0000 Subject: [PATCH] modules/freifunk: i18n for basics.lua and helptext for latlon (#177) --- modules/freifunk/luasrc/model/cbi/freifunk/basics.lua | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/freifunk/luasrc/model/cbi/freifunk/basics.lua b/modules/freifunk/luasrc/model/cbi/freifunk/basics.lua index 70bc8ad477..b404181dc8 100644 --- a/modules/freifunk/luasrc/model/cbi/freifunk/basics.lua +++ b/modules/freifunk/luasrc/model/cbi/freifunk/basics.lua @@ -36,7 +36,7 @@ n = Map("system", translate("Basic system settings")) b = n:section(TypedSection, "system") b.anonymous = true -hn = b:option(Value, "hostname", "hostname") +hn = b:option(Value, "hostname", translate("Hostname")) hn.rmempty = false function hn.validate(self, value) if value == nil then @@ -48,13 +48,13 @@ function hn.validate(self, value) end end -loc = b:option(Value, "location", "Location") +loc = b:option(Value, "location", translate("Location")) loc.rmempty = false -lat = b:option(Value, "latitude", "latitude") +lat = b:option(Value, "latitude", translate("Latitude"), translate("e.g.") .. " 48.12345") lat.rmempty = false -lon = b:option(Value, "longitude", "longitude") +lon = b:option(Value, "longitude", translate("Longitude"), translate("e.g.") .. " 10.12345") lon.rmempty = false --[[ @@ -63,6 +63,7 @@ Makes use of resources/OSMLatLon.htm and htdocs/resources/osm.js (is that the right place for files like these?) ]]-- +--[[ this needs to be fixed local class = util.class local co = "profile_augsburg" local syslat = uci:get_first(co, "community", "latitude") @@ -108,6 +109,6 @@ end osm.displaytext="OpenStreetMap anzeigen" osm.hidetext="OpenStreetMap verbergen" - +]] return m, n -- 2.30.2