treewide: move freifunk-related packages to separate repo

Even Freifunk was one of the major factory to create the LuCI-system, it's
now only a very small part of LuCI. LuCI has become a much bigger thing
and it seems that it's time to move the packages only relating to Freifunk
into it's own feed.
On the mailinglist it was discussed [1] and a repo below the general
Freifunk team on github was created.

This commit removes all packages that will be hosted in the new repo [2]

1 - http://lists.freifunk.net/pipermail/wlannews-freifunk.net/2019-February/004818.html
2 - https://github.com/freifunk/openwrt-packages

Signed-off-by: Sven Roederer <freifunk@it-solutions.geroedel.de>
This commit is contained in:
Sven Roederer 2019-02-03 14:13:35 +01:00
parent eda8f02dac
commit 4654ba92c3
249 changed files with 0 additions and 26719 deletions

View file

@ -1,14 +0,0 @@
#
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
#
# This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk
LUCI_TITLE:=Tools for network diagnosis like traceroute and ping
LUCI_DEPENDS:=
include ../../luci.mk
# call BuildPackage - OpenWrt buildroot signature

View file

@ -1,72 +0,0 @@
-- Copyright 2008 Steven Barth <steven@midlink.org>
-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
-- Copyright 2013 Manuel Munz <freifunk@somakoma.de>
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.freifunk.diag", package.seeall)
function index()
local uci = require("luci.model.uci").cursor()
local page
page = node("freifunk", "status", "diagnostics")
page.target = template("freifunk/diagnostics")
page.title = _("Diagnostics")
page.order = 60
page = entry({"freifunk", "status", "diag_ping"}, call("diag_ping"), nil)
page.leaf = true
page = entry({"freifunk", "status", "diag_nslookup"}, call("diag_nslookup"), nil)
page.leaf = true
page = entry({"freifunk", "status", "diag_traceroute"}, call("diag_traceroute"), nil)
page.leaf = true
page = entry({"freifunk", "status", "diag_ping6"}, call("diag_ping6"), nil)
page.leaf = true
page = entry({"freifunk", "status", "diag_traceroute6"}, call("diag_traceroute6"), nil)
page.leaf = true
end
function diag_command(cmd, addr)
if addr and addr:match("^[a-zA-Z0-9%-%.:_]+$") then
luci.http.prepare_content("text/plain")
local util = io.popen(cmd % luci.util.shellquote(addr))
if util then
while true do
local ln = util:read("*l")
if not ln then break end
luci.http.write(ln)
luci.http.write("\n")
end
util:close()
end
return
end
luci.http.status(500, "Bad address")
end
function diag_ping(addr)
diag_command("ping -c 5 -W 1 %s 2>&1", addr)
end
function diag_traceroute(addr)
diag_command("traceroute -q 1 -w 1 -n %s 2>&1", addr)
end
function diag_nslookup(addr)
diag_command("nslookup %s 2>&1", addr)
end
function diag_ping6(addr)
diag_command("ping6 -c 5 %s 2>&1", addr)
end
function diag_traceroute6(addr)
diag_command("traceroute6 -q 1 -w 2 -n %s 2>&1", addr)
end

View file

@ -1,110 +0,0 @@
<%#
Copyright 2010 Jo-Philipp Wich <jow@openwrt.org>
Licensed to the public under the Apache License 2.0.
-%>
<%+header%>
<%
local fs = require "nixio.fs"
local has_ping6 = fs.access("/bin/ping6") or fs.access("/usr/bin/ping6")
local has_traceroute6 = fs.access("/usr/bin/traceroute6")
%>
<script type="text/javascript">//<![CDATA[
var stxhr = new XHR();
function update_status(field, proto)
{
var tool = field.name;
var addr = field.value;
var protocol = proto ? "6" : "";
var legend = document.getElementById('diag-rc-legend');
var output = document.getElementById('diag-rc-output');
if (legend && output)
{
output.innerHTML =
'<img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" /> ' +
'<%:Waiting for command to complete...%>'
;
legend.parentNode.style.display = 'block';
legend.style.display = 'inline';
stxhr.get('<%=url('freifunk/status')%>/diag_' + tool + protocol + '/' + addr, null,
function(x)
{
if (x.responseText)
{
legend.style.display = 'none';
output.innerHTML = String.format('<pre>%h</pre>', x.responseText);
}
else
{
legend.style.display = 'none';
output.innerHTML = '<span class="error"><%:Bad address specified!%></span>';
}
}
);
}
}
//]]></script>
<form method="post" action="<%=pcdata(FULL_REQUEST_URI)%>">
<div class="cbi-map">
<h2 name="content"><%:Diagnostics%></h2>
<fieldset class="cbi-section">
<legend><%:Network Utilities%></legend>
<br />
<div style="width:30%; float:left">
<input style="margin: 5px 0" type="text" value="dev.openwrt.org" name="ping" /><br />
<% if has_ping6 then %>
<select name="ping_proto" style="width:auto">
<option value="" selected="selected"><%:IPv4%></option>
<option value="6"><%:IPv6%></option>
</select>
<input type="button" value="<%:Ping%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.ping, this.form.ping_proto.selectedIndex)" />
<% else %>
<input type="button" value="<%:Ping%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.ping)" />
<% end %>
</div>
<div style="width:33%; float:left">
<input style="margin: 5px 0" type="text" value="dev.openwrt.org" name="traceroute" /><br />
<% if has_traceroute6 then %>
<select name="traceroute_proto" style="width:auto">
<option value="" selected="selected"><%:IPv4%></option>
<option value="6"><%:IPv6%></option>
</select>
<input type="button" value="<%:Traceroute%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.traceroute, this.form.traceroute_proto.selectedIndex)" />
<% else %>
<input type="button" value="<%:Traceroute%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.traceroute)" />
<% end %>
<% if not has_traceroute6 then %>
<p>&#160;</p>
<p><%:Install iputils-traceroute6 for IPv6 traceroute%></p>
<% end %>
</div>
<div style="width:33%; float:left;">
<input style="margin: 5px 0" type="text" value="openwrt.org" name="nslookup" /><br />
<input type="button" value="<%:Nslookup%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.nslookup)" />
</div>
<br style="clear:both" /><br />
</fieldset>
</div>
<fieldset class="cbi-section" style="display:none">
<legend id="diag-rc-legend"><%:Collecting data...%></legend>
<span id="diag-rc-output"></span>
</fieldset>
</form>
<%+footer%>

View file

@ -1,2 +0,0 @@
#!/bin/sh
rm -f /tmp/luci-indexcache

View file

@ -1,14 +0,0 @@
#
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
#
# This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk
LUCI_TITLE:=Policy routing for mesh traffic
LUCI_DEPENDS:=+freifunk-policyrouting
include ../../luci.mk
# call BuildPackage - OpenWrt buildroot signature

View file

@ -1,9 +0,0 @@
-- Copyright 2011 Manuel Munz <freifunk at somakoma de>
-- Licensed to the public under the Apache License 2.0.
module "luci.controller.freifunk.policy-routing"
function index()
entry({"admin", "freifunk", "policyrouting"}, cbi("freifunk/policyrouting"),
_("Policy Routing"), 60)
end

View file

@ -1,34 +0,0 @@
-- Copyright 2011 Manuel Munz <freifunk at somakoma de>
-- Licensed to the public under the Apache License 2.0.
local uci = require "luci.model.uci".cursor()
m = Map("freifunk-policyrouting", translate("Policy Routing"), translate("These pages can be used to setup policy routing for certain firewall zones. "..
"This is useful if you need to use your own internet connection for yourself but you don't want to share it with others (that's why it can also be "..
"called 'Ego Mode'). Your own traffic is then sent via your internet connection while traffic originating from the mesh will use another gateway in the mesh. "))
m:chain("network")
c = m:section(NamedSection, "pr", "settings", "")
local pr = c:option(Flag, "enable", translate("Enable Policy Routing"))
pr.rmempty = false
local strict = c:option(Flag, "strict", translate("Strict Filtering"), translate("If no default route is received from the mesh network then traffic which belongs to "..
"the selected firewall zones is routed via your internet connection as a fallback. If you do not want this and instead block that traffic then you should "..
"select this option."))
strict.rmempty = false
local fallback = c:option(Flag, "fallback", translate("Fallback to mesh"),
translate("If your own gateway is not available then fallback to the mesh default gateway."))
strict.rmempty = false
local zones = c:option(MultiValue, "zones", translate("Firewall zones"), translate("All traffic from interfaces belonging to these zones will be sent via "..
"a gateway in the mesh network."))
uci:foreach("firewall", "zone", function(section)
local name = section.name
if not (name == "wan") then
zones:value(name)
end
end)
return m

View file

@ -1,72 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-01 23:52+0200\n"
"PO-Revision-Date: 2014-07-03 20:37+0200\n"
"Last-Translator: Alex <alexhenrie24@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Tot el trànsit des de interfícies pertinent a aquestes zones s'enviarà via "
"una passarel·la en la xarxa en malla."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Habilita el encaminament per política"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Zones de tallafocs"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Encaminament per política"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Filtració estricta"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"Aquestes pàgines es poden utilitzar per configurar encaminament en certes "
"zones de tallafocs. Això és útil si necessiteu utilitzar la vostra pròpia "
"connexió a Internet per a vós mateix però no voleu compartir-la amb altres "
"(és per això que també es diu 'Mode egoista'). El vostre propi trànsit "
"llavors s'envia via la vostra connexió d'Internet mentre el trànsit "
"originant en malla utilitzarà altra passarel·la en malla."

View file

@ -1,62 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2014-07-26 20:27+0200\n"
"Last-Translator: koli <lukas.koluch@gmail.com>\n"
"Language-Team: none\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Povolit politiku směrování"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "Fallback do mesh"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Zóny firewallu"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Politika směrování"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Striktní filtrování"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,77 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2012-11-21 20:53+0200\n"
"Last-Translator: Jo-Philipp <jow@openwrt.org>\n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Traffic der aus diesen Zonen kommt wird über ein Internetgateway im Mesh "
"weitergeleitet."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Policy Routing aktivieren"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "Auf Mesh zurückfallen"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Firewallzonen"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"Falls im Mesh kein anderer Internetgateway verfügbar ist, dann wird Traffic "
"aus den ausgewählten Zonen als Fallback über die Internetverbindung dieses "
"Routers geleitet. Wenn das nicht gewünscht ist und dieser Traffic dann "
"stattdessen geblockt werden soll, dann aktiviere diese Option."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
"Wenn das eigene lokale Gateway nicht verfügbar ist, dann nutze das aktuelle "
"Mesh-Default-Gateway."
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Policy Routing"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Strenges Filtern"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"Auf diesen Seiten kann Policy Routing für bestimmte Firewallzonen aktiviert "
"werden. Dies ist z.B. nützlich, wenn du deinen eigenen Internetverkehr über "
"deine eigene Internetverbindung routen aber diese nicht mit anderen teilen "
"willst ('Mein Gateway für mich allein'). Eigener Traffic wird dann über die "
"eigene Internetverbindung geschickt während Traffic aus den ausgewählten "
"Firewallzonen über einen anderen Gateway im Mesh geleitet wird."

View file

@ -1,49 +0,0 @@
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,49 +0,0 @@
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,76 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-22 22:34+0200\n"
"PO-Revision-Date: 2012-10-14 22:49+0200\n"
"Last-Translator: José Vicente <josevteg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Todo el tráfico desde interfaces de estas zonas se enviará por una pasarela "
"de la red mesh."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Activar política de enrutado"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "Si falla usar mesh"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Zonas del cortafuegos"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"Si no se recibe una ruta por defecto de la red mesh el tráfico de las zonas "
"de cortafuegos seleccionado se enviará por esta conexión de red. Si no desea "
"esto marque esta opción para bloquearlo."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
"Si su pasarela no está disponible cambie a la pasarela por defecto de la "
"mesh."
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Política de enrutamiento"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Filtrado estricto"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"Estas páginas se pueden usar para definir la política de enrutamiento para "
"ciertas zonas del cortafuegos. Esto es útil si quiere usar su conexión a "
"internet pero no quiere compartirla con otros (por eso se llama \"Modo "
"egoísta\"). Su propio tráfico se enviará por su conexión internet mientras "
"que el tráfico del mes usará otra pasarela en la mesh."

View file

@ -1,49 +0,0 @@
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,60 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,60 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,79 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-09 20:22+0200\n"
"PO-Revision-Date: 2013-02-09 20:27+0200\n"
"Last-Translator: Francesco <3gasas@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Tutto il traffico dalle interfacce appartenenti a tali zone saranno inviate "
"tramite un gateway nella rete mesh."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Attiva la politica di instradamento"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "Posizione di sicurezza in mesh"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Zone Firewall"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"Se nessun percorso predefinito viene ricevuto dalla rete mesh, il traffico "
"che fa parte delle zone del firewall selezionato verranno instradate tramite "
"la connessione a Internet come ripiego. Se non si desidera questo invece di "
"bloccare il traffico è necessario selezionare questa opzione."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
"Se il proprio gateway non è disponibile, ripiego per il gateway predefinito "
"mash."
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Politica di Instradamento"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Livello massimo di filtraggio"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"Queste pagine possono essere utilizzati per impostare la politica di "
"instradamento per le zone del firewall determinati. Questo è utile se è "
"necessario utilizzare la vostra connessione internet per de stesso, ma non "
"si desidera condividere con gli altri (questo è il motivo per cui può anche "
"essere chiamato 'Modalità Ego'). Il tuo traffico viene poi inviato tramite "
"la tua connessione a Internet mentre il traffico proveniente dalla rete "
"utilizzerà un altro gateway in mesh."

View file

@ -1,49 +0,0 @@
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,49 +0,0 @@
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,49 +0,0 @@
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,79 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-24 07:01+0200\n"
"PO-Revision-Date: 2012-08-24 08:02+0200\n"
"Last-Translator: goodgod261 <goodgod261@wp.pl>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Cały ruch sieciowy z interfejsów należących do tych stref będzie wysyłany "
"przez bramę w sieci mesh."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Włącz politykę trasowania (routingu)"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "Fallback do mesh"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Strefy firewalla"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"Jeśli nie otrzymano domyślnej trasy z sieci mesh, ruch sieciowy należący do "
"wybranej strefy firewalla jest trasowany przez Twoje połączenie z internetem "
"jako fallback. Jeśli tego nie chcesz i zamiast tego chciałbyś blokować taki "
"ruch sieciowy, powinieneś zaznaczyć tę opcję."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
"Jeśli Twoja własna brama nie jest dostępna, wykonaj fallback do domyślnej "
"bramy sieci mesh."
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Polityka trasowania (routingu)"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Ścisłe filtrowanie"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"Te strony mogą zostać użyte do ustawienia polityki trasowania (routingu) dla "
"wybranych stref firewalla. Jest to użyteczne jeśli chcesz używać swojego "
"połączenia z internetem sam i nie chcesz dzielić się nim z innymi (stąd "
"alternatywna nazwa \"tryb ego\"). Twój własny ruch sieciowy jest wysyłany "
"przez Twoje połączenie, zaś ruch pochodzący z sieci mesh będzie używać innej "
"bramy w sieci."

View file

@ -1,78 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-10-12 09:13+0200\n"
"PO-Revision-Date: 2012-09-27 00:40+0200\n"
"Last-Translator: Luiz Angelo <luizluca@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Todo o tráfego das interfaces pertencentes a estas zonas será enviado "
"através de um roteador padrão na rede em malha."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Habilitar a Política de Roteamento"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "Se falhar, usar a malha"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Zonas do firewall"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"Se nenhuma rota padrão for recebida da rede em malha, então o tráfego que "
"pertencer a zona de firewall selecionada através da sua conexão internet "
"como solução de contorno. Se você não quer isto e, ao contrário, deseja "
"bloquear este tráfego, então você deve selecionar esta opção."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
"Se o seu roteador não estiver disponível, usar como alternativa o roteador "
"padrão da malha."
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Política de Roteamento"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Filtragem Estrita"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"Estas páginas podem ser usadas para configurar a política de roteamento para "
"certas zonas de firewall. Isto pode ser útil se você precisa usar sua "
"própria conexão com a internet para si e não quer compartilhá-la com outros "
"(é por isto que isto pode ser chamado de 'Modo Egocêntrico'). Seu próprio "
"tráfego é enviado através de sua conexão com a internet enquanto o tráfego "
"originado da rede em malha irá usar outro roteador na malha."

View file

@ -1,66 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-05-31 11:53+0200\n"
"PO-Revision-Date: 2013-05-31 11:54+0200\n"
"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Todo o trafego das interfaces que pertencem a estas zonas será enviado pela "
"gateway de rede."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Ativar a Politica de Routing"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Zonas da Firewall"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Política de Routing"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Filtragem Estrita"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,63 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2014-06-28 19:28+0200\n"
"Last-Translator: xxvirusxx <condor20_05@yahoo.it>\n"
"Language-Team: none\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Zone de firewall"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,79 +0,0 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: LuCI: freifunk-policyrouting\n"
"POT-Creation-Date: 2012-08-15 15:27+0300\n"
"PO-Revision-Date: 2018-01-26 01:21+0300\n"
"Language-Team: http://cyber-place.ru\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.7.1\n"
"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Language: ru\n"
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Весь трафик из интерфейсов, принадлежащих к этим зонам, будет отправлен "
"через шлюз в сети Mesh."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "Разрешить политику маршрутизации"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "Oткат к Mesh сети"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "Зоны межсетевого экрана"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"Если маршрут по умолчанию не получен от сети Mesh, то трафик принадлежащий "
"выбранным зонам межсетевого экрана, перенаправляется через Интернет в "
"качестве резервного. Если вас это не устраивает, то выберите эту опцию и "
"данный трафик будет заблокирован."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
"Если ваш шлюз не доступен, откатиться к использованию шлюза Mesh сети по "
"умолчанию."
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Политика маршрутизации"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Строгая фильтрация"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"На этих страницах Вы можете настроить политику маршрутизации для "
"определённых зон межсетевого экрана. Это может быть полезно, если вы хотите "
"использовать Интернет соединения только для себя. Ваш трафик в этом случае "
"будет использовать только ваше Интернет соединение, в то время как трафик "
"Mesh сети будет использовать другой шлюз в сети Mesh."

View file

@ -1,59 +0,0 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,60 +0,0 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,52 +0,0 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,60 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,82 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2013-08-13 16:14+0200\n"
"Last-Translator: zubr_139 <zubr139@ukr.net>\n"
"Language-Team: none\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
#, fuzzy
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
"Весь трафік з інтерфейсів, прив'язаних до цих зон буде відправлений через "
"шлюз в комірчасті мережі."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
#, fuzzy
msgid "Enable Policy Routing"
msgstr "Активувати політику маршрутизації"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
#, fuzzy
msgid "Firewall zones"
msgstr "Зона фаєрволу"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
#, fuzzy
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"Якщо маршрут типово не буде отриманий з сітки мережі, то трафік, який "
"належить до вибраної зони фаєрволу прямує через ваше інтернет-з'єднання в "
"якості запасного варіанту. Якщо ви не хочете цього, а замість цього, що "
"блокувати трафік, то ви повинні вибрати цю опцію."
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
#, fuzzy
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
"Якщо ваш шлюз недоступний, то відбувається повернення до основного шлюзу "
"сітки."
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "Політика маршрутизації"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "Жорстка фільтрація"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"Ці сторінки можна використовувати для налаштування політики маршрутизації "
"для певних зон фаєрволу. Це корисно, якщо вам потрібно використовувати своє "
"власне інтернет-з'єднання для себе, і ви не хочете ділитися ним з іншими "
"людьми (ось чому воно також називатися 'Его режим '). Ваш власний трафік "
"потім відправлений через ваше інтернет-з'єднання в той час як трафік, "
"витікаючий із мережі буде використовувати інший шлюз у мережі."

View file

@ -1,49 +0,0 @@
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr ""
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""

View file

@ -1,73 +0,0 @@
#
# Yangfl <mmyangfl@gmail.com>, 2018.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-09 03:50+0200\n"
"PO-Revision-Date: 2018-08-07 18:54+0800\n"
"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Gtranslator 2.91.7\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr "来自属于这些区域的接口的所有流量将通过网状网络中的网关发送。"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "启用策略路由"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "回退到网状网"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "防火墙区域"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"如果没有从网状网络收到默认路由,作为后备,属于所选防火墙区域的流量将通过您的 "
"Internet 连接路由进行路由。如果您不想这样,而要阻挡该流量,那么您应选择此项。"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr "如果您自己的网关不可用,则回退到网状网默认网关。"
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "策略路由"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "严格过滤"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"这些页面可用于为某些防火墙区域设置策略路由。如果您想自己使用自己的互联网连"
"接,但不想和其他人共享(这就是它为什么也可以称为“自私模式”),则这会有用。您"
"自己的流量将通过您的互联网连接发送出去,而来自网状网的流量将使用网状网中的另"
"一个网关。"

View file

@ -1,73 +0,0 @@
#
# Yangfl <mmyangfl@gmail.com>, 2018.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-09 03:50+0200\n"
"PO-Revision-Date: 2018-08-07 18:54+0800\n"
"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Gtranslator 2.91.7\n"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid ""
"All traffic from interfaces belonging to these zones will be sent via a "
"gateway in the mesh network."
msgstr "來自屬於這些區域的介面的所有流量將通過網狀網路中的閘道器傳送。"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:13
msgid "Enable Policy Routing"
msgstr "啟用策略路由"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:21
msgid "Fallback to mesh"
msgstr "回退到網狀網"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:25
msgid "Firewall zones"
msgstr "防火牆區域"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid ""
"If no default route is received from the mesh network then traffic which "
"belongs to the selected firewall zones is routed via your internet "
"connection as a fallback. If you do not want this and instead block that "
"traffic then you should select this option."
msgstr ""
"如果沒有從網狀網路收到預設路由,作為後備,屬於所選防火牆區域的流量將通過您的 "
"Internet 連線路由進行路由。如果您不想這樣,而要阻擋該流量,那麼您應選擇此項。"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:22
msgid ""
"If your own gateway is not available then fallback to the mesh default "
"gateway."
msgstr "如果您自己的閘道器不可用,則回退到網狀網預設閘道器。"
#: applications/luci-app-freifunk-policyrouting/luasrc/controller/freifunk/policy-routing.lua:8
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid "Policy Routing"
msgstr "策略路由"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:16
msgid "Strict Filtering"
msgstr "嚴格過濾"
#: applications/luci-app-freifunk-policyrouting/luasrc/model/cbi/freifunk/policyrouting.lua:6
msgid ""
"These pages can be used to setup policy routing for certain firewall zones. "
"This is useful if you need to use your own internet connection for yourself "
"but you don't want to share it with others (that's why it can also be called "
"'Ego Mode'). Your own traffic is then sent via your internet connection "
"while traffic originating from the mesh will use another gateway in the mesh."
msgstr ""
"這些頁面可用於為某些防火牆區域設定策略路由。如果您想自己使用自己的網際網路連"
"接,但不想和其他人共享(這就是它為什麼也可以稱為“自私模式”),則這會有用。您"
"自己的流量將通過您的網際網路連線傳送出去,而來自網狀網的流量將使用網狀網中的"
"另一個閘道器。"

View file

@ -1,14 +0,0 @@
#
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
#
# This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk
LUCI_TITLE:=Widgets for the Freifunk index page
LUCI_DEPENDS:=+luci-mod-freifunk
include ../../luci.mk
# call BuildPackage - OpenWrt buildroot signature

View file

@ -1,35 +0,0 @@
-- Copyright 2012 Manuel Munz <freifunk at somakoma de>
-- Licensed to the public under the Apache License 2.0.
local require = require
module "luci.controller.freifunk.widgets"
function index()
local page = node("admin", "freifunk", "widgets")
page.target = cbi("freifunk/widgets/widgets_overview")
page.title = _("Widgets")
page.i18n = "widgets"
page.order = 30
local page = node("admin", "freifunk", "widgets", "widget")
page.target = cbi("freifunk/widgets/widget")
page.leaf = true
local page = node("freifunk", "search_redirect")
page.target = call("search_redirect")
page.leaf = true
end
function search_redirect()
local dsp = require "luci.dispatcher"
local http = require "luci.http"
local engine = http.formvalue("engine")
local searchterms = http.formvalue("searchterms") or ""
if engine then
http.redirect(engine .. searchterms)
else
http.redirect(dsp.build_url())
end
end

View file

@ -1,16 +0,0 @@
-- Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
-- Licensed to the public under the Apache License 2.0.
local map, section = ...
local width = wdg:option(Value, "width", translate("Width"))
width.rmempty = true
--[[
local height = wdg:option(Value, "height", translate("Height"))
height.rmempty = true
height.optional = true
]]--
local pr = wdg:option(Value, "paddingright", translate("Padding right"))
pr.rmempty = true

View file

@ -1,31 +0,0 @@
-- Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
-- Licensed to the public under the Apache License 2.0.
local map, section = ...
local utl = require "luci.util"
local fs = require "nixio.fs"
local file = "/usr/share/customtext/" .. arg[1] .. ".html"
local form, ferr = loadfile(utl.libpath() .. "/model/cbi/freifunk/widgets/heightwidth.lua")
if form then
setfenv(form, getfenv(1))(m, wdg)
end
t = wdg:option(TextValue, "_text")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
return fs.readfile(file) or ""
end
function t.write(self, section, value)
return fs.writefile(file, value)
end
function t.remove(self, section)
return fs.unlink(file)
end

View file

@ -1,13 +0,0 @@
-- Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
-- Licensed to the public under the Apache License 2.0.
local map, section = ...
local utl = require "luci.util"
local form, ferr = loadfile(utl.libpath() .. "/model/cbi/freifunk/widgets/heightwidth.lua")
if form then
setfenv(form, getfenv(1))(m, wdg)
end
local url = wdg:option(Value, "url", translate("URL"))
url.default = "http://www.freifunk.net"

View file

@ -1,25 +0,0 @@
-- Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
-- Licensed to the public under the Apache License 2.0.
local map, section = ...
local utl = require "luci.util"
local form, ferr = loadfile(utl.libpath() .. "/model/cbi/freifunk/widgets/heightwidth.lua")
if form then
setfenv(form, getfenv(1))(m, wdg)
end
local url = wdg:option(Value, "url", translate("URL"))
url.default = "http://global.freifunk.net/rss/all/rss.xml"
local max = wdg:option(Value, "max", translate("Maximal entries to show"))
max.rmempty = true
max.default = "10"
max.datatype = "integer"
local cache = wdg:option(Value, "cache", translate("Cache Time"), translate("Cache downloaded feed for that many seconds."))
cache.rmempty = true
cache.default = "3600"
cache.datatype = "integer"

View file

@ -1,15 +0,0 @@
-- Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
-- Licensed to the public under the Apache License 2.0.
local map, section = ...
local utl = require "luci.util"
local form, ferr = loadfile(utl.libpath() .. "/model/cbi/freifunk/widgets/heightwidth.lua")
if form then
setfenv(form, getfenv(1))(m, wdg)
end
local engine = wdg:option(DynamicList, "engine", translate("Search Engine"),
translate("Use the form Name|URL, where URL must be a full URL to the search engine " ..
"including the query GET parameter, e.g. 'Google|http://www.google.de/search?q='")
)

View file

@ -1,37 +0,0 @@
-- Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
-- Licensed to the public under the Apache License 2.0.
local uci = require "luci.model.uci".cursor()
local dsp = require "luci.dispatcher"
local utl = require "luci.util"
local widget = uci:get("freifunk-widgets", arg[1], "template")
local title = uci:get("freifunk-widgets", arg[1], "title") or ""
m = Map("freifunk-widgets", translate("Widget"))
m.redirect = luci.dispatcher.build_url("admin/freifunk/widgets")
if not arg[1] or m.uci:get("freifunk-widgets", arg[1]) ~= "widget" then
luci.http.redirect(m.redirect)
return
end
wdg = m:section(NamedSection, arg[1], "widget", translate("Widget") .. " " .. title)
wdg.anonymous = true
wdg.addremove = false
local en = wdg:option(Flag, "enabled", translate("Enable"))
en.rmempty = false
local title = wdg:option(Value, "title", translate("Title"))
title.rmempty = true
local form = loadfile(
utl.libpath() .. "/model/cbi/freifunk/widgets/%s.lua" % widget
)
if form then
setfenv(form, getfenv(1))(m, wdg)
end
return m

View file

@ -1,68 +0,0 @@
-- Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
-- Licensed to the public under the Apache License 2.0.
local uci = require "luci.model.uci".cursor()
local fs = require "nixio.fs"
local utl = require "luci.util"
m = Map("freifunk-widgets", translate("Widgets"),
translate("Configure installed widgets."))
wdg = m:section(TypedSection, "widget", translate("Widgets"))
wdg.addremove = true
wdg.extedit = luci.dispatcher.build_url("admin/freifunk/widgets/widget/%s")
wdg.template = "cbi/tblsection"
wdg.sortable = true
--[[
function wdg.create(...)
local sid = TypedSection.create(...)
luci.http.redirect(wdg.extedit % sid)
end
]]--
local en = wdg:option(Flag, "enabled", translate("Enable"))
en.rmempty = false
--en.default = "0"
function en.cfgvalue(self, section)
return Flag.cfgvalue(self, section) or "0"
end
local tmpl = wdg:option(ListValue, "template", translate("Template"))
local file
for file in fs.dir("/usr/lib/lua/luci/view/freifunk/widgets/") do
if file ~= "." and file ~= ".." then
tmpl:value(file)
end
end
local title = wdg:option(Value, "title", translate("Title"))
title.rmempty = true
local width = wdg:option(Value, "width", translate("Width"))
width.rmempty = true
local height = wdg:option(Value, "height", translate("Height"))
height.rmempty = true
local pr = wdg:option(Value, "paddingright", translate("Padding right"))
pr.rmempty = true
function m.on_commit(self)
-- clean custom text files whose config has been deleted
local dir = "/usr/share/customtext/"
local active = {}
uci:foreach("freifunk-widgets", "widget", function(s)
if s["template"] == "html" then
table.insert(active, s[".name"])
end
end )
local file
for file in fs.dir(dir) do
local filename = string.gsub(file, ".html", "")
if not utl.contains(active, filename) then
fs.unlink(dir .. file)
end
end
end
return m

View file

@ -1,15 +0,0 @@
<%
--[[
LuCI - Lua Configuration Interface
Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
Licensed under the Apache License, Version 2.0 (the "License");
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
]]--
%>
<div style="clear:both"></div>

View file

@ -1,42 +0,0 @@
<%
--[[
LuCI - Lua Configuration Interface
Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
Licensed under the Apache License, Version 2.0 (the "License");
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
]]--
--local utl = require "luci.util"
local fs = require "nixio.fs"
local title = data.title
local name = data['.name']
local file = "/usr/share/customtext/" .. name .. ".html"
local text = fs.readfile(file)
local width = data.width or "100%"
local pr = data.paddingright or "0"
if type(width) == "number" then
width = width .. "px"
end
%>
<div id="<%=name%>" style="width:<%=width%>;float:left">
<div style="padding-right: <%=pr%>">
<% if title then %>
<h2><%=title%></h2>
<% end %>
<% if text then %>
<%=text%>
<%else%>
<%:Could not load the custom text from%> "<%=file%>!"
<%end%>
<%=data.text%>
</div>
</div>

View file

@ -1,45 +0,0 @@
<%
--[[
LuCI - Lua Configuration Interface
Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
Licensed under the Apache License, Version 2.0 (the "License");
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
]]--
local url = data['url']
local name = data['.name']
local title = data['title'] or "No title set"
local height = data['height'] or "400px"
if type(height) == "number" then
height = height .. "px"
end
local width = data['width'] or "100%"
if type(width) == "number" then
width = width .. "px"
end
%>
<div id="<%=name%>" style="width:<%=width%>;float:left;">
<h2><%=title%></h2>
<% if not url then %>
<%:No url set.%>
<% else %>
<div style="height:<%=height%>;min-height:<%=height%>">
<object type="text/html" data="<%=url%>" width="100%" height="<%=height%>" name="widget_<%=name%>" id="widget_<%=name%>">
<param name="src" value="<%=url%>" />
<%:Sorry, your browser doesn't support the object tag and cannot display this page:%><br />
<a href="<%=url%>"><%=url%></a>
</object>
</div>
</div>
<%end%>

View file

@ -1,84 +0,0 @@
<%
--[[
LuCI - Lua Configuration Interface
Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
Licensed under the Apache License, Version 2.0 (the "License");
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
]]--
local sys = require "luci.sys"
local utl = require "luci.util"
local fs = require "nixio.fs"
local i18n = require "luci.i18n"
local url = data.url
local title = data.title or i18n.translate("RSS")
local max = tonumber(data.max) or 10
local rss
local pr = data.paddingright or "0"
local output = {}
local width = data.width or "100%"
if type(width) == "number" then
width = width .. "px"
end
local name = data['.name']
local cachetime = tonumber(data.cache) or 3600
cachefile = "/tmp/" .. name .. ".cache"
%>
<div id="<%=name%>" style="width:<%=width%>;float:left">
<div style="padding-right: <%=pr%>">
<h2><%=title%></h2>
<% if not url then %>
<%:No url found in config%>
<% else
local mtime = fs.stat(cachefile, "mtime") or 0
local now = os.time()
expire = mtime + cachetime
if not fs.access(cachefile) or expire < now then
rss = sys.httpget(url)
if #rss == 0 then
%>
<%:Could not get rss data from%> <a href="<%=url%>"><%=url%></a>
<%
else
local count = 0
for item in string.gmatch(rss, "<item>(.-)</item>") do
if count < max then
local title = item:match("<title>(.-)</title>")
local link = item:match("<link>(.-)</link>")
local desc = item:match("<description>(.-)</description>") or ""
if title and link then
table.insert(output, { title = utl.pcdata(title), link = utl.pcdata(link) })
end
count = count + 1
end
end
if count > 0 then
local file = io.open(cachefile, "w")
file:write(utl.serialize_data(output))
file:close()
end
end
else
local file = assert(io.open(cachefile))
output = utl.restore_data(file:read'*a')
end
end
if #output > 0 then
%>
<ul>
<% for k, v in ipairs(output) do %>
<li><a href="<%=v.link%>"><%=v.title%></a></li>
<% end %>
</ul>
<%end%>
</div>
</div>

View file

@ -1,54 +0,0 @@
<%
--[[
LuCI - Lua Configuration Interface
Copyright 2012 Manuel Munz <freifunk at somakoma dot de>
Licensed under the Apache License, Version 2.0 (the "License");
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
]]--
local utl = require "luci.util"
local title = luci.i18n.translate(data.title or "Search")
local name = data['.name']
local width = data.width or "100%"
if type(width) == "number" then
width = width .. "px"
end
local engines = {}
if type(data.engine) == "table" then
engines = data.engine
else
for k, v in ipairs(string.split(data.engine, " ")) do
table.insert(engines, v)
end
end
%>
<div id="<%=name%>" style="width:<%=width%>;float:left">
<h2><%=title%></h2>
<div id="form_<%=name%>">
<form name="searchform" id="search_<%=name%>" action="<%=url('freifunk/search_redirect')%>">
<input type="text" name="searchterms" style="margin-bottom:15px; width: 90%"><br />
<%
local checked = " checked"
for k, v in ipairs(engines) do
local e = utl.split(v, "|")
local name = e[1]
local url = e[2]
if name and url then
%>
<input name="engine" type="radio" value="<%=url%>"<%=checked%>> <%=name%><br />
<% end
checked = ""
end
%>
<input type="submit" name="SearchSubmit" value="Search" style="margin-top: 15px">
</form>
</div>
</div>

View file

@ -1,33 +0,0 @@
config widget 'example_iframe'
option template 'iframe'
option url 'http://www.freifunk.net'
option title 'Freifunk Homepage'
option height '500px'
option width '100%'
option enabled '0'
config widget 'example_rss'
option template 'rssfeed'
option url 'http://global.freifunk.net/rss/all/rss.xml'
option max '10'
option cache '3600'
option enabled '0'
option title 'Globaler Freifunk RSS Feed'
config widget 'example_search'
option template 'search'
option enabled '0'
option title 'Search'
list engine 'Google|http://www.google.de/search?q='
list engine 'Freifunk&#160;Wiki|http://wiki.freifunk.net/index.php?search='
option width '50%'
option paddingright '8%'
config widget 'example_customtext'
option template 'html'
option width '50%'
option enabled '0'
config widget 'example_clear'
option enabled '0'
option template 'clear'

View file

@ -1,14 +0,0 @@
#
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
#
# This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk
LUCI_TITLE:=Shellscript based wizard to setup mesh networks
LUCI_DEPENDS:=+meshwizard
include ../../luci.mk
# call BuildPackage - OpenWrt buildroot signature

View file

@ -1,9 +0,0 @@
-- Copyright 2011 Manuel Munz <freifunk somakoma de>
-- Licensed to the public under the Apache License 2.0.
module "luci.controller.meshwizard"
function index()
entry({"admin", "freifunk", "meshwizard"}, cbi("freifunk/meshwizard"), _("Mesh Wizard"), 40)
end

View file

@ -1,196 +0,0 @@
-- wizard rewrite wip
local uci = require "luci.model.uci".cursor()
local sys = require "luci.sys"
local util = require "luci.util"
local ip = require "luci.ip"
local community = "profile_" .. (uci:get("freifunk", "community", "name") or "Freifunk")
local mesh_network = ip.IPv4(uci:get_first(community, "community", "mesh_network") or "10.0.0.0/8")
local community_ipv6 = uci:get_first(community, "community", "ipv6") or 0
local community_ipv6mode = uci:get_first(community, "community", "ipv6_config") or "static"
local meshkit_ipv6 = uci:get("meshwizard", "ipv6", "enabled") or 0
local community_vap = uci:get_first(community, "community", "vap") or 0
m = Map("meshwizard", translate("Wizard"), translate("This wizard will assist you in setting up your router for Freifunk " ..
"or another similar wireless community network."))
n = m:section(NamedSection, "netconfig", nil, translate("Interfaces"))
n.anonymous = true
-- common functions
function cbi_configure(device)
local configure = n:taboption(device, Flag, device .. "_config", translate("Configure this interface"),
translate("Note: this will set up this interface for mesh operation, i.e. add it to zone 'freifunk' and enable olsr."))
end
function cbi_ip4addr(device)
local ip4addr = n:taboption(device, Value, device .. "_ip4addr", translate("Mesh IP address"),
translate("This is a unique address in the mesh (e.g. 10.1.1.1) and has to be registered at your local community."))
ip4addr:depends(device .. "_config", 1)
ip4addr.datatype = "ip4addr"
function ip4addr.validate(self, value)
local x = ip.IPv4(value)
if mesh_network:contains(x) then
return value
else
return nil, translate("The given IP address is not inside the mesh network range ") ..
"(" .. mesh_network:string() .. ")."
end
end
end
function cbi_ip6addr(device)
local ip6addr = n:taboption(device, Value, device .. "_ip6addr", translate("Mesh IPv6 address"),
translate("This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and has to be registered at your local community."))
ip6addr:depends(device .. "_config", 1)
ip6addr.datatype = "ip6addr"
end
function cbi_dhcp(device)
local dhcp = n:taboption(device, Flag, device .. "_dhcp", translate("Enable DHCP"),
translate("DHCP will automatically assign ip addresses to clients"))
dhcp:depends(device .. "_config", 1)
dhcp.rmempty = true
end
function cbi_ra(device)
local ra = n:taboption(device, Flag, device .. "_ipv6ra", translate("Enable RA"),
translate("Send router advertisements on this device."))
ra:depends(device .. "_config", 1)
ra.rmempty = true
end
function cbi_dhcprange(device)
local dhcprange = n:taboption(device, Value, device .. "_dhcprange", translate("DHCP IP range"),
translate("The IP range from which clients are assigned ip addresses (e.g. 10.1.2.1/28). " ..
"If this is a range inside your mesh network range, then it will be announced as HNA. Any other range will use NAT. " ..
"If left empty then the defaults from the community profile will be used."))
dhcprange:depends(device .. "_dhcp", "1")
dhcprange.rmempty = true
dhcprange.datatype = "ip4addr"
end
-- create tabs and config for wireless
local nets={}
uci:foreach("wireless", "wifi-device", function(section)
local device = section[".name"]
table.insert(nets, device)
end)
local wired_nets = {}
uci:foreach("network", "interface", function(section)
local device = section[".name"]
if not util.contains(nets, device) and device ~= "loopback" and not device:find("wireless") then
table.insert(nets, device)
table.insert(wired_nets, device)
end
end)
for _, net in util.spairs(nets, function(a,b) return (nets[a] < nets[b]) end) do
n:tab(net, net)
end
-- create cbi config for wireless
uci:foreach("wireless", "wifi-device", function(section)
local device = section[".name"]
local hwtype = section.type
local syscc = section.country or uci:get(community, "wifi_device", "country") or
uci:get("freifunk", "wifi_device", "country")
cbi_configure(device)
-- Channel selection
if hwtype == "mac80211" then
sys.exec("iw reg set " .. syscc)
elseif hwtype == "broadcom" then
sys.exec ("wlc country " .. syscc)
end
local chan = n:taboption(device, ListValue, device .. "_channel", translate("Channel"),
translate("Your device and neighbouring nodes have to use the same channel."))
chan:depends(device .. "_config", 1)
chan:value('default')
local iwinfo = sys.wifi.getiwinfo(device)
if iwinfo and iwinfo.freqlist then
for _, f in ipairs(iwinfo.freqlist) do
if not f.restricted then
chan:value(f.channel)
end
end
end
-- IPv4 address
cbi_ip4addr(device)
-- DHCP enable
cbi_dhcp(device)
-- DHCP range
cbi_dhcprange(device)
-- IPv6 addr and RA
if community_ipv6 == "1" then
if community_ipv6mode == "static" then
cbi_ip6addr(device)
end
cbi_ra(device)
end
-- Enable VAP
local supports_vap = 0
if sys.call("/usr/bin/meshwizard/helpers/supports_vap.sh " .. device .. " " .. hwtype) == 0 then
supports_vap = 1
end
if supports_vap == 1 then
local vap = n:taboption(device, Flag, device .. "_vap", translate("Virtual Access Point (VAP)"),
translate("This will setup a new virtual wireless interface in Access Point mode."))
vap:depends(device .. "_dhcp", "1")
vap.rmempty = true
if community_vap == "1" then
vap.default = "1"
end
end
end)
for _, device in pairs(wired_nets) do
cbi_configure(device)
cbi_ip4addr(device)
cbi_dhcp(device)
cbi_dhcprange(device)
-- IPv6 addr and RA
if community_ipv6 == "1" then
if community_ipv6mode == "static" then
cbi_ip6addr(device)
end
cbi_ra(device)
end
end
-- General settings
g = m:section(TypedSection, "general", translate("General Settings"))
g.anonymous = true
local cleanup = g:option(Flag, "cleanup", translate("Cleanup config"),
translate("If this is selected then config is cleaned before setting new config options."))
cleanup.default = "1"
local restrict = g:option(Flag, "local_restrict", translate("Protect LAN"),
translate("Check this to protect your LAN from other nodes or clients") .. " (" .. translate("recommended") .. ").")
local share = g:option(Flag, "sharenet", translate("Share your internet connection"),
translate("Select this to allow others to use your connection to access the internet."))
share.rmempty = true
-- IPv6 config
if community_ipv6 == "1" then
v6 = m:section(NamedSection, "ipv6", nil, translate("IPv6 Settings"))
local enabled = v6:option(Flag, "enabled", translate("Enabled"),
translate("Activate or deactivate IPv6 config globally."))
enabled.default = meshkit_ipv6
enabled.rmempty = false
end
return m

View file

@ -1,176 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-01 23:43+0200\n"
"PO-Revision-Date: 2014-07-01 06:11+0200\n"
"Last-Translator: Alex <alexhenrie24@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "Activa o desactiva la configuració IPv6 globalment."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Canal"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Neteja la configuració"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Configura aquesta interfície"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Rang IP de DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP assignarà automàticament adreces IP als clients"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Habilita DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Habilita RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Habilitat"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Ajusts generals"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "Ajusts IPv6"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
"Si això està seleccionat, la configuració es neteja abans d'establir noves "
"opcions de configuració."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfícies"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Adreça IP en malla"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "Adreça IPv6 en malla"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Ajudant de malla"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
#, fuzzy
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"Nota: això configurarà aquesta interfície per a operació en malla, és a dir, "
"la afegirà a la zona 'freifunk' i habilitarà l'OLSR."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Seleccioneu aquesta opció per permetre que altres utilitzin la vostra "
"connexió per accedir a Internet."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr "Envia publicitats d'encaminador en aquest dispositiu."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Comparteix la vostra connexió a Internet"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"El rang IP del qual s'assignen adreces IP als clients (per exemple, "
"10.1.2.1/28). Si aquest és un rang dins del vostre rang de xarxa en malla, "
"s'anunciarà com HNA. Qualsevol altre rang utilitzarà NAT. Si deixat en "
"blanc, els valors per defecte del perfil comunitari s'utilitzaran."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "L'adreça IP donada no està dins del rang de la xarxa en malla"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"Aquesta és una adreça IPv4 única en notació CIDR (per exemple, "
"2001:1:2:3::1/64) i ha de ser registrada a la vostra comunitat local."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
"Aquesta és una adreça única en la malla (per exemple, 10.1.1.1) i ha de ser "
"registrada a la vostra comunitat local."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Això configurarà una nova interfície sense fil virtual en mode de punt "
"d'accés."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
"Aquest ajudant us ajudarà a configurar el vostre encaminador per al Freifunk "
"o altre xarxa comunitària sense fil similar."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Punt d'accés virtual (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Ajudant"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
"El vostre dispositiu i els nodes veïns han d'utilitzar el mateix canal."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "recomanat"

View file

@ -1,154 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2014-06-21 14:39+0200\n"
"Last-Translator: koli <lukas.koluch@gmail.com>\n"
"Language-Team: none\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Kanál"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Nastavit toto rozhraní"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "DHCP IP rozsah"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Povolit DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Povolit RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Povoleno"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Obecné nastavení"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "Nastavení IPv6"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Rozhraní"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Průvodce mesh"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Ochrana LAN"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Sdílet vaše internetové připojení"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Virtuální přístupový bod (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Průvodce"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "doporučeno"

View file

@ -1,177 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-06-26 15:36+0200\n"
"PO-Revision-Date: 2012-11-21 20:51+0200\n"
"Last-Translator: Jo-Philipp <jow@openwrt.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "IPv6 global aktivieren oder deaktivieren"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Kanal"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
"Aktivieren um Zugriff auf das LAN von anderen Knoten oder Clients zu "
"verhindern"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Konfiguration aufräumen"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Diese Schnittstelle einrichten"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "DHCP-Adressbereich"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP vergibt automatisch IP-Adressen an Clients"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "DHCP aktivieren"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "RAs aktivieren"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Aktiviert"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Allgemeine Einstellungen"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "IPv6 Einstellungen"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
"Wenn diese Option aktiviert wird, werden eventuell vorhandene Einstellungen "
"aufgeräumt bevor neue Optionen gesetzt werden."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Schnittstellen"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Mesh-IP-Adresse"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "Mesh-IPv6-Adresse"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Mesh-Assistent"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
#, fuzzy
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"Hinweis: Dies konfiguriert die Schnittstelle für den Mesh-Betrieb, d.h. sie "
"wird zur Freifunk-Zone hinzugefügt und OLSR eingerichtet."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "LAN schützen"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Diese Option aktivieren um anderen den Zugriff auf die lokale "
"Internetverbindung zu gestatten"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr "Router-Advertisements auf dieser Schnittstelle senden"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Internetverbindung freigeben"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"Der Adressbereich, aus welchem den Clients IP-Adressen zugewiesen werden (z."
"B. 10.1.2.1/28). Liegt dieser Adressbereich außerhalb des Mesh-Bereiches, "
"dann wird dieser per HNA angekündigt. Leer lassen um den Standardwert aus "
"dem Community-Profil zu verwenden."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "Die angegebene IP-Adresse ist nicht Teil des Mesh-Adressbereiches"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"Diese ist eine eindeutige IPv6-Adresse in CIDR-Notation (z.B. "
"2001:1:2:3::1/64) welche bei der lokalen Community registriert werden muss."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
"Dies ist die eindeutige IP-Adresse des Mesh-Knotens (z.B. 10.1.1.1). Diese "
"muss bei der lokalen Community registriert werden."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Dies richtet eine weitere, virtuelle WLAN-Schnittstelle im Access-Point-"
"Modus ein."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
"Der Assistent hilft beim Einrichten des Routers für ein Freifunk- oder "
"ähnliches Wireless-Community-Netzwerk."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Virtueller Access-Point (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Assistent"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "Dieses Gerät und benachbarte Knoten müssen den selben Kanal verwenden."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "empfohlen"

View file

@ -1,156 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-03-18 15:14+0200\n"
"PO-Revision-Date: 2012-03-31 15:40+0200\n"
"Last-Translator: Vasilis <acinonyx@openwrt.gr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.4\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Κανάλι"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Καθαρισμός ρυθμίσεων"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Ενεργοποίηση DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Γενικές Ρυθμίσεις"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Διεπαφές"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,141 +0,0 @@
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,169 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-23 22:25+0200\n"
"PO-Revision-Date: 2012-11-24 10:22+0200\n"
"Last-Translator: José Vicente <josevteg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "Activar o desactivar la configuración IPv6 globalmente."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Canal"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr "Proteger la LAN de otros nodos y clientes"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Borrar configuración"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Configurar esta interfaz"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Rango IP de DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP asignará direcciones IP automáticamente a los clientes"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Activar DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Activar RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Activado"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Configuración general"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "Configuración IPv6"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr "Borrar la configuración antes de establecer una nueva."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfaces"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Dirección IP del mesh"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "Dirección IPv6 del mesh"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Asistente del mesh"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
#, fuzzy
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"Nota: esto configurará esta interfaz para uso mesh, es decir: la añadirá a "
"la zona \"freifunk\" y activará OSLR."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Proteger LAN"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr "Permitir a otros usar su conexión para acceder a internet."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr "Envía publicaciones de routers por este dispositivo."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Compartir su conexión a internet"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"Rango IP desde el que asignar direcciones IP (ej. 10.1.2.1/28). Si el rango "
"está dentro del de la mesh se declarará como HNA. Cualquier otro rango usará "
"NAT. Si se deja vación tomará el del perfil de la comunidad."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "Este rango IP no está dentro del de la red mesh"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"Dirección única IPv6 en notación CIDR (p.e.: 2001:1:2:3::1/64) y que tiene "
"que estar registrada en su comunidad local."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
"Esta dirección debe ser única en la mesh (ej. 10.1.1.1) y debe registrarse "
"en su comunidad local."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Configurar un nuevo interfaz virtual inalámbrico en modo punto de acceso."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
"Este asistente le ayudará a configurar su ruter para Freifunk o una red "
"comunitaria similar."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Punto de acceso virtual (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Asistente"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "Su dispositivo y los vecinos deben usar el mismo canal."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "recomendado"

View file

@ -1,171 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-11-23 22:20+0200\n"
"PO-Revision-Date: 2011-11-23 22:20+0200\n"
"Last-Translator: fredb <fblistes+luci@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.4\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Canal"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr "Cochez ceci pour protéger votre réseau LAN des autres nœuds ou clients"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Nettoyer la config"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Configurer cette interface"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Gamme d'adresses IP pour DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "Le serveur DHCP donnera automatiquement des adresses IP aux clients"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Activer le serveur DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Paramètres généraux"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
"Si vous sélectionnez ceci, la configuration sera nettoyée avant de "
"positionner de nouvelles options de configuration."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfaces"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Adresse IP maillée"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Assistant de Maillage"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Protéger le LAN"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Sélectionnez ceci pour permettre aux autres d'utiliser votre connexion pour "
"accéder à Internet."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Partager votre connexion Internet"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"La gamme d'adresses IP utilisée pour attribuer des adresses IP aux clients "
"(par ex. 10.1.2.1/28). Si ce lot d'adresses est compris dans le réseau "
"maillé, il sera annoncé comme HNA, sinon du NAT sera utilisé. Si ce champ "
"reste vide, les valeurs par défaut du profil de la communauté seront "
"utilisées."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "L'adresse IP donnée n'est pas dans le réseau maillé"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
"C'est une adresse unique dans le réseau maillé (par ex. 10.1.1.1) et doit "
"être enregistré dans votre communauté locale."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Cela configurera une nouvelle interface sans-fil virtuelle en mode Point "
"d'Accès."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
"Cet assistant vous aidera à configurer votre routeur pour le réseau maillé "
"Freifunk ou un autre réseau sans-fil communautaire du même genre."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Point d'accès virtuel (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Assistant"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "Votre matériel et les nœuds voisins doivent utiliser le même canal."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "recommandé"

View file

@ -1,151 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,154 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2013-08-09 12:55+0200\n"
"Last-Translator: Bgray <bgraygms@gmail.com>\n"
"Language-Team: none\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "Globális IPV6 konfiguráció aktiválása vagy kikapcsolása."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Csatorna"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "DHCP Engedélyezése"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "RA Engedélyezése"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Engedélyezés"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Általános Beállítások"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfészek"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,175 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-06 18:07+0200\n"
"PO-Revision-Date: 2013-02-09 20:46+0200\n"
"Last-Translator: Francesco <3gasas@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "Attivare o disattivare la configurazione IPv6 a livello globale."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Canale"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr "Abilita per proteggere la tua LAN da altri nodi o clienti"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Ripulisci config"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Configura questa interfaccia"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Range DHCP IP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP assegnerà indirizzi ip ai client"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Abilità DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Attiva RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Attivato"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Impostazioni generali"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "Impostazioni IPv6"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
"Se questa opzione è selezionata, config viene pulita prima di nuove opzioni "
"di configurazione."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfacce"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Rete indirizzo IP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "Rete indirizzo IPv6"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Configurazione Rete"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
#, fuzzy
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"Nota: questo permette di configurare questa interfaccia per il funzionamento "
"in rete, vale a dire aggiungere nella zona 'Freifunk' e consentire OLSR."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Proteggi LAN"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Selezionare per permettere ad altri di usare la tua connessione per accedere "
"a internet."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr "Inviare annunci router su questo dispositivo."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Condividi la tua connessione internet"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"Il range IP dal quale i client ricevono gli indirizzi (es. 10.1.2.1/28). Se "
"questa subnet è all'interno della tua rete mesh, sarà annunciata as HNA. "
"Ogni altro range userà il NAT. Se lasciato vuoto allora la scelta "
"predefinita della community sarà usata."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "L'IP dato non è all'interno del range degli indirizzi di rete mesh"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"Si tratta di un indirizzo IPv6 unico in notazione CIDR (ad esempio "
"2001:1:2:3::1/64) e deve essere registrato presso la comunità locale."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
"Questo è un indirizzo univoco nella mesh (es. 10.1.1.1) e deve essere "
"accordato con la tua community."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Questo confgurerà una nuova interfaccia wireless virtuale in modalità Access "
"Point."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
"Questo wizard ti assisterà nel setup del tuo router per l'uso in una rete "
"wireless comunitaria come Freifunk o Ninux."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Punto di Accesso Virtuale (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Creazione guidata"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "Il tuo device a i nodi confinanti devono sare lo stesso canale."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "raccomandato"

View file

@ -1,141 +0,0 @@
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,141 +0,0 @@
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,141 +0,0 @@
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,179 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-19 21:15+0200\n"
"PO-Revision-Date: 2014-04-23 19:18+0200\n"
"Last-Translator: goodgod261 <goodgod261@wp.pl>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "Aktywuj lub dezaktywuj ipv6 konfiguracja globalna"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Kanał"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
"Zaznacz, aby zabezpieczyć sieć lokalną przed innymi węzłami lub klientami "
"sieci"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Wyczyść konfigurację"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Skonfiguruj ten interfejs"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Pula adresów DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP automatycznie przypisze adresy IP klientom"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Włącz DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Włącz RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Włączone"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Ustawienia ogólne"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "IPv6 Ustawienia"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
"Jeśli ta opcja jest zaznaczona to stara konfiguracja jest usuwana przed "
"zapisaniem nowych opcji."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfejsy"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Adres Mesh IP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "Adres Mech IPv6"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Kreator Mesh"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
#, fuzzy
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"Nota: To są ustawienia interfejsu mesh operacja i.e Dodawanie Strefy "
"'Freifunk' oraz włączyć olsr"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Chroń LAN"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Zaznacz tę opcję aby inni użytkownicy mogli używać twojego połączenia do "
"korzystania z internetu"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr "Wyślij Routera Reklamę na urządzenie"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Współdziel swoje połączenie internetowe"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"Zakres adresów IP, z którego klientom są przypisywane adresy IP (np. "
"10.1.2.1/28). Jeżeli jest to zakres wewnątrz twojej sieci mesh, wówczas "
"zostanie rozgłoszony jako HNA. Każdy inny zakres będzie używać NAT. Jeżeli "
"pozostanie pusty, wówczas zostanie użyty domyślny profil społeczności."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "Podany adres IP nie należy do zakresu sieci mesh"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"To jest unikalny adres IPv6 w notacji <abbr title=\"Classless Inter-Domain "
"Routing\">CIDR</abbr> (np. 2001:1:2:3:1/64) i musi zostać zarejestrowany w "
"Twojej lokalnej społeczności"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
"Jest to unikalny adres w sieci mesh (np. 10.1.1.1) i musi być zarejestrowana "
"w lokalnej społeczności."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Ta opcja skonfiguruje nowy wirtualny interfejs bezprzewodowy w trybie Access "
"Point`a"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
"Ten kreator pomoże skonfigurować router do korzystania z Freifunk lub "
"podobnej społecznej sieci bezprzewodowej (darmowe WiFi)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Access Point Wirtualny (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Kreator"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "Twój router i sąsiedzkie węzły sieci używają tego samego kanału."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "zalecane"

View file

@ -1,181 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-10-11 00:23+0200\n"
"PO-Revision-Date: 2017-02-20 18:00-0300\n"
"Last-Translator: Luiz Angelo Daros de Luca <luizluca@gmail.com>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 1.8.11\n"
"Language-Team: \n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "Habilita e desabilita a configuração IPv6 globalmente."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Canal"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
"Marque isto para proteger sua rede local (LAN) de outros nós ou clientes"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Limpar configuração"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Configure esta interface"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Faixa de IP do DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "O DHCP irá atribuir automaticamente endereços IP para os clientes"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Habilitar DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
"Habilitar <abbr title=\\\"Router Advertisement, Anúncio de Roteador\\\">RA</"
"abbr>"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Habilitado"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Configurações Gerais"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "Configurações IPv6"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
"Se selecionado, a configuração é limpa antes de definir as novas opções de "
"configuração."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfaces"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Endereço IP da rede em malha"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "Endereço IPv6 da rede em malha"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Assistente de Configuração da Rede em Malha"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"Nota: Isto irá configurar a interface para operação em malha, p. ex. "
"adicionar à zona 'freifunk' e ativar o OLSR. "
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Proteget Rede Local (LAN)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Selecione isto para permitir que outros usem sua conexão para acessar a "
"internet."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
"Envia <abbr title=\\\"Router Advertisement, Anúncio de Roteador\\\">RA</"
"abbr> a partir deste dispositivo."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Compartilhar sua conexão com a internet"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"Faixa de endereços IP atribuídos aos clientes (ex: 10.1.2.1/28). Se esta "
"faixa está dentro da faixa da rede em malha, então ela será anunciada no "
"<abbr title=\"Host and network association, Associação de equipamentos e "
"redes\">HNA</abbr>. Qualquer outra faixa irá utilizar NAT. Se deixada vazia, "
"os padrões do perfil da comunidade será usada."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
"O endereço IP informado não está na faixa de endereços da rede em malha"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"Este é um endereço IPv6 único na notação CIDR (ex: 2001:1:2:3::1/64) e deve "
"ser registrado na sua comunidade local."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
"Este é um endereço único na rede em malha (ex: 10.1.1.1) e tem que ser "
"registrado na sua comunidade local."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Isto configurará uma nova interface de rede sem fio virtual em modo de ponto "
"de acesso."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
"Este assistente irá ajudá-lo na configuração do seu roteador para Freifunk "
"ou outra rede comunitária sem fio similar."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Ponto de Acesso Virtual (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Assistente"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "Seu dispositivo e os nós vizinhos devem utilizar o mesmo canal."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "recomendado"

View file

@ -1,165 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-06-03 16:20+0200\n"
"PO-Revision-Date: 2013-06-03 18:01+0200\n"
"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "Ativar ou desativar a configuração IPv6 globalmente."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Canal"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr "Marcar isto para proteger a sua LAN de outros nós ou clientes"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Limpar configuração"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Configurar esta interface"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Intervalo de IPs DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "O DHCP irá atribuir automaticamente endereços IP aos clientes"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Ativar DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Ativar RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Ativo"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Definições Gerais"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "Definições IPv6"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
"Se isto estiver selecionado a configuração é limpa antes de serem definidas "
"novas opções na configuração."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfaces"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
#, fuzzy
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"Nota: Isto irá configurar a interface para operação em malha, p. ex. "
"adicionar à zona 'freifunk' e ativar OLSR."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Proteger LAN"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Ative isto para permitir que outros usem a sua ligação para aceder à "
"internet."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Irá ser configurado uma nova interface virtual wireless em modo de Ponto de "
"Acesso."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Ponto de Acesso Virtual (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Assistente"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "O seu dispositivo e os nós vizinhos têm de usar o mesmo canal."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "recomendado"

View file

@ -1,158 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2014-06-29 19:55+0200\n"
"Last-Translator: xxvirusxx <condor20_05@yahoo.it>\n"
"Language-Team: none\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Canal"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
"Bifeaza aici sa-ti protejezi reteaua locala LAN de alte noduri sau clienti"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Configureaza aceasta interfata"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Plaja de adrese IP DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP va aloca automat adrese IP la clienti"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Activeaza DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Activează RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Activat"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Setări generale"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "Setări IPv6"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Interfete"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Protejeaza reteaua locala LAN"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Selecteaza aici ca sa permiti si altora sa-ti foloseasca si ei conexiunea ta "
"de Internet."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Partajeaza cu altii conexiunea ta de Internet"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "recomandat"

View file

@ -1,177 +0,0 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: LuCI: meshwizard\n"
"POT-Creation-Date: 2013-09-06 09:43+0200\n"
"PO-Revision-Date: 2018-01-30 14:02+0300\n"
"Language-Team: http://cyber-place.ru\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.7.1\n"
"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Language: ru\n"
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
"Активировать или деактивировать общие настройки IPv6 для использования "
"маршрутизатором."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Канал"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr "Защитить вашу локальную сеть от других узлов или клиентов"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "Очистить config файл"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "Настроить этот интерфейс"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "Диапазон IP-адресов DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP автоматически назначит IP-адреса клиентам"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Включить DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Включить RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Включено"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Основные настройки"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "IPv6 Настройки"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
"Очистить имеющийся config файл перед записью в него новых значений настроек."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Интерфейсы"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "IP-адрес Mesh сети"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "IPv6-адрес Mesh сети"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Мастер настройки Mesh сети"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"Внимание: этот режим использует данный интерфейс для Mesh сети, т.е. добавит "
"его в зону 'freifunk' ('free wireless radio') и задействует протокол OLSR."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Защита LAN"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr "Позволить другим клиентам использовать ваше подключение к Интернету."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr "Посылать ICMPv6 сообщения 'Router Advertisement' на это устройство."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "Сделать Интернет подключение общедоступным"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"Диапазон IP-адресов для использования клиентами сети (например 10.1.2.1/28). "
"Если указанный диапазон находится внутри вашей сети, тогда он будет объявлен "
"как HNA. Любой другой диапазон будет использовать NAT. Если вы не настроите "
"пул адресов, будут использованы адреса по умолчанию."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "Заданный IP-адрес не находится в диапазоне настроенной Mesh сети."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"Задать уникальный IPv6-адрес в нотации cidr для Mesh сети (например, "
"2001:1:2:3::1/64) для использования вашего маршрутизатора в качестве узла "
"существующей Mesh сети."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
"Задать уникальный адрес для Mesh сети (например 10.1.1.1) для использования "
"вашего маршрутизатора в качестве узла существующей Mesh сети."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
"Будет произведена настройка новой виртуальной беспроводной сети в режиме "
"точки доступа."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
"Данный мастер настройки поможет настроить ваш маршрутизатор для создания и "
"использования сети Freifunk или другой подобной беспроводной Mesh сети."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "Виртуальная точка доступа (VAP)"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "Мастер настройки"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
"Ваше устройство и соседние узлы должны использовать один и тот же канал."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "рекомендуется"

View file

@ -1,151 +0,0 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,152 +0,0 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,144 +0,0 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,151 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,158 +0,0 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2013-09-21 15:47+0200\n"
"Last-Translator: zubr_139 <zubr139@ukr.net>\n"
"Language-Team: none\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "Канал"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "DHCP IP-діапазон"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP автоматично призначить IP-адреси клієнтам"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "Активувати DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "Активувати RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "Активувати"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "Загальні налаштування"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "Налаштування IPv6"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "Інтерфейси"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "Захист локальної мережі"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
#, fuzzy
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
"Оберіть це, щоб дозволити іншим використовувати з'єднання для доступу в "
"Інтернет."
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,141 +0,0 @@
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr ""
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr ""

View file

@ -1,165 +0,0 @@
#
# Yangfl <mmyangfl@gmail.com>, 2018.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-09-24 18:01+0200\n"
"PO-Revision-Date: 2018-08-07 19:18+0800\n"
"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Gtranslator 2.91.7\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "启用或停用全局 IPv6 设置"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "信道"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr "选择此项,隔离其他节点或客户端的攻击来保护您的局域网"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "清空配置"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "配置当前界面"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "DHCP IP 范围"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP 将自动给客户端分配 IP 地址"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "启动 DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "启用 RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "启用"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "常规设置"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "IPv6 设置"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr "如果选中此项,在设置新选项之前,配置将被清空。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "界面"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Mesh IP 地址"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "Mesh IPv6 地址"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Mesh 向导"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"注意:这将为 mesh 操作建立一个接口添加到“freifunk”区域并启用 olsr"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "保护 LAN 口"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr "选择此项以允许其他人使用您的连接访问互联网。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr "在此设备上发送路由广播。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "分享您的互联网连接"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"给客户端分配的 IP 地址范围(如 10.1.2.1/28。如果此范围位于您的网状网络范围"
"内,那么它将被通告为 HNA。任何其他范围将使用 NAT。如果留空则将使用社区个人"
"资料中的默认值。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "给定的 IP 地址不在网状网络范围内"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"这是唯一 IPv6 地址,以 CIDR 表示(例如 2001:1:2:3::1/64必须在您的当地社区"
"注册。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr "这是网状网中的唯一地址(例如 10.1.1.1),必须在您的当地社区注册。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr "这将在接入点模式下设置新的虚拟无线接口。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr "该向导将帮助您为 Freifunk 或其他类似的无线社区网络设置路由器。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "虚拟接入点VAP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "向导"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "您的设备和相邻节点必须使用相同的信道。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "推荐"

View file

@ -1,165 +0,0 @@
#
# Yangfl <mmyangfl@gmail.com>, 2018.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-09-24 18:01+0200\n"
"PO-Revision-Date: 2018-08-07 19:18+0800\n"
"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Gtranslator 2.91.7\n"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:191
msgid "Activate or deactivate IPv6 config globally."
msgstr "啟用或停用全域性 IPv6 設定"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:112
msgid "Channel"
msgstr "通道"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "Check this to protect your LAN from other nodes or clients"
msgstr "選擇此項,隔離其他節點或客戶端的攻擊來保護您的區域網"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:176
msgid "Cleanup config"
msgstr "清空配置"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:24
msgid "Configure this interface"
msgstr "配置當前介面"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:67
msgid "DHCP IP range"
msgstr "DHCP IP 範圍"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:54
msgid "DHCP will automatically assign ip addresses to clients"
msgstr "DHCP 將自動給客戶端分配 IP 位址"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:53
msgid "Enable DHCP"
msgstr "啟動 DHCP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:60
msgid "Enable RA"
msgstr "啟用 RA"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:190
msgid "Enabled"
msgstr "啟用"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:173
msgid "General Settings"
msgstr "常規設定"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:189
msgid "IPv6 Settings"
msgstr "IPv6 設定"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:177
msgid ""
"If this is selected then config is cleaned before setting new config options."
msgstr "如果選中此項,在設定新選項之前,配置將被清空。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:18
msgid "Interfaces"
msgstr "介面"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:29
msgid "Mesh IP address"
msgstr "Mesh IP 位址"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:45
msgid "Mesh IPv6 address"
msgstr "Mesh IPv6 位址"
#: applications/luci-app-meshwizard/luasrc/controller/meshwizard.lua:7
msgid "Mesh Wizard"
msgstr "Mesh 嚮導"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:25
msgid ""
"Note: this will set up this interface for mesh operation, i.e. add it to "
"zone 'freifunk' and enable olsr."
msgstr ""
"注意:這將為 mesh 操作建立一個介面新增到“freifunk”區域並啟用 olsr"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:180
msgid "Protect LAN"
msgstr "保護 LAN 口"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:184
msgid ""
"Select this to allow others to use your connection to access the internet."
msgstr "選擇此項以允許其他人使用您的連線訪問網際網路。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:61
msgid "Send router advertisements on this device."
msgstr "在此裝置上傳送路由廣播。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:183
msgid "Share your internet connection"
msgstr "分享您的網際網路連線"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:68
msgid ""
"The IP range from which clients are assigned ip addresses (e.g. "
"10.1.2.1/28). If this is a range inside your mesh network range, then it "
"will be announced as HNA. Any other range will use NAT. If left empty then "
"the defaults from the community profile will be used."
msgstr ""
"給客戶端分配的 IP 位址範圍(如 10.1.2.1/28。如果此範圍位於您的網狀網路範圍"
"內,那麼它將被宣告為 HNA。任何其他範圍將使用 NAT。如果留空則將使用社群個人"
"資料中的預設值。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:38
msgid "The given IP address is not inside the mesh network range"
msgstr "給定的 IP 位址不在網狀網路範圍內"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:46
msgid ""
"This is a unique IPv6 address in CIDR notation (e.g. 2001:1:2:3::1/64) and "
"has to be registered at your local community."
msgstr ""
"這是唯一 IPv6 位址,以 CIDR 表示(例如 2001:1:2:3::1/64必須在您的當地社群"
"註冊。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:30
msgid ""
"This is a unique address in the mesh (e.g. 10.1.1.1) and has to be "
"registered at your local community."
msgstr "這是網狀網中的唯一位址(例如 10.1.1.1),必須在您的當地社群註冊。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:149
msgid "This will setup a new virtual wireless interface in Access Point mode."
msgstr "這將在接入點模式下設定新的虛擬無線介面。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid ""
"This wizard will assist you in setting up your router for Freifunk or "
"another similar wireless community network."
msgstr "該向導將幫助您為 Freifunk 或其他類似的無線社群網路設定路由器。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:148
msgid "Virtual Access Point (VAP)"
msgstr "虛擬接入點VAP"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:15
msgid "Wizard"
msgstr "嚮導"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:113
msgid "Your device and neighbouring nodes have to use the same channel."
msgstr "您的裝置和相鄰節點必須使用相同的通道。"
#: applications/luci-app-meshwizard/luasrc/model/cbi/freifunk/meshwizard.lua:181
msgid "recommended"
msgstr "推薦"

View file

@ -1,8 +0,0 @@
#!/bin/sh
uci batch <<EOF
set ucitrack.meshwizard="meshwizard"
set ucitrack.meshwizard.exec="/usr/bin/meshwizard/wizard.sh"
commit ucitrack
EOF
rm -f /tmp/luci-indexcache

View file

@ -1,39 +0,0 @@
# Copyright (C) 2011 Manuel Munz <freifunk at somakoma de>
# This is free software, licensed under the Apache 2.0 license.
include $(TOPDIR)/rules.mk
PKG_NAME:=community-profiles
PKG_RELEASE:=2
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/community-profiles
SECTION:=luci
CATEGORY:=LuCI
SUBMENU:=9. Freifunk
TITLE:=Community profiles
DEPENDS:=freifunk-common
endef
define Package/community-profiles/description
These community profiles set defaults for various free network/freifunk communities and are used by wizards like ffwizard and meshwizard.
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/community-profiles/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,community-profiles))

View file

@ -1,10 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk'
option 'homepage' 'http://freifunk.net'
option 'ssid' 'www.freifunk.net'
option 'splash_network' '10.104.0.0/16'
option 'latitude' '52.000'
option 'longitude' '10.000'
option 'splash_prefix' '28'
option 'mesh_network' '10.0.0.0/8'

View file

@ -1,56 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Altmark'
option 'homepage' 'http://altmark.freifunk.net'
option 'ssid' 'altmark.freifunk.net'
option 'mesh_network' '10.59.0.0/16'
option 'latitude' '52.885'
option 'longitude' '11.15'
option 'suffix' 'olsr.altmark.freifunk.net'
option 'vap' '1'
option 'adhoc_dhcp_when_vap' '0'
config 'defaults' 'interface'
option 'netmask' '255.255.255.255'
config 'defaults' 'bssidscheme'
option '1' '02:CA:FF:EE:BA:BE'
option '40' '02:40:CA:FF:EE:EE'
config 'defaults' 'wifi_device'
option 'country' 'DE'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'
config 'defaults' 'olsrd'
option 'LinkQualityAlgorithm' 'etx_ff'
config widget 'customindex'
option enabled '1'
option width '50%'
option paddingright '5%'
option template 'html'
config widget 'rssffl'
option enabled '1'
option max '10'
option cache '3600'
option width '100%'
option title 'Freifunk Blog'
option template 'iframe'
option url 'http://freifunk.net'
config widget 'rssbundesweit'
option cache '3600'
option width '50%'
option title 'bundesweiter Freifunk Blog'
option template 'rssfeed'
option enabled '1'
option max '10'
option url 'http://blog.freifunk.net/rss.xml'
config widget 'clear1'
option template 'clear'
option enabled '1'

View file

@ -1,22 +0,0 @@
config 'community' 'profile'
option 'name' 'arig Arad'
option 'homepage' 'http://arig.org.il'
option 'ssid' 'arig.org.il'
option 'latitude' '31.26'
option 'longitude' '35.21'
option 'splash_prefix' '28'
option 'suffix' 'arig'
option 'mesh_network' '10.81.8.0/22'
config 'defaults' 'bssidscheme'
option '1' '02:CA:FF:EE:BA:BE'
option '13' '13:CA:FF:EE:BA:BE'
config 'defaults' 'wifi_device'
option 'channel' '13'
option 'country' 'IL'
option 'beacon_int' '5000'
option 'distance' '1500'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'

View file

@ -1,22 +0,0 @@
config 'community' 'profile'
option 'name' 'arig Neot Semadar'
option 'homepage' 'http://www.neot-semadar.com'
option 'ssid' 'arig.org.il'
option 'latitude' '30.05'
option 'longitude' '35.02'
option 'splash_prefix' '272'
option 'suffix' 'arig'
option 'mesh_network' '10.81.12.0/22'
config 'defaults' 'bssidscheme'
option '1' '02:CA:FF:EE:BA:BE'
option '13' '13:CA:FF:EE:BA:BE'
config 'defaults' 'wifi_device'
option 'channel' '13'
option 'country' 'IL'
option 'beacon_int' '5000'
option 'distance' '1500'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'

View file

@ -1,22 +0,0 @@
config 'community' 'profile'
option 'name' 'arig Tel Aviv'
option 'homepage' 'http://arig.org.il'
option 'ssid' 'arig.org.il'
option 'latitude' '32.056'
option 'longitude' '34.772'
option 'splash_prefix' '28'
option 'suffix' 'arig'
option 'mesh_network' '10.81.0.0/21'
config 'defaults' 'bssidscheme'
option '1' '02:CA:FF:EE:BA:BE'
option '13' '13:CA:FF:EE:BA:BE'
config 'defaults' 'wifi_device'
option 'channel' '13'
option 'country' 'IL'
option 'beacon_int' '5000'
option 'distance' '1500'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'

View file

@ -1,64 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Augsburg'
option 'homepage' 'http://augsburg.freifunk.net'
option 'ssid' 'augsburg.freifunk.net'
option 'mesh_network' '10.11.0.0/18'
option 'splash_network' '10.104.0.0/16'
option 'latitude' '48.37071'
option 'longitude' '10.89475'
option 'suffix' 'ffa'
option 'splash_prefix' '27'
option 'vap' '1'
option adhoc_dhcp_when_vap '1'
option 'ipv6' '1'
option 'ipv6_config' 'auto-ipv6-fromv4'
option 'ipv6_prefix' 'fdca:ffee:ffa::/48'
#option 'extrapackages' ''
config 'defaults' 'interface'
option 'netmask' '255.255.192.0'
config 'defaults' 'bssidscheme'
option '1' '02:CA:FF:EE:BA:BE'
config 'defaults' 'luci_splash'
option 'limit_up' '40'
option 'limit_down' '120'
option 'leasetime' '8'
config widget 'customindex'
option enabled '1'
option width '50%'
option paddingright '5%'
option template 'html'
config widget 'rssffa'
option enabled '1'
option max '10'
option cache '3600'
option width '50%'
option title 'Freifunk Augsburg Blog'
option template 'rssfeed'
option url 'http://augsburg.freifunk.net/blog?type=100'
config widget 'rssaugsburg'
option cache '3600'
option width '50%'
option title 'Augsburger Blogs'
option template 'rssfeed'
option enabled '1'
option max '10'
option url 'http://wgaugsburg.de/augsburg/rss20.xml'
config widget 'search'
option template 'search'
option title 'Search'
option enabled '1'
option width '50%'
list engine 'Google|http://www.google.de/search?q='
list engine 'Freifunk&#160;Augsburg|http://www.google.de/search?q=site:augsburg.freifunk.net+'
list engine 'Freifunk&#160;Wiki|http://wiki.freifunk.net/index.php?search='
config widget 'clear1'
option template 'clear'
option enabled '1'

View file

@ -1,20 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Bayreuth'
option 'homepage' 'http://bayreuth.freifunk.net'
option 'ssid' 'bayreuth.freifunk.net'
option 'mesh_network' '10.195.0.0/16'
option 'splash_network' '10.104.0.0/16'
option 'latitude' '49.945812'
option 'longitude' '11.575045'
option 'suffix' 'ffbt'
option 'splash_prefix' '28'
config 'defaults' 'interface'
option 'netmask' '255.255.192.0'
config 'defaults' 'wifi_device'
option 'channel' '4'
config 'defaults' 'wifi_iface'
option 'bssid' '42:CA:FF:EE:BA:BE'

View file

@ -1,15 +0,0 @@
config 'community' 'profile'
option 'name' 'Piratenfreifunk Bergisches Land'
option 'homepage' 'http://www.piraten-bergisches-land.de'
option 'ssid' 'PiratenfunkBL'
option 'mesh_network' '10.3.0.0/16'
option 'splash_network' '192.168.0.0/16'
option 'splash_prefix' '27'
option 'latitude' '51.26849'
option 'longitude' '7.19476'
config 'defaults' 'wifi_device'
option 'channel' '11'
config 'defaults' 'wifi_iface'
option 'bssid' '02:40:00:42:42:42'

View file

@ -1,39 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Berlin'
option 'homepage' 'http://berlin.freifunk.net'
option 'ssid' 'berlin.freifunk.net'
option 'ssid_scheme' 'addchannelbefore'
option 'mesh_network' '10.0.0.0/8'
option 'splash_network' '10.104.0.0/16'
option 'splash_prefix' '27'
option 'latitude' '52.52075'
option 'longitude' '13.40948'
option 'owm_api' 'http://util.berlin.freifunk.net'
config 'defaults' 'wifi_device'
option 'channel' '13'
config 'defaults' 'wifi_device_5'
option 'channel' '36'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'
config 'defaults' 'wifi_iface_5'
option 'mcast_rate' '12000'
config 'defaults' 'bssidscheme'
option '10' '02:CA:FF:EE:BA:BE'
option '13' 'D2:CA:FF:EE:BA:BE'
option '36' '02:36:CA:FF:EE:EE'
config 'defaults' 'ssidscheme'
option '13' 'intern-ch13.freifunk.net'
option '36' 'intern-ch36.freifunk.net'
config 'defaults' 'interface'
option 'netmask' '255.255.255.255'
option 'dns' '85.214.20.141 80.67.169.40 194.150.168.168 2001:4ce8::53 2001:910:800::12'
config 'dhcp' 'dhcp'
option leasetime '5m'

View file

@ -1,23 +0,0 @@
config 'community' 'profile'
option 'name' 'carbodebit'
option 'homepage' 'http://carbodebit.net'
option 'ssid' 'VHDCARBES'
option 'mesh_network' '10.72.1.0/24'
option 'latitude' '43.633683'
option 'longitude' '2.160894'
config 'defaults' 'wifi_iface'
option 'bssid' 'DE:78:70:E4:FA:B8'
config 'defaults' 'interface'
option 'netmask' '255.255.255.0'
option 'dns' '10.70.1.1 213.190.64.170 213.190.64.166'
config 'defaults' 'wifi_device'
option 'channel' '11'
option 'country' 'FR'
option 'distance' '2000'
config 'defaults' 'bssidscheme'
option 'all' 'DE:78:70:E4:FA:B8'

View file

@ -1,37 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Cottbus'
option 'homepage' 'http://cottbus.freifunk.net'
option 'ssid' 'cottbus.freifunk.net'
option 'ssid_scheme' 'ssidonly'
option 'mesh_network' '10.35.0.0/16'
option 'splash_network' '10.104.0.0/16'
option 'splash_prefix' '27'
option 'latitude' '51.757689'
option 'longitude' '13.40948'
config 'defaults' 'wifi_device'
option 'channel' '13'
config 'defaults' 'wifi_device_5'
option 'channel' '36'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'
config 'defaults' 'wifi_iface_5'
option 'mcast_rate' '12000'
config 'defaults' 'bssidscheme'
option '13' 'D2:CA:FF:EE:BA:BE'
option '36' '02:36:CA:FF:EE:EE'
config 'defaults' 'ssidscheme'
option '13' 'intern-ch13.cottbus.freifunk.net'
option '36' 'intern-ch36.cottbus.freifunk.net'
config 'defaults' 'interface'
option 'netmask' '255.255.255.255'
option 'dns' '85.214.20.141 80.67.169.40 194.150.168.168 2001:4ce8::53 2001:910:800::12'
config 'dhcp' 'dhcp'
option 'leasetime' '5m'

View file

@ -1,21 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Demo'
option 'homepage' 'http://www.freifunk.net'
option 'ssid' 'demo.freifunk.net'
option 'mesh_network' '10.11.12.0/24'
option 'latitude' '51.163375'
option 'longitude' '10.447683'
option 'suffix' 'ff'
option 'vap' '1'
option adhoc_dhcp_when_vap '1'
option 'ipv6' '1'
option 'ipv6_config' 'auto-ipv6-fromv4'
option 'ipv6_prefix' 'fdca:ffff:ffff::/48'
#option 'extrapackages' ''
config 'defaults' 'interface'
option 'netmask' '255.255.255.0'
config 'defaults' 'luci_splash'
option 'limit_up' '50'
option 'limit_down' '200'

View file

@ -1,15 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Duesseldorf'
option 'homepage' 'http://freifunk-duesseldorf.de'
option 'ssid' 'duesseldorf.freifunk.net'
option 'mesh_network' '10.40.0.0/16'
option 'splash_network' '10.104.0.0/16'
option 'splash_prefix' '27'
option 'latitude' '51.217812'
option 'longitude' '6.761564'
config 'defaults' 'wifi_device'
option 'channel' '3'
config 'defaults' 'wifi_iface'
option 'bssid' '02:CA:FF:EE:BA:BE'

View file

@ -1,48 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Erfurt'
option 'homepage' 'http://erfurt.freifunk.net'
option 'ssid' 'erfurt.freifunk.net'
option 'mesh_network' '10.99.0.0/16'
option 'latitude' '50.9768'
option 'longitude' '11.02367'
option 'suffix' 'olsr.erfurt.freifunk.net'
option 'vap' '1'
option 'adhoc_dhcp_when_vap' '0'
config 'defaults' 'interface'
option 'netmask' '255.255.0.0'
config 'defaults' 'bssidscheme'
option '1' '02:CA:FF:EE:BA:BE'
config 'defaults' 'olsrd'
option 'LinkQualityAlgorithm' 'etx_ff'
config widget 'customindex'
option enabled '1'
option width '50%'
option paddingright '5%'
option template 'html'
config widget 'rssffl'
option enabled '1'
option max '10'
option cache '3600'
option width '100%'
option title 'Freifunk Blog'
option template 'iframe'
option url 'http://freifunk.net'
config widget 'rssbundesweit'
option cache '3600'
option width '50%'
option title 'bundesweiter Freifunk Blog'
option template 'rssfeed'
option enabled '1'
option max '10'
option url 'http://blog.freifunk.net/rss.xml'
config widget 'clear1'
option template 'clear'
option enabled '1'

View file

@ -1,25 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Evernet eG'
option 'homepage' 'http://www.evernet-eg.de'
option 'ssid' 'evernet.freifunk.net'
option 'mesh_network' '10.0.0.0/8'
option 'latitude' '51.15692062509162'
option 'longitude' '10.716041922569275'
option 'suffix' 'evernet'
config 'defaults' 'interface'
option 'netmask' '255.0.0.0'
config 'defaults' 'bssidscheme'
option 'all' '02:CA:FF:EE:BA:BE'
config 'defaults' 'wifi_device'
option 'channel' '13'
option 'country' 'DE'
option 'txpower' '19'
option 'beacon_int' '5000'
option 'distance' '1500'
option 'noscan' '0'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'

View file

@ -1,45 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Freiburg'
option 'homepage' 'http://freiburg.freifunk.net'
option 'ssid' '02:CA:FF:EE:BA:BE'
option 'mesh_network' '10.60.0.0/16'
option 'latitude' '47.994841'
option 'longitude' '7.849772'
option 'suffix' 'olsr.freiburg.freifunk.net'
option 'vap' '1'
option 'adhoc_dhcp_when_vap' '0'
config 'defaults' 'interface'
option 'netmask' '255.255.255.255'
config 'defaults' 'bssidscheme'
option '1' '02:CA:FF:EE:BA:BE'
option '40' '02:40:CA:FF:EE:EE'
config 'defaults' 'wifi_device'
option 'country' 'DE'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'
config 'defaults' 'olsrd'
option 'LinkQualityAlgorithm' 'etx_ff'
config widget 'customindex'
option enabled '1'
option width '50%'
option paddingright '5%'
option template 'html'
config widget 'rssbundesweit'
option cache '3600'
option width '50%'
option title 'bundesweiter Freifunk Blog'
option template 'rssfeed'
option enabled '1'
option max '10'
option url 'http://blog.freifunk.net/rss.xml'
config widget 'clear1'
option template 'clear'
option enabled '1'

View file

@ -1,38 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Fürstenwalde'
option 'homepage' 'http://fuerstenwalde.freifunk.net'
option 'ssid' 'fuerstenwalde.freifunk.net'
option 'ssid_scheme' 'addchannelbefore'
option 'mesh_network' '10.0.0.0/8'
option 'splash_network' '10.104.0.0/16'
option 'splash_prefix' '27'
option 'latitude' '52.35844'
option 'longitude' '14.063696'
option 'owm_api' 'http://util.berlin.freifunk.net'
config 'defaults' 'wifi_device'
option 'channel' '13'
config 'defaults' 'wifi_device_5'
option 'channel' '36'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'
config 'defaults' 'wifi_iface_5'
option 'mcast_rate' '12000'
config 'defaults' 'bssidscheme'
option '13' 'D2:CA:FF:EE:BA:BE'
option '36' '02:36:CA:FF:EE:EE'
config 'defaults' 'ssidscheme'
option '13' 'intern-ch13.freifunk.net'
option '36' 'intern-ch36.freifunk.net'
config 'defaults' 'interface'
option 'netmask' '255.255.255.255'
option 'dns' '85.214.20.141 80.67.169.40 194.150.168.168 2001:4ce8::53 2001:910:800::12'
config 'dhcp' 'dhcp'
option leasetime '5m'

View file

@ -1,23 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Gadow'
option 'homepage' 'http://gadow.freifunk.net'
option 'ssid' 'gadow.freifunk.net'
option 'mesh_network' '10.61.0.0/16'
option 'latitude' '53.11'
option 'longitude' '12.61'
option 'vap' '1'
option 'adhoc_dhcp_when_vap' '0'
config 'defaults' 'interface'
option 'netmask' '255.255.255.255'
config 'defaults' 'bssidscheme'
option '1' '02:CA:FF:EE:BA:BE'
option '40' '02:40:CA:FF:EE:EE'
config 'defaults' 'wifi_device'
option 'country' 'DE'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'

View file

@ -1,19 +0,0 @@
config 'community' 'profile'
option 'name' 'Guifi Bages'
option 'homepage' 'http://guifi.net/PlaBages'
option 'ssid' 'guifibages'
option 'mesh_network' '10.224.3.0/16'
option 'splash_network' '10.104.0.0/16'
option 'theme' 'luci-theme-freifunk-generic'
option 'latitude' '41.718437'
option 'longitude' '1.826477'
option 'suffix' 'guifibages.cat'
option 'splash_prefix' '27'
option 'extrapackages' 'luci-app-olsr-viz luci-i18n-catalan'
config 'defaults' 'interface'
option 'netmask' '255.255.0.0'
config 'defaults' 'bssidscheme'
option 'all' '12:34:56:78:9a:bc'

View file

@ -1,71 +0,0 @@
config 'community' 'profile'
option 'name' 'Freifunk Halle'
option 'homepage' 'http://freifunk-halle.org'
option 'ssid' 'halle.freifunk.net'
option 'mesh_network' '10.62.0.0/16'
option 'splash_network' '6.0.0.0/8'
option 'splash_prefix' '27'
option 'latitude' '51.47911'
option 'longitude' '11.96901'
option 'adhoc_dhcp_when_vap' '0'
option 'suffix' 'ffhal'
option 'vap' '1'
option 'batman' '1'
config 'defaults' 'wifi_device'
option 'channel' '13'
option 'country' 'DE'
config 'defaults' 'bssidscheme'
option 'all' '02:CA:FF:EE:BA:BE'
config 'defaults' 'luci_splash'
option 'redirect_url' 'http://freifunk-halle.org/willkommen.php'
config 'defaults' 'interface'
option 'netmask' '255.255.255.255'
config 'defaults' 'wifi_iface'
option 'mcast_rate' '6000'
config 'defaults' 'dhcp'
option 'leasetime' '5m'
config 'defaults' 'olsrd'
option 'AllowNoInt' 'yes'
option 'FIBMetric' 'flat'
option 'Pollrate' '0.025'
option 'TcRedundancy' '2'
option 'NatThreshold' '0.75'
option 'LinkQualityAlgorithm' 'etx_ff'
option 'LinkQualityFishEye' '1'
option 'Willingness' '3'
config 'defaults' 'olsr_interface'
option 'Ip4Broadcast' '255.255.255.255'
option 'HelloInterval' '5.0'
option 'HelloValidityTime' '125.0'
option 'TcInterval' '3.0'
option 'TcValidityTime' '375.0'
option 'MidInterval' '25.0'
option 'MidValidityTime' '375.0'
option 'HnaInterval' '25.0'
option 'HnaValidityTime' '375.0'
config widget 'rsshalle'
option cache '3600'
option width '50%'
option title 'neuste Foreneinträge in Halle'
option template 'rssfeed'
option enabled '1'
option max '5'
option url 'http://www.freifunk-halle.org/rss.php'
config widget 'rssbundesweit'
option cache '3600'
option width '50%'
option title 'bundesweiter Freifunk Blog'
option template 'rssfeed'
option enabled '1'
option max '10'
option url 'http://blog.freifunk.net/rss.xml'

Some files were not shown because too many files have changed in this diff Show more