luci-0.10: merge r6808 and r6809
This commit is contained in:
parent
dfef0f4fa4
commit
19884465f1
24 changed files with 909 additions and 2298 deletions
|
@ -24,4 +24,5 @@ function index()
|
|||
entry({"admin", "network", "radvd", "prefix"}, cbi("radvd/prefix"), nil).leaf = true
|
||||
entry({"admin", "network", "radvd", "route"}, cbi("radvd/route"), nil).leaf = true
|
||||
entry({"admin", "network", "radvd", "rdnss"}, cbi("radvd/rdnss"), nil).leaf = true
|
||||
entry({"admin", "network", "radvd", "dnssl"}, cbi("radvd/dnssl"), nil).leaf = true
|
||||
end
|
||||
|
|
|
@ -18,6 +18,7 @@ m = Map("radvd", translate("Radvd"),
|
|||
"as described in RFC 4861."))
|
||||
|
||||
local nm = require "luci.model.network".init(m.uci)
|
||||
local ut = require "luci.util"
|
||||
|
||||
|
||||
--
|
||||
|
@ -69,9 +70,10 @@ o.template = "cbi/network_netinfo"
|
|||
o.width = "10%"
|
||||
|
||||
o = s:option(DummyValue, "UnicastOnly", translate("Multicast"))
|
||||
function o.cfgvalue(...)
|
||||
local v = Value.cfgvalue(...)
|
||||
return v == "1" and translate("no") or translate("yes")
|
||||
function o.cfgvalue(self, section)
|
||||
local v = Value.cfgvalue(self, section)
|
||||
local v2 = m.uci:get("radvd", section, "client")
|
||||
return (v == "1" or (v2 and #v2 > 0)) and translate("no") or translate("yes")
|
||||
end
|
||||
|
||||
o = s:option(DummyValue, "AdvSendAdvert", translate("Advertising"))
|
||||
|
@ -133,7 +135,9 @@ o.width = "10%"
|
|||
o = s2:option(DummyValue, "prefix", translate("Prefix"))
|
||||
o.width = "60%"
|
||||
function o.cfgvalue(self, section)
|
||||
local v = Value.cfgvalue(self, section)
|
||||
local v = m.uci:get_list("radvd", section, "prefix")
|
||||
local l = { }
|
||||
|
||||
if not v then
|
||||
local net = nm:get_network(m.uci:get("radvd", section, "interface"))
|
||||
if net then
|
||||
|
@ -149,12 +153,20 @@ function o.cfgvalue(self, section)
|
|||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
v = luci.ip.IPv6(v)
|
||||
v = v and v:string()
|
||||
end
|
||||
|
||||
return v or "?"
|
||||
for v in ut.imatch(v) do
|
||||
v = luci.ip.IPv6(v)
|
||||
if v then
|
||||
l[#l+1] = v:string()
|
||||
end
|
||||
end
|
||||
|
||||
if #l == 0 then
|
||||
l[1] = "?"
|
||||
end
|
||||
|
||||
return table.concat(l, ", ")
|
||||
end
|
||||
|
||||
o = s2:option(DummyValue, "AdvAutonomous", translate("Autonomous"))
|
||||
|
@ -210,12 +222,22 @@ o.width = "10%"
|
|||
o = s3:option(DummyValue, "prefix", translate("Prefix"))
|
||||
o.width = "60%"
|
||||
function o.cfgvalue(self, section)
|
||||
local v = Value.cfgvalue(self, section)
|
||||
local v = m.uci:get_list("radvd", section, "prefix")
|
||||
local l = { }
|
||||
if v then
|
||||
v = luci.ip.IPv6(v)
|
||||
v = v and v:string()
|
||||
for v in ut.imatch(v) do
|
||||
v = luci.ip.IPv6(v)
|
||||
if v then
|
||||
l[#l+1] = v:string()
|
||||
end
|
||||
end
|
||||
end
|
||||
return v or "?"
|
||||
|
||||
if #l == 0 then
|
||||
l[1] = "?"
|
||||
end
|
||||
|
||||
return table.concat(l, ", ")
|
||||
end
|
||||
|
||||
o = s3:option(DummyValue, "AdvRouteLifetime", translate("Lifetime"))
|
||||
|
@ -265,7 +287,8 @@ o.width = "10%"
|
|||
o = s4:option(DummyValue, "addr", translate("Address"))
|
||||
o.width = "60%"
|
||||
function o.cfgvalue(self, section)
|
||||
local v = Value.cfgvalue(self, section)
|
||||
local v = m.uci:get_list("radvd", section, "addr")
|
||||
local l = { }
|
||||
if not v then
|
||||
local net = nm:get_network(m.uci:get("radvd", section, "interface"))
|
||||
if net then
|
||||
|
@ -281,18 +304,20 @@ function o.cfgvalue(self, section)
|
|||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
v = luci.ip.IPv6(v)
|
||||
v = v and v:network(128):string()
|
||||
end
|
||||
|
||||
return v or "?"
|
||||
end
|
||||
for v in ut.imatch(v) do
|
||||
v = luci.ip.IPv6(v)
|
||||
if v then
|
||||
l[#l+1] = v:network(128):string()
|
||||
end
|
||||
end
|
||||
|
||||
o = s4:option(DummyValue, "AdvRDNSSOpen", translate("Open"))
|
||||
function o.cfgvalue(self, section)
|
||||
local v = Value.cfgvalue(self, section)
|
||||
return v == "1" and translate("yes") or translate("no")
|
||||
if #l == 0 then
|
||||
l[1] = "?"
|
||||
end
|
||||
|
||||
return table.concat(l, ", ")
|
||||
end
|
||||
|
||||
o = s4:option(DummyValue, "AdvRDNSSLifetime", translate("Lifetime"))
|
||||
|
@ -302,4 +327,59 @@ function o.cfgvalue(self, section)
|
|||
end
|
||||
|
||||
|
||||
--
|
||||
-- DNSSL
|
||||
--
|
||||
|
||||
s4 = m:section(TypedSection, "dnssl", translate("DNSSL"))
|
||||
s4.template = "cbi/tblsection"
|
||||
s4.extedit = luci.dispatcher.build_url("admin/network/radvd/dnssl/%s")
|
||||
s4.addremove = true
|
||||
s4.anonymous = true
|
||||
|
||||
function s.create(...)
|
||||
local id = TypedSection.create(...)
|
||||
luci.http.redirect(s4.extedit % id)
|
||||
end
|
||||
|
||||
|
||||
o = s4:option(Flag, "ignore", translate("Enable"))
|
||||
o.rmempty = false
|
||||
o.width = "30px"
|
||||
function o.cfgvalue(...)
|
||||
local v = Flag.cfgvalue(...)
|
||||
return v == "1" and "0" or "1"
|
||||
end
|
||||
function o.write(self, section, value)
|
||||
Flag.write(self, section, value == "1" and "0" or "1")
|
||||
end
|
||||
|
||||
o = s4:option(DummyValue, "interface", translate("Interface"))
|
||||
o.template = "cbi/network_netinfo"
|
||||
o.width = "10%"
|
||||
|
||||
o = s4:option(DummyValue, "suffix", translate("Suffix"))
|
||||
o.width = "60%"
|
||||
function o.cfgvalue(self, section)
|
||||
local v = m.uci:get_list("radvd", section, "suffix")
|
||||
local l = { }
|
||||
|
||||
for v in ut.imatch(v) do
|
||||
l[#l+1] = v
|
||||
end
|
||||
|
||||
if #l == 0 then
|
||||
l[1] = "?"
|
||||
end
|
||||
|
||||
return table.concat(l, ", ")
|
||||
end
|
||||
|
||||
o = s4:option(DummyValue, "AdvDNSSLLifetime", translate("Lifetime"))
|
||||
function o.cfgvalue(self, section)
|
||||
local v = Value.cfgvalue(self, section) or "1200"
|
||||
return translate(v)
|
||||
end
|
||||
|
||||
|
||||
return m
|
||||
|
|
|
@ -13,6 +13,7 @@ $Id$
|
|||
]]--
|
||||
|
||||
local sid = arg[1]
|
||||
local utl = require "luci.util"
|
||||
|
||||
m = Map("radvd", translatef("Radvd - Interface %q", "?"),
|
||||
translate("Radvd is a router advertisement daemon for IPv6. " ..
|
||||
|
@ -84,6 +85,22 @@ function o.write(self, section, value)
|
|||
end
|
||||
|
||||
|
||||
o = s:taboption("general", DynamicList, "client", translate("Clients"),
|
||||
translate("Restrict communication to specified clients, leave empty to use multicast"))
|
||||
|
||||
o.rmempty = true
|
||||
o.datatype = "ip6addr"
|
||||
o.placeholder = "any"
|
||||
function o.cfgvalue(...)
|
||||
local v = Value.cfgvalue(...)
|
||||
local l = { }
|
||||
for v in utl.imatch(v) do
|
||||
l[#l+1] = v
|
||||
end
|
||||
return l
|
||||
end
|
||||
|
||||
|
||||
o = s:taboption("general", Flag, "AdvSendAdvert", translate("Enable advertisements"),
|
||||
translate("Enables router advertisements and solicitations"))
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ $Id$
|
|||
]]--
|
||||
|
||||
local sid = arg[1]
|
||||
local utl = require "luci.util"
|
||||
|
||||
m = Map("radvd", translatef("Radvd - Prefix"),
|
||||
translate("Radvd is a router advertisement daemon for IPv6. " ..
|
||||
|
@ -75,11 +76,20 @@ function o.write(self, section, value)
|
|||
end
|
||||
|
||||
|
||||
o = s:taboption("general", Value, "prefix", translate("Prefix"),
|
||||
translate("Advertised IPv6 prefix. If empty, the current interface prefix is used"))
|
||||
o = s:taboption("general", DynamicList, "prefix", translate("Prefixes"),
|
||||
translate("Advertised IPv6 prefixes. If empty, the current interface prefix is used"))
|
||||
|
||||
o.optional = true
|
||||
o.datatype = "ip6addr"
|
||||
o.optional = true
|
||||
o.datatype = "ip6addr"
|
||||
o.placeholder = translate("default")
|
||||
function o.cfgvalue(self, section)
|
||||
local l = { }
|
||||
local v = m.uci:get_list("radvd", section, "prefix")
|
||||
for v in utl.imatch(v) do
|
||||
l[#l+1] = v
|
||||
end
|
||||
return l
|
||||
end
|
||||
|
||||
|
||||
o = s:taboption("general", Flag, "AdvOnLink", translate("On-link determination"),
|
||||
|
|
|
@ -13,6 +13,7 @@ $Id$
|
|||
]]--
|
||||
|
||||
local sid = arg[1]
|
||||
local utl = require "luci.util"
|
||||
|
||||
m = Map("radvd", translatef("Radvd - RDNSS"),
|
||||
translate("Radvd is a router advertisement daemon for IPv6. " ..
|
||||
|
@ -72,16 +73,21 @@ function o.write(self, section, value)
|
|||
end
|
||||
|
||||
|
||||
o = s:option(Value, "addr", translate("Address"),
|
||||
o = s:option(DynamicList, "addr", translate("Addresses"),
|
||||
translate("Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface is used"))
|
||||
|
||||
o.optional = false
|
||||
o.rmempty = true
|
||||
o.datatype = "ip6addr"
|
||||
|
||||
|
||||
o = s:option(Flag, "AdvRDNSSOpen", translate("Open"),
|
||||
translate("Indicates whether that RDNSS continues to be available to hosts even if they moved to a different subnet "))
|
||||
o.optional = false
|
||||
o.rmempty = true
|
||||
o.datatype = "ip6addr"
|
||||
o.placeholder = translate("default")
|
||||
function o.cfgvalue(self, section)
|
||||
local l = { }
|
||||
local v = m.uci:get_list("radvd", section, "prefix")
|
||||
for v in utl.imatch(v) do
|
||||
l[#l+1] = v
|
||||
end
|
||||
return l
|
||||
end
|
||||
|
||||
|
||||
o = s:option(Value, "AdvRDNSSLifetime", translate("Lifetime"),
|
||||
|
|
|
@ -13,6 +13,7 @@ $Id$
|
|||
]]--
|
||||
|
||||
local sid = arg[1]
|
||||
local utl = require "luci.util"
|
||||
|
||||
m = Map("radvd", translatef("Radvd - Route"),
|
||||
translate("Radvd is a router advertisement daemon for IPv6. " ..
|
||||
|
@ -72,11 +73,20 @@ function o.write(self, section, value)
|
|||
end
|
||||
|
||||
|
||||
o = s:option(Value, "prefix", translate("Prefix"),
|
||||
translate("Advertised IPv6 prefix"))
|
||||
o = s:option(DynamicList, "prefix", translate("Prefixes"),
|
||||
translate("Advertised IPv6 prefixes"))
|
||||
|
||||
o.rmempty = false
|
||||
o.datatype = "ip6addr"
|
||||
o.rmempty = false
|
||||
o.datatype = "ip6addr"
|
||||
o.placeholder = translate("default")
|
||||
function o.cfgvalue(self, section)
|
||||
local l = { }
|
||||
local v = m.uci:get_list("radvd", section, "prefix")
|
||||
for v in utl.imatch(v) do
|
||||
l[#l+1] = v
|
||||
end
|
||||
return l
|
||||
end
|
||||
|
||||
|
||||
o = s:option(Value, "AdvRouteLifetime", translate("Lifetime"),
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:05+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -7,6 +7,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -16,6 +19,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -27,6 +33,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -83,18 +96,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -234,6 +259,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -254,6 +282,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -280,6 +312,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -288,6 +325,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -318,6 +358,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-21 04:06+0100\n"
|
||||
"Last-Translator: <xm@subsignal.org>\n"
|
||||
"Language-Team: German\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"
|
||||
|
||||
|
@ -15,6 +15,9 @@ msgstr ""
|
|||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
|
@ -24,6 +27,9 @@ msgstr ""
|
|||
msgid "Advertise router address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised Domain Suffixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 RDNSS. If empty, the current IPv6 address of the interface "
|
||||
"is used"
|
||||
|
@ -35,6 +41,13 @@ msgstr ""
|
|||
msgid "Advertised IPv6 prefix. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertised IPv6 prefixes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Advertised IPv6 prefixes. If empty, the current interface prefix is used"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advertises Mobile IPv6 Home Agent capability (RFC3775)"
|
||||
msgstr ""
|
||||
|
||||
|
@ -91,18 +104,30 @@ msgstr ""
|
|||
msgid "Autonomous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration flag"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current hop limit"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "DNSSL Configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default preference"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable advertisements"
|
||||
msgstr ""
|
||||
|
||||
|
@ -242,6 +267,9 @@ msgstr ""
|
|||
msgid "Radvd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - DNSSL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Radvd - Interface %q"
|
||||
msgstr ""
|
||||
|
||||
|
@ -262,6 +290,10 @@ msgstr ""
|
|||
msgid "Reachable time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Restrict communication to specified clients, leave empty to use multicast"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retransmit timer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,6 +320,11 @@ msgstr ""
|
|||
msgid "Specifies the logical interface name this section belongs to"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the DNSSL entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Specifies the maximum duration how long the RDNSS entries are used for name "
|
||||
"resolution. Use 0 to specify an infinite lifetime"
|
||||
|
@ -296,6 +333,9 @@ msgstr ""
|
|||
msgid "Specifies the preference associated with the default router"
|
||||
msgstr ""
|
||||
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The maximum time allowed between sending unsolicited multicast router "
|
||||
"advertisements from the interface, in seconds"
|
||||
|
@ -326,6 +366,9 @@ msgstr ""
|
|||
msgid "Validity time"
|
||||
msgstr ""
|
||||
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
msgid "high"
|
||||
msgstr ""
|
||||
|
||||
|
|
Loading…
Reference in a new issue