diff options
author | Manuel Munz <freifunk@somakoma.de> | 2011-01-28 23:31:10 +0000 |
---|---|---|
committer | Manuel Munz <freifunk@somakoma.de> | 2011-01-28 23:31:10 +0000 |
commit | 77475804e0ae65eb6924b64094c77c31911c7bb3 (patch) | |
tree | ffe994284c9adda4a3a339b237a0980fa5cad822 /modules | |
parent | 2006a2a82744c66a71e5a6048df9c35600cd474b (diff) |
modules/freifunk: i18n
Diffstat (limited to 'modules')
5 files changed, 23 insertions, 26 deletions
diff --git a/modules/freifunk/luasrc/model/cbi/freifunk/basics.lua b/modules/freifunk/luasrc/model/cbi/freifunk/basics.lua index 1cd5c6d9c..70bc8ad47 100644 --- a/modules/freifunk/luasrc/model/cbi/freifunk/basics.lua +++ b/modules/freifunk/luasrc/model/cbi/freifunk/basics.lua @@ -8,21 +8,19 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 - -$Id: freifunk.lua 3291 2008-09-14 21:59:14Z Cyrus $ -]]-- +]] local fs = require "luci.fs" local util = require "luci.util" local uci = require "luci.model.uci".cursor() local profiles = "/etc/config/profile_" -m = Map("freifunk", "Freifunk") -c = m:section(NamedSection, "community", "public", "Gemeinschaft", [[Dies sind die Grundeinstellungen -für die lokale Freifunkgemeinschaft. Diese Werte wirken sich NICHT auf die Konfiguration -des Routers aus, sondern definieren nur die Vorgaben für den Freifunkassistenten.]]) +m = Map("freifunk", translate ("Community")) +c = m:section(NamedSection, "community", "public", nil, translate([[These are the basic +settings for your local wireless community. These settings define the default values for the wizard +and DO NOT affect the actual configuration of the router.]])) -community = c:option(ListValue, "name", "Gemeinschaft") +community = c:option(ListValue, "name", translate ("Community")) community.rmempty = false local list = { } @@ -35,7 +33,7 @@ for k,v in ipairs(list) do end n = Map("system", translate("Basic system settings")) -b = n:section(TypedSection, "system", "Basic system settings") +b = n:section(TypedSection, "system") b.anonymous = true hn = b:option(Value, "hostname", "hostname") diff --git a/modules/freifunk/luasrc/model/cbi/freifunk/profile.lua b/modules/freifunk/luasrc/model/cbi/freifunk/profile.lua index 87ec03c7e..54e32b685 100644 --- a/modules/freifunk/luasrc/model/cbi/freifunk/profile.lua +++ b/modules/freifunk/luasrc/model/cbi/freifunk/profile.lua @@ -15,16 +15,16 @@ local community = "profile_" .. uci:get("freifunk", "community", "name") --local community = "profile_augsburg" -m = Map(community, translate("Community settings"), translate("These are the settings of your local community")) +m = Map(community, translate("Community settings"), translate("These are the settings of your local community.")) -c = m:section(NamedSection, "profile", "community", "foobar") +c = m:section(NamedSection, "profile", "community") name = c:option(Value, "name", "Name") name.rmempty = false -homepage = c:option(Value, "homepage", "Webseite") +homepage = c:option(Value, "homepage", translate("Homepage")) -cc = c:option(Value, "country", "Countrycode") +cc = c:option(Value, "country", translate("Country code")) function cc.cfgvalue(self, section) return uci:get(community, "wifi_device", "country") end @@ -35,21 +35,21 @@ function cc.write(self, sec, value) end end -ssid = c:option(Value, "ssid", "ESSID") +ssid = c:option(Value, "ssid", translate("ESSID")) ssid.rmempty = false -prefix = c:option(Value, "mesh_network", "Netzprefix") +prefix = c:option(Value, "mesh_network", translate("Mesh prefix")) prefix.rmempty = false -splash_net = c:option(Value, "splash_network", "Netzwerk für Client-DHCP-Adressen") +splash_net = c:option(Value, "splash_network", translate("Network for client DHCP addresses")) splash_net.rmempty = false -splash_prefix = c:option(Value, "splash_prefix", "Netzgröße für Clientnetze") +splash_prefix = c:option(Value, "splash_prefix", translate("Client network size")) splash_prefix.rmempty = false -lat = c:option(Value, "latitude", "Latitude") +lat = c:option(Value, "latitude", translate("Latitude")) lat.rmempty = false -lon = c:option(Value, "longitude", "longitude") +lon = c:option(Value, "longitude", translate("Longitude")) lon.rmempty = false return m diff --git a/modules/freifunk/luasrc/model/cbi/freifunk/profile_expert.lua b/modules/freifunk/luasrc/model/cbi/freifunk/profile_expert.lua index 5da7e7b12..d737132b0 100644 --- a/modules/freifunk/luasrc/model/cbi/freifunk/profile_expert.lua +++ b/modules/freifunk/luasrc/model/cbi/freifunk/profile_expert.lua @@ -14,7 +14,8 @@ local fs = require "nixio.fs" local uci = require "luci.model.uci".cursor() local community = "/etc/config/profile_" .. uci:get("freifunk", "community", "name") -f = SimpleForm("community", translate("Community profile"), translate("This is the complete content of the selected community profile.")) +f = SimpleForm("community", translate("Community profile"), + translate("You can manually edit the selected community profile here.")) t = f:field(TextValue, "cop") t.rmempty = true diff --git a/modules/freifunk/luasrc/model/cbi/freifunk/user_index.lua b/modules/freifunk/luasrc/model/cbi/freifunk/user_index.lua index 2b8cef968..fe1d8fe7e 100644 --- a/modules/freifunk/luasrc/model/cbi/freifunk/user_index.lua +++ b/modules/freifunk/luasrc/model/cbi/freifunk/user_index.lua @@ -6,7 +6,7 @@ m = Map("freifunk", translate("Edit index page"), translate("You can display add s = m:section(NamedSection, "community", "public", "") s.anonymous = true -di = s:option(Flag, "DefaultText", translate("Disable default content"), translate("If checked then the default content element is not shown.")) +di = s:option(Flag, "DefaultText", translate("Disable default content"), translate("If selected then the default content element is not shown.")) di.enabled = "disabled" di.disabled = "enabled" di.rmempty = false diff --git a/modules/freifunk/luasrc/view/freifunk/adminindex.htm b/modules/freifunk/luasrc/view/freifunk/adminindex.htm index 57f6bddba..8846b5c87 100644 --- a/modules/freifunk/luasrc/view/freifunk/adminindex.htm +++ b/modules/freifunk/luasrc/view/freifunk/adminindex.htm @@ -17,16 +17,14 @@ local basicsurl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "fr <% if not (hostname and latitude and longitude and location) then%> <div class="error"> - <%:Basic settings are missing. Please go to this page and fill all required fields: %> - <a href='<%=basicsurl%>'><%:Basic settings%></a> + <%:Basic settings are incomplete. Please go to <a href='<%=basicsurl%>'><%:Basic settings%></a> and fill out all required fields.%></p> </div> <%end%> <p /> <% if not (contact.nickname and contact.name and contact.mail) then%> <div class="error"> - <%:Contact information missing. Please go to this page and fill all required fields: %> - <a href='<%=contacturl%>'><%:Contact%></a><p /> + <%:Contact information is incomplete. Please go to <a href='<%=contacturl%>'><%:Contact%></a> and fill out all required fields.%></p> </div> <%end%> @@ -34,7 +32,7 @@ local basicsurl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "fr local device = section[".name"] local url = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "network", "wireless") if section.diversity ~= "0" and section.disabled ~= "1" then - print('<div class="error">Diversity is enabled for device <b>' .. device .. '</b>. Go to <a href="' .. url .. '">wireless settings</a> to change that.</div><p />') + print('<div class="error">Diversity is enabled for device <b>' .. device .. '</b>. Go to <a href="' .. url .. '">wireless settings</a> to disable it.</div><p />') end end) %> |