diff --git a/modules/freifunk/luasrc/i18n/freifunk.de.lua b/modules/freifunk/luasrc/i18n/freifunk.de.lua
index de25a771f7..27382b3ca7 100644
--- a/modules/freifunk/luasrc/i18n/freifunk.de.lua
+++ b/modules/freifunk/luasrc/i18n/freifunk.de.lua
@@ -9,6 +9,7 @@ ff_location = 'Standort'
ff_mail = 'E-Mail'
ff_mail1 = 'Bitte unbedingt angeben!'
ff_nickname = 'Pseudonym'
+ff_name = 'Name'
ff_node = 'Knoten'
ff_note = 'Notiz'
ff_phone = 'Telefon'
diff --git a/modules/freifunk/luasrc/i18n/freifunk.de.xml b/modules/freifunk/luasrc/i18n/freifunk.de.xml
index bd6ac3dcc8..426454de96 100644
--- a/modules/freifunk/luasrc/i18n/freifunk.de.xml
+++ b/modules/freifunk/luasrc/i18n/freifunk.de.xml
@@ -14,6 +14,7 @@
E-Mail
Bitte unbedingt angeben!
Pseudonym
+Name
Knoten
Notiz
Telefon
diff --git a/modules/freifunk/luasrc/i18n/freifunk.en.lua b/modules/freifunk/luasrc/i18n/freifunk.en.lua
index 173ccaf00f..cf3ae4d7a5 100644
--- a/modules/freifunk/luasrc/i18n/freifunk.en.lua
+++ b/modules/freifunk/luasrc/i18n/freifunk.en.lua
@@ -9,6 +9,7 @@ ff_location = 'Location'
ff_mail = 'E-Mail'
ff_mail1 = 'You really should provide your address here!'
ff_nickname = 'Nickname'
+ff_name = 'Realname'
ff_node = 'Node'
ff_note = 'Notice'
ff_phone = 'Phone'
diff --git a/modules/freifunk/luasrc/i18n/freifunk.en.xml b/modules/freifunk/luasrc/i18n/freifunk.en.xml
index 5664ba68ab..ce519ad72c 100644
--- a/modules/freifunk/luasrc/i18n/freifunk.en.xml
+++ b/modules/freifunk/luasrc/i18n/freifunk.en.xml
@@ -14,6 +14,7 @@
E-Mail
You really should provide your address here!
Nickname
+Realname
Node
Notice
Phone
diff --git a/modules/freifunk/luasrc/view/freifunk/contact.htm b/modules/freifunk/luasrc/view/freifunk/contact.htm
index 12b072c021..3596827cfd 100644
--- a/modules/freifunk/luasrc/view/freifunk/contact.htm
+++ b/modules/freifunk/luasrc/view/freifunk/contact.htm
@@ -16,12 +16,12 @@ $Id$
<% local contact = luci.model.uci.cursor():get_all("freifunk", "contact") %>
<%:contact%>
- <%:nickname%>: | <%=contact.nickname%> |
- <%:name%>: | <%=contact.name%> |
- <%:mail%>: | <%=contact.mail%> |
- <%:phone%>: | <%=contact.phone%> |
- <%:location%>: | <%=contact.location%> |
- <%:geocoord%>: | <%=contact.geo%> |
- <%:note%>: | <%=contact.note%> |
+ <%:ff_nickname%>: | <%=contact.nickname%> |
+ <%:ff_name%>: | <%=contact.name%> |
+ <%:ff_mail%>: | <%=contact.mail%> |
+ <%:ff_phone%>: | <%=contact.phone%> |
+ <%:ff_location%>: | <%=contact.location%> |
+ <%:ff_geocoord%>: | <%=contact.geo%> |
+ <%:ff_note%>: | <%=contact.note%> |
-<%+footer%>
\ No newline at end of file
+<%+footer%>