]]--
require("luci.tools.webadmin")
+local fs = require "nixio.fs"
+
+local has_ipip = fs.glob("/etc/modules.d/[0-9]*-ipip")()
m = Map("olsrd", translate("OLSR Daemon"),
translate("The OLSR daemon is an implementation of the Optimized Link State Routing protocol. "..
s:tab("general", translate("General Settings"))
s:tab("lquality", translate("Link Quality Settings"))
+s:tab("smartgw", translate("SmartGW"), not has_ipip and translate("Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not work, please install it."))
s:tab("advanced", translate("Advanced Settings"))
-
ipv = s:taboption("general", ListValue, "IpVersion", translate("Internet protocol"),
translate("IP-version to use. If 6and4 is selected then one olsrd instance is started for each protocol."))
ipv:value("4", "IPv4")
mainip.datatype = "ipaddr"
mainip.placeholder = "0.0.0.0"
+sgw = s:taboption("smartgw", Flag, "SmartGateway", translate("Enable"), translate("Enable SmartGateway. If it is disabled, then " ..
+ "all other SmartGateway parameters are ignored. Default is \"no\"."))
+sgw.default="no"
+sgw.enabled="yes"
+sgw.disabled="no"
+sgw.rmempty = true
+
+sgwnat = s:taboption("smartgw", Flag, "SmartGatewayAllowNAT", translate("Allow gateways with NAT"), translate("Allow the selection of an outgoing ipv4 gateway with NAT"))
+sgwnat:depends("SmartGateway", "yes")
+sgwnat.default="yes"
+sgwnat.enabled="yes"
+sgwnat.disabled="no"
+sgwnat.optional = true
+sgwnat.rmempty = true
+
+sgwuplink = s:taboption("smartgw", ListValue, "SmartGatewayUplink", translate("Announce uplink"), translate("Which kind of uplink is exported to the other mesh nodes. " ..
+ "An uplink is detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. Default setting is \"both\"."))
+sgwuplink:value("none")
+sgwuplink:value("ipv4")
+sgwuplink:value("ipv6")
+sgwuplink:value("both")
+sgwuplink:depends("SmartGateway", "yes")
+sgwuplink.default="both"
+sgwuplink.optional = true
+sgwuplink.rmempty = true
+
+sgwulnat = s:taboption("smartgw", Flag, "SmartGatewayUplinkNAT", translate("Uplink uses NAT"), translate("If this Node uses NAT for connections to the internet. " ..
+ "Default is \"yes\"."))
+sgwulnat:depends("SmartGatewayUplink", "ipv4")
+sgwulnat:depends("SmartGatewayUplink", "both")
+sgwulnat.default="yes"
+sgwulnat.enabled="yes"
+sgwulnat.disabled="no"
+sgwnat.optional = true
+sgwnat.rmempty = true
+
+sgwspeed = s:taboption("smartgw", Value, "SmartGatewaySpeed", translate("Speed of the uplink"), translate("Specifies the speed of "..
+ "the uplink in kilobits/s. First parameter is upstream, second parameter is downstream. Default is \"128 1024\"."))
+sgwspeed:depends("SmartGatewayUplink", "ipv4")
+sgwspeed:depends("SmartGatewayUplink", "ipv6")
+sgwspeed:depends("SmartGatewayUplink", "both")
+sgwspeed.optional = true
+sgwspeed.rmempty = true
+
+sgwprefix = s:taboption("smartgw", Value, "SmartGatewayPrefix", translate("IPv6-Prefix of the uplink"), translate("This can be used " ..
+ "to signal the external IPv6 prefix of the uplink to the clients. This might allow a client to change it's local IPv6 address to " ..
+ "use the IPv6 gateway without any kind of address translation. The maximum prefix length is 64 bits. " ..
+ "Default is \"::/0\" (no prefix)."))
+sgwprefix:depends("SmartGatewayUplink", "ipv6")
+sgwprefix:depends("SmartGatewayUplink", "both")
+sgwprefix.optional = true
+sgwprefix.rmempty = true
+
willingness = s:taboption("advanced", ListValue, "Willingness", translate("Willingness"),
translate("The fixed willingness to use. If not set willingness will be calculated dynamically based on battery/power status. Default is \"3\"."))
for i=0,7 do
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr "Xarxa anunciada"
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr "Utilitza histèresi"
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr "Voluntat"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: \n"
-"PO-Revision-Date: 2011-02-12 14:23+0100\n"
+"PO-Revision-Date: 2011-05-09 00:52+0100\n"
"Last-Translator: Manuel Munz <freifunk@somakoma.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr "Gateways mit NAT erlauben"
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr "Auswahl von IPv4-Gateways erlauben, die zum Internet hin NAT verwenden"
+
+msgid "Announce uplink"
+msgstr "Uplink ankündigen"
+
msgid "Announced network"
msgstr "Angekündigtes Netzwerk"
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+"SmartGateway aktivieren. Ist diese Option deaktiviert, dann werden alle "
+"folgenden SmartGateway Einstellungen ignoriert. Der Defaultwert ist \"no\"."
+
msgid "Enable this interface."
msgstr "Dieses Interface benutzen."
"angegebenen Prefix liegt. Der Defaultwert ist \"0::/0\", damit wird eine "
"IPv6-Adresse des Interfaces verwendet die nicht linklocal ist."
+msgid "IPv6-Prefix of the uplink"
+msgstr "IPv6-Präfix des Uplinks"
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"><b>ACHTUNG:</b> Diese Einstellung darf nicht zusammen mit der etx_ffeth "
"Metrik verwendet werden!<br />Der Defaultwert ist \"1.0\"."
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+"Benutzt dieser Knoten NAT für die Verbindung zum Internet? Der Defaultwert "
+"ist \"yes\"."
+
msgid "Interface"
msgstr ""
"dann werden die OLSR-Statusseiten nur sehr langsam laden. In diesem Fall "
"sollte man diese Option deaktivieren."
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr "Routen"
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+"Hiermit kann man die Geschwindigkeit des Uplinks dieses Knotens ankündigen. "
+"Der erste Wert ist die Upload-, der zweite Wert die Downloadgeschwindigkeit. "
+"Der Defaultwert ist \"128 1024\"."
+
+msgid "Speed of the uplink"
+msgstr "Geschwindigkeit des Uplinks"
+
msgid "State"
msgstr ""
"Port, den OLSRd benutzt. Dieser sollte in der Regel auf dem Defaultwert 698 "
"bleiben, was dem von IANA zugewiesenen Port für OLSRd entspricht."
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
+"Hiermit kann der externe IPv6-Präfix an Clients signalisiert werden. Dadurch "
+"können Clients ihre lokale IP-Adresse ändern, um diesen IPv6-Gateway ohne "
+"Übersetzung der IPv6-Adresse zu benutzen. Die maximale erlaubte Länge des "
+"Präfix ist 64 bit. Der Defaultwert ist \"::/0\" (kein Präfix)."
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr "Der Uplink benutzt NAT."
+
msgid "Use hysteresis"
msgstr "Hysterese aktivieren"
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+"WARNUNG: kmod-ipip ist nicht installiert. Ohne kmod-ipip wird SmartGateway "
+"nicht funktionieren!"
+
msgid "Weight"
msgstr ""
"LinkQualityLevel= 0 ist. Für alle anderen Werte von LinkQualityLevel wird "
"stattdessen der ETX-Wert verwendet."
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+"Welche Art von Uplink im Mesh angekündigt wird. Ein Uplink wird automatisch "
+"anhand der lokal angekündigten HNA erkannt (0.0.0.0/0, ::ffff:0:0/96 oder "
+"2000::/3). Der Defaultwert ist \"both\" (sowohl IPv4 als auch IPv6 Uplink "
+"ankündigen sofern verfügbar)."
+
msgid "Willingness"
msgstr "Bereitschaft"
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr ""
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr ""
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr ""
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr "Announced network"
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr "Use hysteresis"
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr "Willingness"
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr "Red a anunciar"
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr "Uso de histéresis"
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr "<abbr title=\"Willingness\">Voluntad</abbr>"
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr ""
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr ""
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr ""
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr ""
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr ""
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr ""
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr ""
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr ""
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr ""
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr "Rede anunciada"
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr "Usar histerese"
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr "Disponibilidade"
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr "Rede anunciada"
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr "Usar histerese"
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr "Disponibilidade"
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr ""
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr ""
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr ""
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr ""
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr ""
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr ""
msgid "Advanced Settings"
msgstr ""
+msgid "Allow gateways with NAT"
+msgstr ""
+
+msgid "Allow the selection of an outgoing ipv4 gateway with NAT"
+msgstr ""
+
+msgid "Announce uplink"
+msgstr ""
+
msgid "Announced network"
msgstr "Mạng lưới thông báo"
msgid "Enable"
msgstr ""
+msgid ""
+"Enable SmartGateway. If it is disabled, then all other SmartGateway "
+"parameters are ignored. Default is \"no\"."
+msgstr ""
+
msgid "Enable this interface."
msgstr ""
"of a not-linklocal interface IP."
msgstr ""
+msgid "IPv6-Prefix of the uplink"
+msgstr ""
+
msgid ""
"If the route to the current gateway is to be changed, the ETX value of this "
"gateway is multiplied with this value before it is compared to the new one. "
"with the etx_ffeth metric!<br />Defaults to \"1.0\"."
msgstr ""
+msgid ""
+"If this Node uses NAT for connections to the internet. Default is \"yes\"."
+msgstr ""
+
msgid "Interface"
msgstr ""
"really slow. In this case disable it here."
msgstr ""
-msgid "Routen"
-msgstr ""
-
msgid "Routes"
msgstr ""
msgid "Source address"
msgstr ""
+msgid ""
+"Specifies the speed of the uplink in kilobits/s. First parameter is "
+"upstream, second parameter is downstream. Default is \"128 1024\"."
+msgstr ""
+
+msgid "Speed of the uplink"
+msgstr ""
+
msgid "State"
msgstr ""
"It can have a value between 1 and 65535."
msgstr ""
-msgid "Timing and Validity"
+msgid ""
+"This can be used to signal the external IPv6 prefix of the uplink to the "
+"clients. This might allow a client to change it's local IPv6 address to use "
+"the IPv6 gateway without any kind of address translation. The maximum prefix "
+"length is 64 bits. Default is \"::/0\" (no prefix)."
msgstr ""
-msgid "Topologie"
+msgid "Timing and Validity"
msgstr ""
msgid "Topology"
msgid "Uplink"
msgstr ""
+msgid "Uplink uses NAT"
+msgstr ""
+
msgid "Use hysteresis"
msgstr "Dùng hysteresis"
msgid "WLAN"
msgstr ""
+msgid ""
+"Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not "
+"work, please install it."
+msgstr ""
+
msgid "Weight"
msgstr ""
"instead."
msgstr ""
+msgid ""
+"Which kind of uplink is exported to the other mesh nodes. An uplink is "
+"detected by looking for a local HNA of 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. "
+"Default setting is \"both\"."
+msgstr ""
+
msgid "Willingness"
msgstr "Sẵn sàng"