luci-0.10: merge r6808 and r6809
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 29 Jan 2011 03:35:17 +0000 (03:35 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 29 Jan 2011 03:35:17 +0000 (03:35 +0000)
24 files changed:
applications/luci-radvd/luasrc/controller/radvd.lua
applications/luci-radvd/luasrc/model/cbi/radvd.lua
applications/luci-radvd/luasrc/model/cbi/radvd/interface.lua
applications/luci-radvd/luasrc/model/cbi/radvd/prefix.lua
applications/luci-radvd/luasrc/model/cbi/radvd/rdnss.lua
applications/luci-radvd/luasrc/model/cbi/radvd/route.lua
po/ca/radvd.po
po/de/radvd.po
po/el/radvd.po
po/en/radvd.po
po/es/radvd.po
po/fr/radvd.po
po/it/radvd.po
po/ja/radvd.po
po/ms/radvd.po
po/no/radvd.po
po/pl/radvd.po
po/pt/radvd.po
po/pt_BR/radvd.po
po/ru/radvd.po
po/templates/base.pot
po/templates/radvd.pot
po/vi/radvd.po
po/zh_CN/radvd.po

index 1b403a8..6ed1176 100644 (file)
@@ -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
index 18df46b..5ee1969 100644 (file)
@@ -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
+       end
+
+       for v in ut.imatch(v) do
                v = luci.ip.IPv6(v)
-               v = v and v:string()
+               if v then
+                       l[#l+1] = v:string()
+               end
+       end
+
+       if #l == 0 then
+               l[1] = "?"
        end
 
-       return v or "?"
+       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,21 +304,78 @@ function o.cfgvalue(self, section)
                                end
                        end
                end
-       else
+       end
+
+       for v in ut.imatch(v) do
                v = luci.ip.IPv6(v)
-               v = v and v:network(128):string()
+               if v then
+                       l[#l+1] = v:network(128):string()
+               end
+       end
+
+       if #l == 0 then
+               l[1] = "?"
        end
 
-       return v or "?"
+       return table.concat(l, ", ")
 end
 
-o = s4:option(DummyValue, "AdvRDNSSOpen", translate("Open"))
+o = s4:option(DummyValue, "AdvRDNSSLifetime", translate("Lifetime"))
 function o.cfgvalue(self, section)
-       local v = Value.cfgvalue(self, section)
-       return v == "1" and translate("yes") or translate("no")
+       local v = Value.cfgvalue(self, section) or "1200"
+       return translate(v)
 end
 
-o = s4:option(DummyValue, "AdvRDNSSLifetime", translate("Lifetime"))
+
+--
+-- 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)
index ae8e062..519664c 100644 (file)
@@ -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"))
 
index d3567cb..6151910 100644 (file)
@@ -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"),
index 91cf25c..5313bbe 100644 (file)
@@ -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"),
index 6e84d0f..37fac57 100644 (file)
@@ -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"),
index db49e6c..17a821b 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index d196e64..e69de29 100644 (file)
-msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8"
-
-msgid "(%d minute window, %d second interval)"
-msgstr ""
-
-msgid "(%s available)"
-msgstr ""
-
-msgid "(empty)"
-msgstr ""
-
-msgid "(no interfaces attached)"
-msgstr ""
-
-msgid "-- Additional Field --"
-msgstr ""
-
-msgid "-- Please choose --"
-msgstr ""
-
-msgid "-- custom --"
-msgstr ""
-
-msgid "1 Minute Load:"
-msgstr ""
-
-msgid "15 Minute Load:"
-msgstr ""
-
-msgid "40MHz 2nd channel above"
-msgstr ""
-
-msgid "40MHz 2nd channel below"
-msgstr ""
-
-msgid "5 Minute Load:"
-msgstr ""
-
-msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
-msgstr ""
-
-msgid ""
-"<abbr title=\"Classless Inter-Domain Routing\">CIDR</abbr>-Notation: address/"
-"prefix"
-msgstr ""
-
-msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
-msgstr ""
-
-msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
-msgstr ""
-
-msgid ""
-"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
-"order of the resolvfile"
-msgstr ""
-
-msgid "<abbr title=\"Domain Name System\">DNS</abbr>-Server"
-msgstr ""
-
-msgid "<abbr title=\"Encrypted\">Encr.</abbr>"
-msgstr ""
-
-msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-msgstr ""
-
-msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
-msgstr ""
-
-msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Broadcast"
-msgstr ""
-
-msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
-msgstr ""
-
-msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
-msgstr ""
-
-msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address"
-msgstr ""
-
-msgid ""
-"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
-"(CIDR)"
-msgstr ""
-
-msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
-msgstr ""
-
-msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
-msgstr ""
-
-msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
-msgstr ""
-
-msgid ""
-"<abbr title=\"Lua Configuration Interface\">LuCI</abbr> is a collection of "
-"free Lua software including an <abbr title=\"Model-View-Controller\">MVC</"
-"abbr>-Webframework and webinterface for embedded devices. <abbr title=\"Lua "
-"Configuration Interface\">LuCI</abbr> is licensed under the Apache-License."
-msgstr ""
-
-msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
-msgstr ""
-
-msgid "<abbr title=\"Point-to-Point Tunneling Protocol\">PPTP</abbr>-Server"
-msgstr ""
-
-msgid "<abbr title=\"Secure Shell\">SSH</abbr>-Keys"
-msgstr ""
-
-msgid "<abbr title=\"Wireless Local Area Network\">WLAN</abbr>-Scan"
-msgstr ""
-
-msgid ""
-"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
-"Protocol\">DHCP</abbr> leases"
-msgstr ""
-
-msgid ""
-"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
-"Domain Name System\">EDNS0</abbr> paket size"
-msgstr ""
-
-msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
-msgstr ""
-
-msgid ""
-"A lightweight HTTP/1.1 webserver written in C and Lua designed to serve LuCI"
-msgstr ""
-
-msgid ""
-"A small webserver which can be used to serve <abbr title=\"Lua Configuration "
-"Interface\">LuCI</abbr>."
-msgstr ""
-
-msgid "AR Support"
-msgstr ""
-
-msgid "ATM Bridges"
-msgstr ""
-
-msgid "ATM Settings"
-msgstr ""
-
-msgid "ATM Virtual Channel Identifier (VCI)"
-msgstr ""
-
-msgid "ATM Virtual Path Identifier (VPI)"
-msgstr ""
-
-msgid ""
-"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
-"Linux network interfaces which can be used in conjunction with DHCP or PPP "
-"to dial into the provider network."
-msgstr ""
-
-msgid "ATM device number"
-msgstr ""
-
-msgid "About"
-msgstr ""
-
-msgid "Access Point"
-msgstr ""
-
-msgid "Access point (APN)"
-msgstr ""
-
-msgid "Action"
-msgstr ""
-
-msgid "Actions"
-msgstr ""
-
-msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
-msgstr ""
-
-msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
-msgstr ""
-
-msgid "Active Connections"
-msgstr ""
-
-msgid "Active Leases"
-msgstr ""
-
-msgid "Ad-Hoc"
-msgstr ""
-
-msgid "Add"
-msgstr ""
-
-msgid "Add local domain suffix to names served from hosts files"
-msgstr ""
-
-msgid "Add new interface..."
-msgstr ""
-
-msgid "Additional Hosts files"
-msgstr ""
-
-msgid "Additional pppd options"
-msgstr ""
-
-msgid "Address"
-msgstr ""
-
-msgid "Addresses"
-msgstr ""
-
-msgid "Admin Password"
-msgstr ""
-
-msgid "Administration"
-msgstr ""
-
-msgid "Advanced Settings"
-msgstr ""
-
-msgid "Advertise IPv6 on network"
-msgstr ""
-
-msgid "Advertised network ID"
-msgstr ""
-
-msgid "Alert"
-msgstr ""
-
-msgid "Alias"
-msgstr ""
-
-msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
-msgstr ""
-
-msgid "Allow all except listed"
-msgstr ""
-
-msgid "Allow listed only"
-msgstr ""
-
-msgid "Allow localhost"
-msgstr ""
-
-msgid ""
-"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
-msgstr ""
-
-msgid "Allowed range is 1 to FFFF"
-msgstr ""
-
-msgid ""
-"Also kernel or service logfiles can be viewed here to get an overview over "
-"their current state."
-msgstr ""
-
-msgid "An additional network will be created if you leave this unchecked."
-msgstr ""
-
-msgid "Antenna 1"
-msgstr ""
-
-msgid "Antenna 2"
-msgstr ""
-
-msgid "Apply"
-msgstr ""
-
-msgid "Applying changes"
-msgstr ""
-
-msgid "Associated Stations"
-msgstr ""
-
-msgid "Authentication"
-msgstr ""
-
-msgid "Authentication Realm"
-msgstr ""
-
-msgid "Authoritative"
-msgstr ""
-
-msgid "Authorization Required"
-msgstr ""
-
-msgid "Automatic Disconnect"
-msgstr ""
-
-msgid "Available"
-msgstr ""
-
-msgid "Available packages"
-msgstr ""
-
-msgid "Average:"
-msgstr ""
-
-msgid "BSSID"
-msgstr ""
-
-msgid "Back"
-msgstr ""
-
-msgid "Back to Overview"
-msgstr ""
-
-msgid "Back to overview"
-msgstr ""
-
-msgid "Back to scan results"
-msgstr ""
-
-msgid "Background Scan"
-msgstr ""
-
-msgid "Backup / Restore"
-msgstr ""
-
-msgid "Backup Archive"
-msgstr ""
-
-msgid "Bad address specified!"
-msgstr ""
-
-msgid "Bit Rate"
-msgstr ""
-
-msgid "Bitrate"
-msgstr ""
-
-msgid "Bridge"
-msgstr ""
-
-msgid "Bridge Port"
-msgstr ""
-
-msgid "Bridge interfaces"
-msgstr ""
-
-msgid "Bridge unit number"
-msgstr ""
-
-msgid "Buttons"
-msgstr ""
-
-msgid "CPU"
-msgstr ""
-
-msgid "CPU usage (%)"
-msgstr ""
-
-msgid "Cancel"
-msgstr ""
-
-msgid "Chain"
-msgstr ""
-
-msgid ""
-"Change the password of the system administrator (User <code>root</code>)"
-msgstr ""
-
-msgid "Changes"
-msgstr ""
-
-msgid "Changes applied."
-msgstr ""
-
-msgid "Channel"
-msgstr ""
-
-msgid "Check"
-msgstr ""
-
-msgid "Checksum"
-msgstr ""
-
-msgid ""
-"Choose the firewall zone you want to assign to this interface. Select "
-"<em>unspecified</em> to remove the interface from the associated zone or "
-"fill out the <em>create</em> field to define a new zone and attach the "
-"interface to it."
-msgstr ""
-
-msgid ""
-"Choose the network you want to attach to this wireless interface. Select "
-"<em>unspecified</em> to not attach any network or fill out the <em>create</"
-"em> field to define a new network."
-msgstr ""
-
-msgid "Client"
-msgstr ""
-
-msgid "Client + WDS"
-msgstr ""
-
-msgid "Collecting data..."
-msgstr ""
-
-msgid "Command"
-msgstr ""
-
-msgid "Common Configuration"
-msgstr ""
-
-msgid "Compression"
-msgstr ""
-
-msgid "Configuration"
-msgstr ""
-
-msgid "Configuration / Apply"
-msgstr ""
-
-msgid "Configuration / Changes"
-msgstr ""
-
-msgid "Configuration / Revert"
-msgstr ""
-
-msgid "Configuration applied."
-msgstr ""
-
-msgid "Configuration file"
-msgstr ""
-
-msgid ""
-"Configure the local DNS server to use the name servers adverticed by the PPP "
-"peer"
-msgstr ""
-
-msgid "Configures this mount as overlay storage for block-extroot"
-msgstr ""
-
-msgid "Confirmation"
-msgstr ""
-
-msgid "Connect script"
-msgstr ""
-
-msgid "Connection Limit"
-msgstr ""
-
-msgid "Connection timeout"
-msgstr ""
-
-msgid "Contributing Developers"
-msgstr ""
-
-msgid "Country"
-msgstr ""
-
-msgid "Country Code"
-msgstr ""
-
-msgid "Cover the following interface"
-msgstr ""
-
-msgid "Cover the following interfaces"
-msgstr ""
-
-msgid "Create / Assign firewall-zone"
-msgstr ""
-
-msgid "Create Interface"
-msgstr ""
-
-msgid "Create Network"
-msgstr ""
-
-msgid "Create a bridge over multiple interfaces"
-msgstr ""
-
-msgid "Create backup"
-msgstr ""
-
-msgid "Critical"
-msgstr ""
-
-msgid "Cron Log Level"
-msgstr ""
-
-msgid "Custom Files"
-msgstr ""
-
-msgid "Custom Interface"
-msgstr ""
-
-msgid "Custom files"
-msgstr ""
-
-msgid ""
-"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
-"\">LED</abbr>s if possible."
-msgstr ""
-
-msgid "DHCP Leases"
-msgstr ""
-
-msgid "DHCP Server"
-msgstr ""
-
-msgid "DHCP assigned"
-msgstr ""
-
-msgid "DHCP-Options"
-msgstr ""
-
-msgid "DNS forwardings"
-msgstr ""
-
-msgid "Debug"
-msgstr ""
-
-msgid "Default state"
-msgstr ""
-
-msgid "Define a name for this network."
-msgstr ""
-
-msgid ""
-"Define additional DHCP options, for example "
-"\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
-"servers to clients."
-msgstr ""
-
-msgid "Delete"
-msgstr ""
-
-msgid "Delete this interface"
-msgstr ""
-
-msgid "Delete this network"
-msgstr ""
-
-msgid "Description"
-msgstr ""
-
-msgid "Design"
-msgstr ""
-
-msgid "Destination"
-msgstr ""
-
-msgid "Detected Files"
-msgstr ""
-
-msgid "Detected files"
-msgstr ""
-
-msgid "Device"
-msgstr ""
-
-msgid "Device Configuration"
-msgstr ""
-
-msgid "Diagnostics"
-msgstr ""
-
-msgid ""
-"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
-"this interface."
-msgstr ""
-
-msgid "Disable HW-Beacon timer"
-msgstr ""
-
-msgid "Discard upstream RFC1918 responses"
-msgstr ""
-
-msgid "Disconnect script"
-msgstr ""
-
-msgid "Distance Optimization"
-msgstr ""
-
-msgid "Distance to farthest network member in meters."
-msgstr ""
-
-msgid "Diversity"
-msgstr ""
-
-msgid ""
-"Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
-"\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
-"Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
-"firewalls"
-msgstr ""
-
-msgid "Do not cache negative replies, e.g. for not existing domains"
-msgstr ""
-
-msgid "Do not forward requests that cannot be answered by public name servers"
-msgstr ""
-
-msgid "Do not forward reverse lookups for local networks"
-msgstr ""
-
-msgid "Do not send probe responses"
-msgstr ""
-
-msgid "Document root"
-msgstr ""
-
-msgid "Domain required"
-msgstr ""
-
-msgid "Domain whitelist"
-msgstr ""
-
-msgid ""
-"Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
-"<abbr title=\"Domain Name System\">DNS</abbr>-Name"
-msgstr ""
-
-msgid "Download and install package"
-msgstr ""
-
-msgid ""
-"Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
-"and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
-msgstr ""
-
-msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
-msgstr ""
-
-msgid ""
-"Dynamically allocate DHCP addresses for clients. If disabled, only clients "
-"having static leases will be served."
-msgstr ""
-
-msgid "EAP-Method"
-msgstr ""
-
-msgid "Edit"
-msgstr ""
-
-msgid "Edit package lists and installation targets"
-msgstr ""
-
-msgid "Edit this interface"
-msgstr ""
-
-msgid "Edit this network"
-msgstr ""
-
-msgid "Emergency"
-msgstr ""
-
-msgid "Enable 4K VLANs"
-msgstr ""
-
-msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
-msgstr ""
-
-msgid "Enable IPv6 on PPP link"
-msgstr ""
-
-msgid "Enable Keep-Alive"
-msgstr ""
-
-msgid "Enable TFTP server"
-msgstr ""
-
-msgid "Enable VLAN functionality"
-msgstr ""
-
-msgid "Enable device"
-msgstr ""
-
-msgid "Enable this mount"
-msgstr ""
-
-msgid "Enable this swap"
-msgstr ""
-
-msgid "Enable this switch"
-msgstr ""
-
-msgid "Enabled"
-msgstr ""
-
-msgid "Enables the Spanning Tree Protocol on this bridge"
-msgstr ""
-
-msgid "Encapsulation mode"
-msgstr ""
-
-msgid "Encryption"
-msgstr ""
-
-msgid "Error"
-msgstr ""
-
-msgid "Ethernet Adapter"
-msgstr ""
-
-msgid "Ethernet Bridge"
-msgstr ""
-
-msgid "Ethernet Switch"
-msgstr ""
-
-msgid "Expand hosts"
-msgstr ""
-
-msgid ""
-"Expiry time of leased addresses, minimum is 2 Minutes (<code>2m</code>)."
-msgstr ""
-
-msgid "External system log server"
-msgstr ""
-
-msgid "External system log server port"
-msgstr ""
-
-msgid "Fast Frames"
-msgstr ""
-
-msgid "Filename of the boot image advertised to clients"
-msgstr ""
-
-msgid "Files to be kept when flashing a new firmware"
-msgstr ""
-
-msgid "Filesystem"
-msgstr ""
-
-msgid "Filter"
-msgstr ""
-
-msgid "Filter private"
-msgstr ""
-
-msgid "Filter useless"
-msgstr ""
-
-msgid "Find and join network"
-msgstr ""
-
-msgid "Find package"
-msgstr ""
-
-msgid "Finish"
-msgstr ""
-
-msgid "Firewall"
-msgstr ""
-
-msgid "Firewall Settings"
-msgstr ""
-
-msgid "Firewall Status"
-msgstr ""
-
-msgid "Firmware image"
-msgstr ""
-
-msgid "Fixed source port for outbound DNS queries"
-msgstr ""
-
-msgid "Flags"
-msgstr ""
-
-msgid "Flash Firmware"
-msgstr ""
-
-msgid "Force"
-msgstr ""
-
-msgid "Force DHCP on this network even if another server is detected."
-msgstr ""
-
-msgid "Forwarding mode"
-msgstr ""
-
-msgid "Fragmentation Threshold"
-msgstr ""
-
-msgid "Frame Bursting"
-msgstr ""
-
-msgid "Free space"
-msgstr ""
-
-msgid "Frequency Hopping"
-msgstr ""
-
-msgid "General"
-msgstr ""
-
-msgid "General Settings"
-msgstr ""
-
-msgid "General Setup"
-msgstr ""
-
-msgid "Go to relevant configuration page"
-msgstr ""
-
-msgid "HE.net Tunnel ID"
-msgstr ""
-
-msgid "HT capabilities"
-msgstr ""
-
-msgid "HT mode"
-msgstr ""
-
-msgid "Handler"
-msgstr ""
-
-msgid "Hang Up"
-msgstr ""
-
-msgid ""
-"Here you can backup and restore your router configuration and - if possible "
-"- reset the router to the default settings."
-msgstr ""
-
-msgid ""
-"Here you can configure the basic aspects of your device like its hostname or "
-"the timezone."
-msgstr ""
-
-msgid ""
-"Here you can customize the settings and the functionality of <abbr title="
-"\"Lua Configuration Interface\">LuCI</abbr>."
-msgstr ""
-
-msgid ""
-"Here you can find information about the current system status like <abbr "
-"title=\"Central Processing Unit\">CPU</abbr> clock frequency, memory usage "
-"or network interface data."
-msgstr ""
-
-msgid ""
-"Here you can paste public <abbr title=\"Secure Shell\">SSH</abbr>-Keys (one "
-"per line) for <abbr title=\"Secure Shell\">SSH</abbr> public-key "
-"authentication."
-msgstr ""
-
-msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-msgstr ""
-
-msgid "Host entries"
-msgstr ""
-
-msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
-msgstr ""
-
-msgid "Hostname"
-msgstr ""
-
-msgid "Hostnames"
-msgstr ""
-
-msgid "ID"
-msgstr ""
-
-msgid "IP Configuration"
-msgstr ""
-
-msgid "IP address"
-msgstr ""
-
-msgid "IP-Aliases"
-msgstr ""
-
-msgid "IPv4"
-msgstr ""
-
-msgid "IPv4-Address"
-msgstr ""
-
-msgid "IPv6"
-msgstr ""
-
-msgid "IPv6 Setup"
-msgstr ""
-
-msgid "Identity"
-msgstr ""
-
-msgid ""
-"If specified, mount the device by its UUID instead of a fixed device node"
-msgstr ""
-
-msgid ""
-"If specified, mount the device by the partition label instead of a fixed "
-"device node"
-msgstr ""
-
-msgid ""
-"If your physical memory is insufficient unused data can be temporarily "
-"swapped to a swap-device resulting in a higher amount of usable <abbr title="
-"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
-"slow process as the swap-device cannot be accessed with the high datarates "
-"of the <abbr title=\"Random Access Memory\">RAM</abbr>."
-msgstr ""
-
-msgid "Ignore Hosts files"
-msgstr ""
-
-msgid "Ignore interface"
-msgstr ""
-
-msgid "Ignore resolve file"
-msgstr ""
-
-msgid "In"
-msgstr ""
-
-msgid "Inbound:"
-msgstr ""
-
-msgid "Info"
-msgstr ""
-
-msgid "Install"
-msgstr ""
-
-msgid "Installation targets"
-msgstr ""
-
-msgid "Installed packages"
-msgstr ""
-
-msgid "Interface"
-msgstr ""
-
-msgid "Interface Configuration"
-msgstr ""
-
-msgid "Interface Overview"
-msgstr ""
-
-msgid "Interface Status"
-msgstr ""
-
-msgid "Interface is reconnecting..."
-msgstr ""
-
-msgid "Interface is shutting down..."
-msgstr ""
-
-msgid "Interface not present or not connected yet."
-msgstr ""
-
-msgid "Interface reconnected"
-msgstr ""
-
-msgid "Interface shut down"
-msgstr ""
-
-msgid "Interfaces"
-msgstr ""
-
-msgid "Invalid"
-msgstr ""
-
-msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
-msgstr ""
-
-msgid "Invalid username and/or password! Please try again."
-msgstr ""
-
-msgid ""
-"It appears that you try to flash an image that does not fit into the flash "
-"memory, please verify the image file!"
-msgstr ""
-
-msgid "Java Script required!"
-msgstr ""
-
-msgid "Join Network"
-msgstr ""
-
-msgid "Join Network: Settings"
-msgstr ""
-
-msgid "Join Network: Wireless Scan"
-msgstr ""
-
-msgid "KB"
-msgstr ""
-
-msgid "Keep configuration files"
-msgstr ""
-
-msgid "Keep-Alive"
-msgstr ""
-
-msgid "Kernel"
-msgstr ""
-
-msgid "Kernel Log"
-msgstr ""
-
-msgid "Key"
-msgstr ""
-
-msgid "Key #%d"
-msgstr ""
-
-msgid "Kill"
-msgstr ""
-
-msgid "LLC"
-msgstr ""
-
-msgid "Label"
-msgstr ""
-
-msgid "Language"
-msgstr ""
-
-msgid "Language and Style"
-msgstr ""
-
-msgid "Lead Development"
-msgstr ""
-
-msgid "Leasefile"
-msgstr ""
-
-msgid "Leasetime"
-msgstr ""
-
-msgid "Leasetime remaining"
-msgstr ""
-
-msgid "Legend:"
-msgstr ""
-
-msgid ""
-"Let pppd replace the current default route to use the PPP interface after "
-"successful connect"
-msgstr ""
-
-msgid "Let pppd run this script after establishing the PPP link"
-msgstr ""
-
-msgid "Let pppd run this script before tearing down the PPP link"
-msgstr ""
-
-msgid "Limit"
-msgstr ""
-
-msgid "Link"
-msgstr ""
-
-msgid "Link On"
-msgstr ""
-
-msgid ""
-"List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
-"requests to"
-msgstr ""
-
-msgid "List of domains to allow RFC1918 responses for"
-msgstr ""
-
-msgid "Listening port for inbound DNS queries"
-msgstr ""
-
-msgid "Load"
-msgstr ""
-
-msgid "Loading"
-msgstr ""
-
-msgid "Local Time"
-msgstr ""
-
-msgid "Local domain"
-msgstr ""
-
-msgid ""
-"Local domain specification. Names matching this domain are never forwared "
-"and resolved from DHCP or hosts files only"
-msgstr ""
-
-msgid "Local domain suffix appended to DHCP names and hosts file entries"
-msgstr ""
-
-msgid "Local server"
-msgstr ""
-
-msgid ""
-"Localise hostname depending on the requesting subnet if multiple IPs are "
-"available"
-msgstr ""
-
-msgid "Localise queries"
-msgstr ""
-
-msgid "Log output level"
-msgstr ""
-
-msgid "Log queries"
-msgstr ""
-
-msgid "Logging"
-msgstr ""
-
-msgid "Login"
-msgstr ""
-
-msgid "Logout"
-msgstr ""
-
-msgid "Lowest leased address as offset from the network address."
-msgstr ""
-
-msgid "MAC"
-msgstr ""
-
-msgid "MAC Address"
-msgstr ""
-
-msgid "MAC-Address"
-msgstr ""
-
-msgid "MAC-Address Filter"
-msgstr ""
-
-msgid "MAC-Filter"
-msgstr ""
-
-msgid "MAC-List"
-msgstr ""
-
-msgid "MTU"
-msgstr ""
-
-msgid ""
-"Make sure that you provide the correct pin code here or you might lock your "
-"sim card!"
-msgstr ""
-
-msgid "Master"
-msgstr ""
-
-msgid "Master + WDS"
-msgstr ""
-
-msgid "Maximum Rate"
-msgstr ""
-
-msgid "Maximum allowed number of active DHCP leases"
-msgstr ""
-
-msgid "Maximum allowed number of concurrent DNS queries"
-msgstr ""
-
-msgid "Maximum allowed size of EDNS.0 UDP packets"
-msgstr ""
-
-msgid "Maximum hold time"
-msgstr ""
-
-msgid "Maximum number of leased addresses."
-msgstr ""
-
-msgid "Memory"
-msgstr ""
-
-msgid "Memory usage (%)"
-msgstr ""
-
-msgid "Metric"
-msgstr ""
-
-msgid "Minimum Rate"
-msgstr ""
-
-msgid "Minimum hold time"
-msgstr ""
-
-msgid "Mode"
-msgstr ""
-
-msgid "Modem device"
-msgstr ""
-
-msgid "Monitor"
-msgstr ""
-
-msgid ""
-"Most of them are network servers, that offer a certain service for your "
-"device or network like shell access, serving webpages like <abbr title=\"Lua "
-"Configuration Interface\">LuCI</abbr>, doing mesh routing, sending e-"
-"mails, ..."
-msgstr ""
-
-msgid "Mount Entry"
-msgstr ""
-
-msgid "Mount Point"
-msgstr ""
-
-msgid "Mount Points"
-msgstr ""
-
-msgid "Mount Points - Mount Entry"
-msgstr ""
-
-msgid "Mount Points - Swap Entry"
-msgstr ""
-
-msgid ""
-"Mount Points define at which point a memory device will be attached to the "
-"filesystem"
-msgstr ""
-
-msgid "Mount options"
-msgstr ""
-
-msgid "Mount point"
-msgstr ""
-
-msgid "Mounted file systems"
-msgstr ""
-
-msgid "Multicast Rate"
-msgstr ""
-
-msgid "NAS ID"
-msgstr ""
-
-msgid "Name"
-msgstr ""
-
-msgid "Name of the new interface"
-msgstr ""
-
-msgid "Name of the new network"
-msgstr ""
-
-msgid "Navigation"
-msgstr ""
-
-msgid "Network"
-msgstr ""
-
-msgid "Network Utilities"
-msgstr ""
-
-msgid "Network boot image"
-msgstr ""
-
-msgid "Networks"
-msgstr ""
-
-msgid "Next »"
-msgstr ""
-
-msgid "No address configured on this interface."
-msgstr ""
-
-msgid "No chains in this table"
-msgstr ""
-
-msgid "No files found"
-msgstr ""
-
-msgid "No information available"
-msgstr ""
-
-msgid "No negative cache"
-msgstr ""
-
-msgid "No network configured on this device"
-msgstr ""
-
-msgid "No password set!"
-msgstr ""
-
-msgid "No rules in this chain"
-msgstr ""
-
-msgid "Noise"
-msgstr ""
-
-msgid "None"
-msgstr ""
-
-msgid "Normal"
-msgstr ""
-
-msgid "Not associated"
-msgstr ""
-
-msgid "Not configured"
-msgstr ""
-
-msgid ""
-"Note: If you choose an interface here which is part of another network, it "
-"will be moved into this network."
-msgstr ""
-
-msgid "Notice"
-msgstr ""
-
-msgid "Number of failed connection tests to initiate automatic reconnect"
-msgstr ""
-
-msgid "OK"
-msgstr ""
-
-msgid "OPKG error code %i"
-msgstr ""
-
-msgid "OPKG-Configuration"
-msgstr ""
-
-msgid "Off-State Delay"
-msgstr ""
-
-msgid ""
-"On this page you can configure the network interfaces. You can bridge "
-"several interfaces by ticking the \"bridge interfaces\" field and enter the "
-"names of several network interfaces separated by spaces. You can also use "
-"<abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
-"<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
-"<samp>eth0.1</samp>)."
-msgstr ""
-
-msgid "On-State Delay"
-msgstr ""
-
-msgid "One or more fields contain invalid values!"
-msgstr ""
-
-msgid "One or more required fields have no value!"
-msgstr ""
-
-msgid "Open"
-msgstr ""
-
-msgid "Option changed"
-msgstr ""
-
-msgid "Option removed"
-msgstr ""
-
-msgid "Options"
-msgstr ""
-
-msgid "Other:"
-msgstr ""
-
-msgid "Out"
-msgstr ""
-
-msgid "Outbound:"
-msgstr ""
-
-msgid "Outdoor Channels"
-msgstr ""
-
-msgid ""
-"Override the netmask sent to clients. Normally it is calculated from the "
-"subnet that is served."
-msgstr ""
-
-msgid "Overview"
-msgstr ""
-
-msgid "Owner"
-msgstr ""
-
-msgid "PID"
-msgstr ""
-
-msgid "PIN code"
-msgstr ""
-
-msgid "PPP Settings"
-msgstr ""
-
-msgid "PPPoA Encapsulation"
-msgstr ""
-
-msgid "Package libiwinfo required!"
-msgstr ""
-
-msgid "Package lists"
-msgstr ""
-
-msgid "Package lists updated"
-msgstr ""
-
-msgid "Package name"
-msgstr ""
-
-msgid "Packets"
-msgstr ""
-
-msgid "Password"
-msgstr ""
-
-msgid "Password authentication"
-msgstr ""
-
-msgid "Password of Private Key"
-msgstr ""
-
-msgid "Password successfully changed"
-msgstr ""
-
-msgid "Path to CA-Certificate"
-msgstr ""
-
-msgid "Path to Private Key"
-msgstr ""
-
-msgid "Path to executable which handles the button event"
-msgstr ""
-
-msgid "Peak:"
-msgstr ""
-
-msgid "Perform reboot"
-msgstr ""
-
-msgid "Physical Settings"
-msgstr ""
-
-msgid "Pkts."
-msgstr ""
-
-msgid "Please enter your username and password."
-msgstr ""
-
-msgid "Please wait: Device rebooting..."
-msgstr ""
-
-msgid "Plugin path"
-msgstr ""
-
-msgid "Policy"
-msgstr ""
-
-msgid "Port"
-msgstr ""
-
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
-msgid ""
-"Port <abbr title=\"Primary VLAN IDs\">PVIDs</abbr> specify the default VLAN "
-"ID added to received untagged frames."
-msgstr ""
-
-msgid "Port PVIDs on %q"
-msgstr ""
-
-msgid "Ports"
-msgstr ""
-
-msgid "Post-commit actions"
-msgstr ""
-
-msgid "Power"
-msgstr ""
-
-msgid "Prevents client-to-client communication"
-msgstr ""
-
-msgid "Primary"
-msgstr ""
-
-msgid "Proceed"
-msgstr ""
-
-msgid "Proceed reverting all settings and resetting to firmware defaults?"
-msgstr ""
-
-msgid "Processes"
-msgstr ""
-
-msgid "Processor"
-msgstr ""
-
-msgid "Project Homepage"
-msgstr ""
-
-msgid "Prot."
-msgstr ""
-
-msgid "Protocol"
-msgstr ""
-
-msgid "Provide new network"
-msgstr ""
-
-msgid "Pseudo Ad-Hoc"
-msgstr ""
-
-msgid "Pseudo Ad-Hoc (ahdemo)"
-msgstr ""
-
-msgid "RTS/CTS Threshold"
-msgstr ""
-
-msgid "RX"
-msgstr ""
-
-msgid "Radius-Port"
-msgstr ""
-
-msgid "Radius-Server"
-msgstr ""
-
-msgid ""
-"Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
-"Configuration Protocol\">DHCP</abbr>-Server"
-msgstr ""
-
-msgid ""
-"Really delete this interface? The deletion cannot be undone!\n"
-"You might loose access to this router if you are connected via this "
-"interface."
-msgstr ""
-
-msgid ""
-"Really delete this wireless network? The deletion cannot be undone!\n"
-"You might loose access to this router if you are connected via this network."
-msgstr ""
-
-msgid ""
-"Really shutdown interface \"%s\" ?\n"
-"You might loose access to this router if you are connected via this "
-"interface."
-msgstr ""
-
-msgid "Realtime Connections"
-msgstr ""
-
-msgid "Realtime Load"
-msgstr ""
-
-msgid "Realtime Traffic"
-msgstr ""
-
-msgid "Rebind protection"
-msgstr ""
-
-msgid "Reboot"
-msgstr ""
-
-msgid "Reboots the operating system of your device"
-msgstr ""
-
-msgid "Receive"
-msgstr ""
-
-msgid "Receiver Antenna"
-msgstr ""
-
-msgid "Reconnect this interface"
-msgstr ""
-
-msgid "Reconnecting interface"
-msgstr ""
-
-msgid "References"
-msgstr ""
-
-msgid "Regulatory Domain"
-msgstr ""
-
-msgid "Remove"
-msgstr ""
-
-msgid "Repeat scan"
-msgstr ""
-
-msgid "Replace default route"
-msgstr ""
-
-msgid "Replace entry"
-msgstr ""
-
-msgid "Replace wireless configuration"
-msgstr ""
-
-msgid "Reset"
-msgstr ""
-
-msgid "Reset Counters"
-msgstr ""
-
-msgid "Reset router to defaults"
-msgstr ""
-
-msgid "Reset switch during setup"
-msgstr ""
-
-msgid "Resolv and Hosts Files"
-msgstr ""
-
-msgid "Resolve file"
-msgstr ""
-
-msgid "Restart Firewall"
-msgstr ""
-
-msgid "Restore backup"
-msgstr ""
-
-msgid "Reveal/hide password"
-msgstr ""
-
-msgid "Revert"
-msgstr ""
-
-msgid "Root"
-msgstr ""
-
-msgid "Root directory for files served via TFTP"
-msgstr ""
-
-msgid "Routes"
-msgstr ""
-
-msgid ""
-"Routes specify over which interface and gateway a certain host or network "
-"can be reached."
-msgstr ""
-
-msgid "Rule #"
-msgstr ""
-
-msgid "Run a filesystem check before mounting the device"
-msgstr ""
-
-msgid "Run filesystem check"
-msgstr ""
-
-msgid "SSID"
-msgstr ""
-
-msgid "STP"
-msgstr ""
-
-msgid "Save"
-msgstr ""
-
-msgid "Save & Apply"
-msgstr ""
-
-msgid "Scan"
-msgstr ""
-
-msgid "Scheduled Tasks"
-msgstr ""
-
-msgid "Search file..."
-msgstr ""
-
-msgid ""
-"Seconds to wait for the modem to become ready before attempting to connect"
-msgstr ""
-
-msgid "Section added"
-msgstr ""
-
-msgid "Section removed"
-msgstr ""
-
-msgid "See \"mount\" manpage for details"
-msgstr ""
-
-msgid "Separate Clients"
-msgstr ""
-
-msgid "Separate WDS"
-msgstr ""
-
-msgid "Server"
-msgstr ""
-
-msgid "Server IPv4-Address"
-msgstr ""
-
-msgid "Service type"
-msgstr ""
-
-msgid "Services"
-msgstr ""
-
-msgid "Services and daemons perform certain tasks on your device."
-msgstr ""
-
-msgid "Settings"
-msgstr ""
-
-msgid "Setup wait time"
-msgstr ""
-
-msgid "Shutdown this interface"
-msgstr ""
-
-msgid "Signal"
-msgstr ""
-
-msgid "Size"
-msgstr ""
-
-msgid "Skip"
-msgstr ""
-
-msgid "Skip to content"
-msgstr ""
-
-msgid "Skip to navigation"
-msgstr ""
-
-msgid "Slot time"
-msgstr ""
-
-msgid "Software"
-msgstr ""
-
-msgid "Some fields are invalid, cannot save values!"
-msgstr ""
-
-msgid ""
-"Sorry. OpenWrt does not support a system upgrade on this platform.<br /> You "
-"need to manually flash your device."
-msgstr ""
-
-msgid "Source"
-msgstr ""
-
-msgid "Specifies the button state to handle"
-msgstr ""
-
-msgid "Specifies the directory the device is attached to"
-msgstr ""
-
-msgid "Specify additional command line arguments for pppd here"
-msgstr ""
-
-msgid "Specify the secret encryption key here."
-msgstr ""
-
-msgid "Start"
-msgstr ""
-
-msgid "Static IPv4 Routes"
-msgstr ""
-
-msgid "Static IPv6 Routes"
-msgstr ""
-
-msgid "Static Leases"
-msgstr ""
-
-msgid "Static Routes"
-msgstr ""
-
-msgid "Static WDS"
-msgstr ""
-
-msgid ""
-"Static leases are used to assign fixed IP addresses and symbolic hostnames "
-"to DHCP clients. They are also required for non-dynamic interface "
-"configurations where only hosts with a corresponding lease are served."
-msgstr ""
-
-msgid "Status"
-msgstr ""
-
-msgid "Strict order"
-msgstr ""
-
-msgid "Submit"
-msgstr ""
-
-msgid "Swap Entry"
-msgstr ""
-
-msgid "Switch"
-msgstr ""
-
-msgid "Switch %q"
-msgstr ""
-
-msgid "System"
-msgstr ""
-
-msgid "System Log"
-msgstr ""
-
-msgid "System Properties"
-msgstr ""
-
-msgid "System log buffer size"
-msgstr ""
-
-msgid "TCP:"
-msgstr ""
-
-msgid "TFTP Settings"
-msgstr ""
-
-msgid "TFTP server root"
-msgstr ""
-
-msgid "TTL"
-msgstr ""
-
-msgid "TX"
-msgstr ""
-
-msgid "Table"
-msgstr ""
-
-msgid "Target"
-msgstr ""
-
-msgid "Terminate"
-msgstr ""
-
-msgid "Thanks To"
-msgstr ""
-
-msgid ""
-"The <em>Device Configuration</em> section covers physical settings of the "
-"radio hardware such as channel, transmit power or antenna selection which is "
-"shared among all defined wireless networks (if the radio hardware is multi-"
-"SSID capable). Per network settings like encryption or operation mode are "
-"grouped in the <em>Interface Configuration</em>."
-msgstr ""
-
-msgid ""
-"The <em>libiwinfo</em> package is not installed. You must install this "
-"component for working wireless configuration!"
-msgstr ""
-
-msgid ""
-"The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
-"code> and <code>_</code>"
-msgstr ""
-
-msgid ""
-"The device file of the memory or partition (<abbr title=\"for example\">e.g."
-"</abbr> <code>/dev/sda1</code>)"
-msgstr ""
-
-msgid "The device node of your modem, e.g. /dev/ttyUSB0"
-msgstr ""
-
-msgid ""
-"The filesystem that was used to format the memory (<abbr title=\"for example"
-"\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem\">ext3</abbr></"
-"samp>)"
-msgstr ""
-
-msgid ""
-"The flash image was uploaded. Below is the checksum and file size listed, "
-"compare them with the original file to ensure data integrity.<br /> Click "
-"\"Proceed\" below to start the flash procedure."
-msgstr ""
-
-msgid "The following changes have been comitted"
-msgstr ""
-
-msgid "The following changes have been reverted"
-msgstr ""
-
-msgid ""
-"The following files are detected by the system and will be kept "
-"automatically during sysupgrade"
-msgstr ""
-
-msgid "The following rules are currently active on this system."
-msgstr ""
-
-msgid ""
-"The hardware is not multi-SSID capable and existing configuration will be "
-"replaced if you proceed."
-msgstr ""
-
-msgid ""
-"The network ports on your router can be combined to several <abbr title="
-"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
-"communicate directly with each other. <abbr title=\"Virtual Local Area "
-"Network\">VLAN</abbr>s are often used to separate different network "
-"segments. Often there is by default one Uplink port for a connection to the "
-"next greater network like the internet and other ports for a local network."
-msgstr ""
-
-msgid ""
-"The realm which will be displayed at the authentication prompt for protected "
-"pages."
-msgstr ""
-
-msgid ""
-"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
-"few minutes until you try to reconnect. It might be necessary to renew the "
-"address of your computer to reach the device again, depending on your "
-"settings."
-msgstr ""
-
-msgid ""
-"The uploaded image file does not contain a supported format. Make sure that "
-"you choose the generic image format for your platform."
-msgstr ""
-
-msgid "There are no active leases."
-msgstr ""
-
-msgid "There are no pending changes to apply!"
-msgstr ""
-
-msgid "There are no pending changes to revert!"
-msgstr ""
-
-msgid "There are no pending changes!"
-msgstr ""
-
-msgid ""
-"There is no password set on this router. Please configure a root password to "
-"protect the web interface and enable SSH."
-msgstr ""
-
-msgid ""
-"These commands will be executed automatically when a given <abbr title="
-"\"Unified Configuration Interface\">UCI</abbr> configuration is committed "
-"allowing changes to be applied instantly."
-msgstr ""
-
-msgid ""
-"This is a list of shell glob patterns for matching files and directories to "
-"include during sysupgrade"
-msgstr ""
-
-msgid ""
-"This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
-"abbr> in the local network"
-msgstr ""
-
-msgid "This is the system crontab in which scheduled tasks can be defined."
-msgstr ""
-
-msgid ""
-"This list gives an overview over currently running system processes and "
-"their status."
-msgstr ""
-
-msgid "This page allows the configuration of custom button actions"
-msgstr ""
-
-msgid "This page gives an overview over currently active network connections."
-msgstr ""
-
-msgid "This section contains no values yet"
-msgstr ""
-
-msgid "Time (in seconds) after which an unused connection will be closed"
-msgstr ""
-
-msgid "Time Server (rdate)"
-msgstr ""
-
-msgid "Timezone"
-msgstr ""
-
-msgid "Traffic"
-msgstr ""
-
-msgid "Transfer"
-msgstr ""
-
-msgid "Transmission Rate"
-msgstr ""
-
-msgid "Transmit"
-msgstr ""
-
-msgid "Transmit Power"
-msgstr ""
-
-msgid "Transmitter Antenna"
-msgstr ""
-
-msgid "Trigger"
-msgstr ""
-
-msgid "Trigger Mode"
-msgstr ""
-
-msgid "Tunnel Settings"
-msgstr ""
-
-msgid "Turbo Mode"
-msgstr ""
-
-msgid "Tx-Power"
-msgstr ""
-
-msgid "Type"
-msgstr ""
-
-msgid "UDP:"
-msgstr ""
-
-msgid "UUID"
-msgstr ""
-
-msgid "Unknown Error"
-msgstr ""
-
-msgid "Unsaved Changes"
-msgstr ""
-
-msgid "Update package lists"
-msgstr ""
-
-msgid "Upgrade installed packages"
-msgstr ""
-
-msgid "Upload an OpenWrt image file to reflash the device."
-msgstr ""
-
-msgid "Upload image"
-msgstr ""
-
-msgid "Uploaded File"
-msgstr ""
-
-msgid "Uptime"
-msgstr ""
-
-msgid "Use <code>/etc/ethers</code>"
-msgstr ""
-
-msgid "Use ISO/IEC 3166 alpha2 country codes."
-msgstr ""
-
-msgid "Use as root filesystem"
-msgstr ""
-
-msgid "Use peer DNS"
-msgstr ""
-
-msgid ""
-"Use the <em>Add</em> Button to add a new lease entry. The <em>MAC-Address</"
-"em> indentifies the host, the <em>IPv4-Address</em> specifies to the fixed "
-"address to use and the <em>Hostname</em> is assigned as symbolic name to the "
-"requesting host."
-msgstr ""
-
-msgid "Used"
-msgstr ""
-
-msgid "Used Key Slot"
-msgstr ""
-
-msgid "Username"
-msgstr ""
-
-msgid "VC-Mux"
-msgstr ""
-
-msgid "VLAN"
-msgstr ""
-
-msgid "VLAN %d"
-msgstr ""
-
-msgid "VLANs on %q"
-msgstr ""
-
-msgid "Version"
-msgstr ""
-
-msgid "WDS"
-msgstr ""
-
-msgid "WEP Open System"
-msgstr ""
-
-msgid "WEP Shared Key"
-msgstr ""
-
-msgid "WEP passphrase"
-msgstr ""
-
-msgid "WMM Mode"
-msgstr ""
-
-msgid "WPA passphrase"
-msgstr ""
-
-msgid ""
-"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
-"and ad-hoc mode) to be installed."
-msgstr ""
-
-msgid "Waiting for router..."
-msgstr ""
-
-msgid "Warning"
-msgstr ""
-
-msgid "Warning: There are unsaved changes that will be lost while rebooting!"
-msgstr ""
-
-msgid "Web <abbr title=\"User Interface\">UI</abbr>"
-msgstr ""
-
-msgid "Wifi"
-msgstr ""
-
-msgid "Wifi networks in your local environment"
-msgstr ""
-
-msgid "Wireless Adapter"
-msgstr ""
-
-msgid "Wireless Network"
-msgstr ""
-
-msgid "Wireless Overview"
-msgstr ""
-
-msgid "Wireless Security"
-msgstr ""
-
-msgid "Wireless is disabled or not associated"
-msgstr ""
-
-msgid "Write received DNS requests to syslog"
-msgstr ""
-
-msgid "XR Support"
-msgstr ""
-
-msgid ""
-"You can specify multiple DNS servers here, press enter to add a new entry. "
-"Servers entered here will override automatically assigned ones."
-msgstr ""
-
-msgid ""
-"You must enable Java Script in your browser or LuCI will not work properly."
-msgstr ""
-
-msgid ""
-"You need to install \"comgt\" for UMTS/GPRS, \"ppp-mod-pppoe\" for PPPoE, "
-"\"ppp-mod-pppoa\" for PPPoA or \"pptp\" for PPtP support"
-msgstr ""
-
-msgid "any"
-msgstr ""
-
-msgid "auto"
-msgstr ""
-
-msgid "back"
-msgstr ""
-
-msgid "bridged"
-msgstr ""
-
-msgid "buffered"
-msgstr ""
-
-msgid "cached"
-msgstr ""
-
-msgid "creates a bridge over specified interface(s)"
-msgstr ""
-
-msgid "defaults to <code>/etc/httpd.conf</code>"
-msgstr ""
-
-msgid "disable"
-msgstr ""
-
-msgid "expired"
-msgstr ""
-
-msgid ""
-"file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
-"abbr>-leases will be stored"
-msgstr ""
-
-msgid "free"
-msgstr ""
-
-msgid "help"
-msgstr ""
-
-msgid "if target is a network"
-msgstr ""
-
-msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
-msgstr ""
-
-msgid "no"
-msgstr ""
-
-msgid "none"
-msgstr ""
-
-msgid "off"
-msgstr ""
-
-msgid "routed"
-msgstr ""
-
-msgid "static"
-msgstr ""
-
-msgid "tagged"
-msgstr ""
-
-msgid "unlimited"
-msgstr ""
-
-msgid "unspecified"
-msgstr ""
-
-msgid "unspecified -or- create:"
-msgstr ""
-
-msgid "untagged"
-msgstr ""
-
-msgid "yes"
-msgstr ""
-
-msgid "« Back"
-msgstr ""
index ba1aa1a..e253e58 100644 (file)
@@ -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 ""
 
@@ -281,6 +313,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""
 
index 8f6b751..c8efead 100644 (file)
@@ -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 ""
 
@@ -289,6 +321,11 @@ 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"
 msgstr ""
@@ -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 ""