summaryrefslogtreecommitdiffhomepage
path: root/modules/freifunk
diff options
context:
space:
mode:
Diffstat (limited to 'modules/freifunk')
-rw-r--r--modules/freifunk/luasrc/model/cbi/freifunk/contact.lua8
-rw-r--r--modules/freifunk/luasrc/view/freifunk/contact.htm2
2 files changed, 5 insertions, 5 deletions
diff --git a/modules/freifunk/luasrc/model/cbi/freifunk/contact.lua b/modules/freifunk/luasrc/model/cbi/freifunk/contact.lua
index 41e709d95..c976409c6 100644
--- a/modules/freifunk/luasrc/model/cbi/freifunk/contact.lua
+++ b/modules/freifunk/luasrc/model/cbi/freifunk/contact.lua
@@ -14,7 +14,7 @@ $Id$
luci.i18n.loadc("freifunk")
-m = Map("freifunk", translate("contact"), translate("contact1"))
+m = Map("freifunk", translate("Contact"), translate("Please fill in your contact details below."))
c = m:section(NamedSection, "contact", "public", "")
@@ -25,10 +25,10 @@ c:option(Value, "phone", translate("Phone"))
c:option(Value, "location", translate("Location"))
c:option(Value, "note", translate("Notice"))
-m2 = Map("system", translate("geo"))
+m2 = Map("system", translate("Coordinates"))
s = m2:section(TypedSection, "system", "")
-s:option(Value, "latitude", translate("Breite")).rmempty = true
-s:option(Value, "longitude", translate("Länge")).rmempty = true
+s:option(Value, "latitude", translate("Latitude")).rmempty = true
+s:option(Value, "longitude", translate("Longitude")).rmempty = true
return m, m2
diff --git a/modules/freifunk/luasrc/view/freifunk/contact.htm b/modules/freifunk/luasrc/view/freifunk/contact.htm
index 59d508c6f..0b4a06810 100644
--- a/modules/freifunk/luasrc/view/freifunk/contact.htm
+++ b/modules/freifunk/luasrc/view/freifunk/contact.htm
@@ -14,7 +14,7 @@ $Id$
-%>
<%+header%>
<% local contact = luci.model.uci.cursor():get_all("freifunk", "contact") %>
-<h2><a id="content" name="content"><%:contact%></a></h2>
+<h2><a id="content" name="content"><%:Contact%></a></h2>
<table cellspacing="0" cellpadding="6">
<tr><th><%:Nickname%>:</th><td><%=contact.nickname%></td></tr>
<tr><th><%:Realname%>:</th><td><%=contact.name%></td></tr>