From 77475804e0ae65eb6924b64094c77c31911c7bb3 Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Fri, 28 Jan 2011 23:31:10 +0000 Subject: [PATCH] modules/freifunk: i18n --- .../freifunk/luasrc/model/cbi/freifunk/basics.lua | 16 +++++++--------- .../freifunk/luasrc/model/cbi/freifunk/profile.lua | 20 ++++++++++---------- .../luasrc/model/cbi/freifunk/profile_expert.lua | 3 ++- .../luasrc/model/cbi/freifunk/user_index.lua | 2 +- modules/freifunk/luasrc/view/freifunk/adminindex.htm | 8 +++----- 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%>
- <%:Basic settings are missing. Please go to this page and fill all required fields: %> - <%:Basic settings%> + <%:Basic settings are incomplete. Please go to <%:Basic settings%> and fill out all required fields.%>

<%end%>

<% if not (contact.nickname and contact.name and contact.mail) then%>

- <%:Contact information missing. Please go to this page and fill all required fields: %> - <%:Contact%>

+ <%:Contact information is incomplete. Please go to <%:Contact%> and fill out all required fields.%>

<%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('
Diversity is enabled for device ' .. device .. '. Go to wireless settings to change that.

') + print('

Diversity is enabled for device ' .. device .. '. Go to wireless settings to disable it.

') end end) %> -- 2.11.0