summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-base')
-rw-r--r--modules/luci-base/luasrc/model/network.lua157
-rw-r--r--modules/luci-base/luasrc/view/sysauth.htm8
-rw-r--r--modules/luci-base/po/ca/base.po46
-rw-r--r--modules/luci-base/po/cs/base.po49
-rw-r--r--modules/luci-base/po/de/base.po49
-rw-r--r--modules/luci-base/po/el/base.po43
-rw-r--r--modules/luci-base/po/en/base.po40
-rw-r--r--modules/luci-base/po/es/base.po49
-rw-r--r--modules/luci-base/po/fr/base.po49
-rw-r--r--modules/luci-base/po/he/base.po40
-rw-r--r--modules/luci-base/po/hu/base.po49
-rw-r--r--modules/luci-base/po/it/base.po60
-rw-r--r--modules/luci-base/po/ja/base.po46
-rw-r--r--modules/luci-base/po/ms/base.po37
-rw-r--r--modules/luci-base/po/no/base.po49
-rw-r--r--modules/luci-base/po/pl/base.po49
-rw-r--r--modules/luci-base/po/pt-br/base.po49
-rw-r--r--modules/luci-base/po/pt/base.po46
-rw-r--r--modules/luci-base/po/ro/base.po46
-rw-r--r--modules/luci-base/po/ru/base.po49
-rw-r--r--modules/luci-base/po/sk/base.po37
-rw-r--r--modules/luci-base/po/sv/base.po37
-rw-r--r--modules/luci-base/po/templates/base.pot37
-rw-r--r--modules/luci-base/po/tr/base.po37
-rw-r--r--modules/luci-base/po/uk/base.po49
-rw-r--r--modules/luci-base/po/vi/base.po37
-rw-r--r--modules/luci-base/po/zh-cn/base.po49
-rw-r--r--modules/luci-base/po/zh-tw/base.po49
28 files changed, 968 insertions, 374 deletions
diff --git a/modules/luci-base/luasrc/model/network.lua b/modules/luci-base/luasrc/model/network.lua
index 1f0c5da73a..2d8336bf33 100644
--- a/modules/luci-base/luasrc/model/network.lua
+++ b/modules/luci-base/luasrc/model/network.lua
@@ -30,7 +30,7 @@ protocol = utl.class()
local _protocols = { }
-local _interfaces, _bridge, _switch, _tunnel
+local _interfaces, _bridge, _switch, _tunnel, _swtopo
local _ubusnetcache, _ubusdevcache, _ubuswificache
local _uci
@@ -193,7 +193,6 @@ function _iface_ignore(x)
return false
end
-
function init(cursor)
_uci = cursor or _uci or uci.cursor()
@@ -201,6 +200,7 @@ function init(cursor)
_bridge = { }
_switch = { }
_tunnel = { }
+ _swtopo = { }
_ubusnetcache = { }
_ubusdevcache = { }
@@ -210,7 +210,6 @@ function init(cursor)
local n, i
for n, i in ipairs(nxo.getifaddrs()) do
local name = i.name:match("[^:]+")
- local prnt = name:match("^([^%.]+)%.")
if _iface_virtual(name) then
_tunnel[name] = true
@@ -226,11 +225,6 @@ function init(cursor)
ip6addrs = { }
}
- if prnt then
- _switch[name] = true
- _switch[prnt] = true
- end
-
if i.family == "packet" then
_interfaces[name].flags = i.flags
_interfaces[name].stats = i.data
@@ -266,6 +260,79 @@ function init(cursor)
end
end
+ -- read switch topology
+ local boardinfo = jsc.parse(nfs.readfile("/etc/board.json") or "")
+ if type(boardinfo) == "table" and type(boardinfo.switch) == "table" then
+ local switch, layout
+ for switch, layout in pairs(boardinfo.switch) do
+ if type(layout) == "table" and type(layout.ports) == "table" then
+ local _, port
+ local ports = { }
+ local nports = { }
+ local netdevs = { }
+
+ for _, port in ipairs(layout.ports) do
+ if type(port) == "table" and
+ type(port.num) == "number" and
+ (type(port.role) == "string" or
+ type(port.device) == "string")
+ then
+ local spec = {
+ num = port.num,
+ role = port.role or "cpu",
+ index = port.index or port.num
+ }
+
+ if port.device then
+ spec.device = port.device
+ spec.tagged = port.need_tag
+ netdevs[tostring(port.num)] = port.device
+ end
+
+ ports[#ports+1] = spec
+
+ if port.role then
+ nports[port.role] = (nports[port.role] or 0) + 1
+ end
+ end
+ end
+
+ table.sort(ports, function(a, b)
+ if a.role ~= b.role then
+ return (a.role < b.role)
+ end
+
+ return (a.index < b.index)
+ end)
+
+ local pnum, role
+ for _, port in ipairs(ports) do
+ if port.role ~= role then
+ role = port.role
+ pnum = 1
+ end
+
+ if role == "cpu" then
+ port.label = "CPU (%s)" % port.device
+ elseif nports[role] > 1 then
+ port.label = "%s %d" %{ role:upper(), pnum }
+ pnum = pnum + 1
+ else
+ port.label = role:upper()
+ end
+
+ port.role = nil
+ port.index = nil
+ end
+
+ _swtopo[switch] = {
+ ports = ports,
+ netdevs = netdevs
+ }
+ end
+ end
+ end
+
return _M
end
@@ -474,41 +541,23 @@ function get_interface(self, i)
end
end
-local function swdev_from_board_json()
- local boardinfo = jsc.parse(nfs.readfile("/etc/board.json") or "")
- if type(boardinfo) == "table" and type(boardinfo.network) == "table" then
- local net, val
- for net, val in pairs(boardinfo.network) do
- if type(val) == "table" and type(val.ifname) == "string" and
- val.create_vlan == true
- then
- return val.ifname
- end
- end
- end
- return nil
-end
-
function get_interfaces(self)
local iface
local ifaces = { }
- local seen = { }
local nfs = { }
- local baseof = { }
-- find normal interfaces
_uci:foreach("network", "interface",
function(s)
for iface in utl.imatch(s.ifname) do
if not _iface_ignore(iface) and not _iface_virtual(iface) and not _wifi_iface(iface) then
- seen[iface] = true
nfs[iface] = interface(iface)
end
end
end)
for iface in utl.kspairs(_interfaces) do
- if not (seen[iface] or _iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then
+ if not (nfs[iface] or _iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then
nfs[iface] = interface(iface)
end
end
@@ -516,34 +565,32 @@ function get_interfaces(self)
-- find vlan interfaces
_uci:foreach("network", "switch_vlan",
function(s)
- if not s.device then
+ if type(s.ports) ~= "string" or
+ type(s.device) ~= "string" or
+ type(_swtopo[s.device]) ~= "table"
+ then
return
end
- local base = baseof[s.device]
- if not base then
- if not s.device:match("^eth%d") then
- local l
- for l in utl.execi("swconfig dev %q help 2>/dev/null" % s.device) do
- if not base then
- base = l:match("^%w+: (%w+)")
- end
+ local pnum, ptag
+ for pnum, ptag in s.ports:gmatch("(%d+)([tu]?)") do
+ local netdev = _swtopo[s.device].netdevs[pnum]
+ if netdev then
+ if not nfs[netdev] then
+ nfs[netdev] = interface(netdev)
end
- if not base or not base:match("^eth%d") then
- base = swdev_from_board_json() or "eth0"
+ _switch[netdev] = true
+
+ if ptag == "t" then
+ local vid = tonumber(s.vid or s.vlan)
+ if vid ~= nil and vid >= 0 and vid <= 4095 then
+ local iface = "%s.%d" %{ netdev, vid }
+ if not nfs[iface] then
+ nfs[iface] = interface(iface)
+ end
+ _switch[iface] = true
+ end
end
- else
- base = s.device
- end
- baseof[s.device] = base
- end
-
- local vid = tonumber(s.vid or s.vlan)
- if vid ~= nil and vid >= 0 and vid <= 4095 then
- local iface = "%s.%d" %{ base, vid }
- if not seen[iface] then
- seen[iface] = true
- nfs[iface] = interface(iface)
end
end
end)
@@ -685,6 +732,10 @@ function get_wan6dev(self)
return stat and interface(stat.l3_device or stat.device)
end
+function get_switch_topologies(self)
+ return _swtopo
+end
+
function network(name, proto)
if name then
@@ -1167,7 +1218,11 @@ function interface.get_type_i18n(self)
elseif x == "switch" then
return lng.translate("Ethernet Switch")
elseif x == "vlan" then
- return lng.translate("VLAN Interface")
+ if _switch[self.ifname] then
+ return lng.translate("Switch VLAN")
+ else
+ return lng.translate("Software VLAN")
+ end
elseif x == "tunnel" then
return lng.translate("Tunnel Interface")
else
diff --git a/modules/luci-base/luasrc/view/sysauth.htm b/modules/luci-base/luasrc/view/sysauth.htm
index e207504911..f6b0f5706a 100644
--- a/modules/luci-base/luasrc/view/sysauth.htm
+++ b/modules/luci-base/luasrc/view/sysauth.htm
@@ -7,14 +7,14 @@
<%+header%>
<form method="post" action="<%=pcdata(luci.http.getenv("REQUEST_URI"))%>">
+ <%- if fuser then %>
+ <div class="errorbox"><%:Invalid username and/or password! Please try again.%></div>
+ <% end -%>
+
<div class="cbi-map">
<h2 name="content"><%:Authorization Required%></h2>
<div class="cbi-map-descr">
<%:Please enter your username and password.%>
- <%- if fuser then %>
- <div class="error"><%:Invalid username and/or password! Please try again.%></div>
- <br />
- <% end -%>
</div>
<fieldset class="cbi-section"><fieldset class="cbi-section-node">
<div class="cbi-value">
diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po
index 4d797a1953..1e44147752 100644
--- a/modules/luci-base/po/ca/base.po
+++ b/modules/luci-base/po/ca/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(finestra de %d minuts, interval de %d segons)"
@@ -534,9 +537,6 @@ msgstr "Botons"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "Ús de CPU (%)"
@@ -1054,6 +1054,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1752,6 +1755,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2251,12 +2257,6 @@ msgstr "Política"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr "Port %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr "Estatus de port"
@@ -2538,6 +2538,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2677,6 +2680,9 @@ msgstr ""
msgid "Software"
msgstr "Programari"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "No es pot desar els valors perquè alguns camps estan invàlids!"
@@ -2789,6 +2795,13 @@ msgstr "Commutador %q"
msgid "Switch %q (%s)"
msgstr "Commutador %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Protocol de commutador"
@@ -3263,9 +3276,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Interfície VLAN"
-
msgid "VLANs on %q"
msgstr "VLANs en %q"
@@ -3397,6 +3407,9 @@ msgstr "Sense fils aturat"
msgid "Write received DNS requests to syslog"
msgstr "Escriure les peticions DNS rebudes al syslog"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Suport XR"
@@ -3579,3 +3592,12 @@ msgstr "sí"
msgid "« Back"
msgstr "« Enrere"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Port %d"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Interfície VLAN"
diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po
index ea79471af5..b0ab326d00 100644
--- a/modules/luci-base/po/cs/base.po
+++ b/modules/luci-base/po/cs/base.po
@@ -11,6 +11,9 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d minutové okno, %d sekundový interval)"
@@ -533,9 +536,6 @@ msgstr "Tlačítka"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "Vytížení CPU (%)"
@@ -1066,6 +1066,9 @@ msgstr "Externí protokolovací server"
msgid "External system log server port"
msgstr "Port externího protokolovacího serveru"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1774,6 +1777,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2274,12 +2280,6 @@ msgstr "Politika"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr "Port %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "Port %d je neoznačený ve více VLAN!"
-
msgid "Port status:"
msgstr "Stav portu:"
@@ -2576,6 +2576,9 @@ msgstr "Spustit kontrolu souborového systému před připojením zařízení"
msgid "Run filesystem check"
msgstr "Spustit kontrolu souborového systému"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2717,6 +2720,9 @@ msgstr "Time sloty"
msgid "Software"
msgstr "Software"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Některá pole obsahují neplatné hodnoty, nelze uložit!"
@@ -2838,6 +2844,13 @@ msgstr "Směrovač číslo %q"
msgid "Switch %q (%s)"
msgstr "Směrovač číslo %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Směrovací protokol"
@@ -3336,9 +3349,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Rozhraní VLAN"
-
msgid "VLANs on %q"
msgstr "VLANy na %q"
@@ -3470,6 +3480,9 @@ msgstr "Bezdrátová síť vypnuta"
msgid "Write received DNS requests to syslog"
msgstr "Zapisovat přijaté požadavky DNS do systemového logu"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Podpora XR"
@@ -3649,3 +3662,15 @@ msgstr "ano"
msgid "« Back"
msgstr "« Zpět"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Port %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "Port %d je neoznačený ve více VLAN!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Rozhraní VLAN"
diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po
index 48331b9ab0..8d72612134 100644
--- a/modules/luci-base/po/de/base.po
+++ b/modules/luci-base/po/de/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d Minuten Abschnitt, %d Sekunden Intervall)"
@@ -534,9 +537,6 @@ msgstr "Knöpfe"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "Prozessor"
-
msgid "CPU usage (%)"
msgstr "CPU-Nutzung (%)"
@@ -1063,6 +1063,9 @@ msgstr "Externer Protokollserver IP"
msgid "External system log server port"
msgstr "Externer Protokollserver Port"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1778,6 +1781,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2280,12 +2286,6 @@ msgstr "Standardregel"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr "Port %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "Port %d ist untagged in mehreren VLANs!"
-
msgid "Port status:"
msgstr "Port-Status:"
@@ -2584,6 +2584,9 @@ msgstr "Vor dem Einhängen Dateisystemprüfung starten "
msgid "Run filesystem check"
msgstr "Dateisystemprüfung durchführen"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2725,6 +2728,9 @@ msgstr "Zeitslot"
msgid "Software"
msgstr "Paketverwaltung"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Einige Felder sind ungültig, kann das Formular nicht speichern!"
@@ -2850,6 +2856,13 @@ msgstr "Switch %q"
msgid "Switch %q (%s)"
msgstr "Switch %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Wechsle Protokoll"
@@ -3361,9 +3374,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "VLAN Schnittstelle"
-
msgid "VLANs on %q"
msgstr "VLANs auf %q"
@@ -3495,6 +3505,9 @@ msgstr "WLAN heruntergefahren"
msgid "Write received DNS requests to syslog"
msgstr "Empfangene DNS-Anfragen in das Systemprotokoll schreiben"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "XR-Unterstützung"
@@ -3674,3 +3687,15 @@ msgstr "ja"
msgid "« Back"
msgstr "« Zurück"
+
+#~ msgid "CPU"
+#~ msgstr "Prozessor"
+
+#~ msgid "Port %d"
+#~ msgstr "Port %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "Port %d ist untagged in mehreren VLANs!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "VLAN Schnittstelle"
diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po
index c5de065e4d..7b716ada36 100644
--- a/modules/luci-base/po/el/base.po
+++ b/modules/luci-base/po/el/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.4\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(παράθυρο %d λεπτών, διάστημα %d δευτερολέπτων)"
@@ -542,9 +545,6 @@ msgstr "Κουμπιά"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr ""
-
msgid "CPU usage (%)"
msgstr "Χρήση CPU (%)"
@@ -1079,6 +1079,9 @@ msgstr "Εξωτερικός εξυπηρετητής καταγραφής συ
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1780,6 +1783,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2281,12 +2287,6 @@ msgstr "Πολιτική"
msgid "Port"
msgstr "Θύρα"
-msgid "Port %d"
-msgstr "Θύρα %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2570,6 +2570,9 @@ msgstr "Εκτέλεση ελέγχου του συστήματος αρχείω
msgid "Run filesystem check"
msgstr "Εκτέλεση ελέγχου συστήματος αρχείων"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2709,6 +2712,9 @@ msgstr ""
msgid "Software"
msgstr "Λογισμικό"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Κάποια πεδία δεν είναι έγκυρα, δεν μπορούν να αποθηκευτούν οι τιμές!"
@@ -2823,6 +2829,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3288,9 +3301,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Διεπαφή VLAN"
-
msgid "VLANs on %q"
msgstr ""
@@ -3420,6 +3430,9 @@ msgstr "Το ασύρματο δίκτυο τερματίστηκε"
msgid "Write received DNS requests to syslog"
msgstr "Καταγραφή των ληφθέντων DNS αιτήσεων στο syslog"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Υποστήριξη XR"
@@ -3601,3 +3614,9 @@ msgstr "ναι"
msgid "« Back"
msgstr "« Πίσω"
+
+#~ msgid "Port %d"
+#~ msgstr "Θύρα %d"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Διεπαφή VLAN"
diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po
index 7550230ec1..82a4e72542 100644
--- a/modules/luci-base/po/en/base.po
+++ b/modules/luci-base/po/en/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.4\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d minute window, %d second interval)"
@@ -531,9 +534,6 @@ msgstr "Buttons"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "CPU usage (%)"
@@ -1055,6 +1055,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1749,6 +1752,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2248,12 +2254,6 @@ msgstr "Policy"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2535,6 +2535,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2673,6 +2676,9 @@ msgstr "Slot time"
msgid "Software"
msgstr "Software"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr ""
@@ -2785,6 +2791,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3245,9 +3258,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr ""
-
msgid "VLANs on %q"
msgstr ""
@@ -3379,6 +3389,9 @@ msgstr ""
msgid "Write received DNS requests to syslog"
msgstr ""
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "XR Support"
@@ -3557,3 +3570,6 @@ msgstr ""
msgid "« Back"
msgstr "« Back"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po
index 2cdc29cdea..de9a645324 100644
--- a/modules/luci-base/po/es/base.po
+++ b/modules/luci-base/po/es/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(ventana de %d minutos, intervalo de %d segundos)"
@@ -538,9 +541,6 @@ msgstr "Botones"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "Uso de CPU (%)"
@@ -1073,6 +1073,9 @@ msgstr "Servidor externo de registro del sistema"
msgid "External system log server port"
msgstr "Puerto del servidor externo de registro del sistema"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1788,6 +1791,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2288,12 +2294,6 @@ msgstr "Política"
msgid "Port"
msgstr "Puerto"
-msgid "Port %d"
-msgstr "Puerto %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "¡El puerto %d está desmarcado en múltiples VLANs!"
-
msgid "Port status:"
msgstr "Estado del puerto:"
@@ -2589,6 +2589,9 @@ msgstr "Comprobar el sistema de ficheros antes de montar el dispositivo"
msgid "Run filesystem check"
msgstr "Comprobar el sistema de ficheros"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2730,6 +2733,9 @@ msgstr "Tiempo asignado"
msgid "Software"
msgstr "Instalación de programas"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Algunos campos no son válidos, ¡no se pueden guardar!"
@@ -2855,6 +2861,13 @@ msgstr "Switch %q"
msgid "Switch %q (%s)"
msgstr "Switch %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Intercambiar protocolo"
@@ -3362,9 +3375,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Interfaz VLAN"
-
msgid "VLANs on %q"
msgstr "VLANs en %q"
@@ -3496,6 +3506,9 @@ msgstr "Apagando red inalámbrica"
msgid "Write received DNS requests to syslog"
msgstr "Escribir las peticiones de DNS recibidas en el registro del sistema"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Soporte de XR"
@@ -3677,3 +3690,15 @@ msgstr "sí"
msgid "« Back"
msgstr "« Volver"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Puerto %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "¡El puerto %d está desmarcado en múltiples VLANs!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Interfaz VLAN"
diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po
index 24608e380a..fcde931c79 100644
--- a/modules/luci-base/po/fr/base.po
+++ b/modules/luci-base/po/fr/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(fenêtre de %d minutes, intervalle de %d secondes)"
@@ -543,9 +546,6 @@ msgstr "Boutons"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "Utilisation CPU (%)"
@@ -1085,6 +1085,9 @@ msgstr "Serveur distant de journaux système"
msgid "External system log server port"
msgstr "Port du serveur distant de journaux système"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1802,6 +1805,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2301,12 +2307,6 @@ msgstr "Politique"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr "Port %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "Le port %d n'est pas marqué dans plusieurs VLANs !"
-
msgid "Port status:"
msgstr "Statut du port :"
@@ -2603,6 +2603,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr "Faire une vérification du système de fichiers"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2744,6 +2747,9 @@ msgstr "Tranche de temps"
msgid "Software"
msgstr "Logiciels"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Certains champs sont invalides, ne peut sauvegarder les valeurs !"
@@ -2867,6 +2873,13 @@ msgstr "Commutateur %q"
msgid "Switch %q (%s)"
msgstr "Commutateur %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Protocole du commutateur"
@@ -3381,9 +3394,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Interface du VLAN"
-
msgid "VLANs on %q"
msgstr "VLANs sur %q"
@@ -3515,6 +3525,9 @@ msgstr "Wi-Fi arrêté"
msgid "Write received DNS requests to syslog"
msgstr "Écrire les requêtes DNS reçues dans syslog"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Gestion du mode XR"
@@ -3695,3 +3708,15 @@ msgstr "oui"
msgid "« Back"
msgstr "« Retour"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Port %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "Le port %d n'est pas marqué dans plusieurs VLANs !"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Interface du VLAN"
diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po
index 5a0c07c66a..3c2d784707 100644
--- a/modules/luci-base/po/he/base.po
+++ b/modules/luci-base/po/he/base.po
@@ -11,6 +11,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr ""
@@ -534,9 +537,6 @@ msgstr "כפתורים"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "מעבד"
-
msgid "CPU usage (%)"
msgstr "שימוש מעבד (%)"
@@ -1041,6 +1041,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1725,6 +1728,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2216,12 +2222,6 @@ msgstr ""
msgid "Port"
msgstr ""
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2502,6 +2502,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr "הרץ בדיקת מערכת קבצים"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2641,6 +2644,9 @@ msgstr ""
msgid "Software"
msgstr "תוכנה"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "חלק מהשדות אינם תקינים, אין אפשרות לשמור את הערכים!"
@@ -2759,6 +2765,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3205,9 +3218,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr ""
-
msgid "VLANs on %q"
msgstr ""
@@ -3337,6 +3347,9 @@ msgstr ""
msgid "Write received DNS requests to syslog"
msgstr ""
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr ""
@@ -3510,3 +3523,6 @@ msgstr "כן"
msgid "« Back"
msgstr "<< אחורה"
+
+#~ msgid "CPU"
+#~ msgstr "מעבד"
diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po
index ed64f994e6..d71bd6907a 100644
--- a/modules/luci-base/po/hu/base.po
+++ b/modules/luci-base/po/hu/base.po
@@ -11,6 +11,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d perces ablak, %d másodperces intervallum)"
@@ -537,9 +540,6 @@ msgstr "Gombok"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "Processzor"
-
msgid "CPU usage (%)"
msgstr "Processzor használat (%)"
@@ -1074,6 +1074,9 @@ msgstr "Külső rendszernapló kiszolgáló"
msgid "External system log server port"
msgstr "Külső rendszernapló kiszolgáló port"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1791,6 +1794,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2291,12 +2297,6 @@ msgstr "Szabály"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr "Port %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "A %d port egyszerre több VLAN-ban is cimkézetlen!"
-
msgid "Port status:"
msgstr "Port állapot:"
@@ -2594,6 +2594,9 @@ msgstr "Fájlrendszer ellenőrzés futtatása az eszköz csatolása előtt"
msgid "Run filesystem check"
msgstr "Fájlrendszer ellenőrzés futtatása"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2735,6 +2738,9 @@ msgstr "Időrés"
msgid "Software"
msgstr "Szoftver"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Néhán mező érvénytelen, az értékek nem menthetők!"
@@ -2858,6 +2864,13 @@ msgstr "Kapcsoló %q"
msgid "Switch %q (%s)"
msgstr "Kapcsoló %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Protokoll csere"
@@ -3369,9 +3382,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "VLAN interfész"
-
msgid "VLANs on %q"
msgstr "VLAN-ok %q-n"
@@ -3503,6 +3513,9 @@ msgstr "Vezetéknélküli rész leállítása"
msgid "Write received DNS requests to syslog"
msgstr "A kapott DNS kéréseket írja a rendszernaplóba"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "XR támogatás"
@@ -3684,3 +3697,15 @@ msgstr "igen"
msgid "« Back"
msgstr "« Vissza"
+
+#~ msgid "CPU"
+#~ msgstr "Processzor"
+
+#~ msgid "Port %d"
+#~ msgstr "Port %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "A %d port egyszerre több VLAN-ban is cimkézetlen!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "VLAN interfész"
diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po
index 21bcf10aec..2bc5ddabf4 100644
--- a/modules/luci-base/po/it/base.po
+++ b/modules/luci-base/po/it/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.6.10\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d finestra in minuti , %d secondi intervallo)"
@@ -543,9 +546,6 @@ msgstr "Pulsanti"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "Uso CPU (%)"
@@ -1076,6 +1076,9 @@ msgstr "Server Log di Sistema esterno"
msgid "External system log server port"
msgstr "Porta Server Log di Sistema esterno"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1231,7 +1234,7 @@ msgid "Global Settings"
msgstr ""
msgid "Global network options"
-msgstr ""
+msgstr "Opzioni rete globale"
msgid "Go to password configuration..."
msgstr "Vai alla configurazione della password..."
@@ -1477,7 +1480,7 @@ msgid "Inactivity timeout"
msgstr "Tempo di Inattività"
msgid "Inbound:"
-msgstr "in entrata:"
+msgstr "In entrata:"
msgid "Info"
msgstr "Informazioni"
@@ -1596,7 +1599,7 @@ msgid "L2TP Server"
msgstr "Server L2TP"
msgid "LCP echo failure threshold"
-msgstr "fallimento soglia echo LCP"
+msgstr "Fallimento soglia echo LCP"
msgid "LCP echo interval"
msgstr "Intervallo echo LCP"
@@ -1763,7 +1766,7 @@ msgid "Login"
msgstr "Login"
msgid "Logout"
-msgstr "Logout"
+msgstr "Slogga"
msgid "Loss of Signal Seconds (LOSS)"
msgstr ""
@@ -1789,6 +1792,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -1969,7 +1975,7 @@ msgid "Network boot image"
msgstr ""
msgid "Network without interfaces."
-msgstr ""
+msgstr "Rete senza interfaccia"
msgid "Next »"
msgstr "Prossimo »"
@@ -2127,7 +2133,7 @@ msgid "Out"
msgstr ""
msgid "Outbound:"
-msgstr ""
+msgstr "In uscita:"
msgid "Outdoor Channels"
msgstr ""
@@ -2139,7 +2145,7 @@ msgid "Override MAC address"
msgstr ""
msgid "Override MTU"
-msgstr ""
+msgstr "Sovrascivi MTU"
msgid "Override default interface name"
msgstr ""
@@ -2287,12 +2293,6 @@ msgstr ""
msgid "Port"
msgstr "Porta"
-msgid "Port %d"
-msgstr "Porta %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2577,6 +2577,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2715,6 +2718,9 @@ msgstr "Slot time"
msgid "Software"
msgstr "Software"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Alcuni campi non sono validi, non è possibile salvare i valori!"
@@ -2840,6 +2846,13 @@ msgstr "Switch %q"
msgid "Switch %q (%s)"
msgstr "Switch %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Cambia protocollo"
@@ -3320,9 +3333,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Interfaccia VLAN"
-
msgid "VLANs on %q"
msgstr "VLANs su %q"
@@ -3454,6 +3464,9 @@ msgstr "Wireless spento"
msgid "Write received DNS requests to syslog"
msgstr "Scrittura delle richiesta DNS ricevute nel syslog"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Supporto XR"
@@ -3637,3 +3650,12 @@ msgstr "Sì"
msgid "« Back"
msgstr "« Indietro"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Porta %d"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Interfaccia VLAN"
diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po
index 63cfb28577..740c676a8b 100644
--- a/modules/luci-base/po/ja/base.po
+++ b/modules/luci-base/po/ja/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d 分幅, %d 秒間隔)"
@@ -530,9 +533,6 @@ msgstr "ボタン"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "CPU使用率 (%)"
@@ -1065,6 +1065,9 @@ msgstr "外部システムログ・サーバー"
msgid "External system log server port"
msgstr "外部システムログ・サーバーポート"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1767,6 +1770,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2268,12 +2274,6 @@ msgstr "ポリシー"
msgid "Port"
msgstr "ポート"
-msgid "Port %d"
-msgstr "ポート %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr "ポート ステータス:"
@@ -2572,6 +2572,9 @@ msgstr "デバイスのマウントを行う前にファイルシステムチェ
msgid "Run filesystem check"
msgstr "ファイルシステムチェックを行う"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2713,6 +2716,9 @@ msgstr "スロット時間"
msgid "Software"
msgstr "ソフトウェア"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "無効な値が設定されているフィールドがあるため、保存できません。"
@@ -2832,6 +2838,13 @@ msgstr "スイッチ %q"
msgid "Switch %q (%s)"
msgstr "スイッチ %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "プロトコルの切り替え"
@@ -3332,9 +3345,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "VLANインターフェース"
-
msgid "VLANs on %q"
msgstr "%q上のVLANs"
@@ -3467,6 +3477,9 @@ msgstr "無線LAN機能停止"
msgid "Write received DNS requests to syslog"
msgstr "受信したDNSリクエストをsyslogへ記録します"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "XRサポート"
@@ -3647,3 +3660,12 @@ msgstr "はい"
msgid "« Back"
msgstr "« 戻る"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "ポート %d"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "VLANインターフェース"
diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po
index 0bb60faf5e..5e348d69fe 100644
--- a/modules/luci-base/po/ms/base.po
+++ b/modules/luci-base/po/ms/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.1.1\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr ""
@@ -517,9 +520,6 @@ msgstr "Butang"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr ""
-
msgid "CPU usage (%)"
msgstr "Penggunaan CPU (%)"
@@ -1025,6 +1025,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1720,6 +1723,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2220,12 +2226,6 @@ msgstr "Dasar"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2506,6 +2506,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2644,6 +2647,9 @@ msgstr "Slot masa"
msgid "Software"
msgstr "Perisian"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr ""
@@ -2757,6 +2763,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3221,9 +3234,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr ""
-
msgid "VLANs on %q"
msgstr ""
@@ -3355,6 +3365,9 @@ msgstr ""
msgid "Write received DNS requests to syslog"
msgstr ""
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Sokongan XR"
diff --git a/modules/luci-base/po/no/base.po b/modules/luci-base/po/no/base.po
index 033237d0f6..793d381c2e 100644
--- a/modules/luci-base/po/no/base.po
+++ b/modules/luci-base/po/no/base.po
@@ -8,6 +8,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d minutters vindu, %d sekunds intervall)"
@@ -529,9 +532,6 @@ msgstr "Knapper"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "CPU forbruk (%)"
@@ -1061,6 +1061,9 @@ msgstr "Ekstern systemlogg server"
msgid "External system log server port"
msgstr "Ekstern systemlogg server port"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1765,6 +1768,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2266,12 +2272,6 @@ msgstr "Policy"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr "Port %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "Port %d er utagget i flere VLANs!"
-
msgid "Port status:"
msgstr "Port status:"
@@ -2567,6 +2567,9 @@ msgstr "Kjør filsystem sjekk før montering av enheten"
msgid "Run filesystem check"
msgstr "Kjør filsystem sjekk"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2708,6 +2711,9 @@ msgstr "Slot tid"
msgid "Software"
msgstr "Programvare"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Noen felt er ugyldige, kan ikke lagre verdier!"
@@ -2828,6 +2834,13 @@ msgstr "Svitsj %q"
msgid "Switch %q (%s)"
msgstr "Svitsj %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Svitsj protokoll"
@@ -3334,9 +3347,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "VLAN grensesnitt"
-
msgid "VLANs on %q"
msgstr "VLANs på %q"
@@ -3468,6 +3478,9 @@ msgstr "Trådløst er slått av"
msgid "Write received DNS requests to syslog"
msgstr "Skriv mottatte DNS forespørsler til syslog"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "XR Støtte"
@@ -3649,3 +3662,15 @@ msgstr "ja"
msgid "« Back"
msgstr "« Tilbake"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Port %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "Port %d er utagget i flere VLANs!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "VLAN grensesnitt"
diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po
index 49ede9c663..4e6152c033 100644
--- a/modules/luci-base/po/pl/base.po
+++ b/modules/luci-base/po/pl/base.po
@@ -14,6 +14,9 @@ msgstr ""
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(okno %d minut, interwał %d sekund)"
@@ -548,9 +551,6 @@ msgstr "Przyciski"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "Użycie CPU (%)"
@@ -1093,6 +1093,9 @@ msgstr "Zewnętrzny serwer dla loga systemowego"
msgid "External system log server port"
msgstr "Port zewnętrznego serwera dla loga systemowego"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1812,6 +1815,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2314,12 +2320,6 @@ msgstr "Zasada"
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr "Port %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "Port %d jest nietagowany w wielu VLAN`ach!"
-
msgid "Port status:"
msgstr "Status portu:"
@@ -2618,6 +2618,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr "Sprawdź czy system plików nie zawiera błędów"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2760,6 +2763,9 @@ msgstr "Szczelina czasowa"
msgid "Software"
msgstr "Oprogramowanie"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Wartości pewnych pól są niewłaściwe, nie mogę ich zachować!"
@@ -2883,6 +2889,13 @@ msgstr "Przełącznik %q"
msgid "Switch %q (%s)"
msgstr "Przełącznik %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Protokół przełącznika"
@@ -3399,9 +3412,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Interfejs VLAN"
-
msgid "VLANs on %q"
msgstr "Sieci VLAN na %q"
@@ -3534,6 +3544,9 @@ msgstr "Wyłączanie sieci bezprzewodowej"
msgid "Write received DNS requests to syslog"
msgstr "Zapisz otrzymane żądania DNS do syslog'a"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Wsparcie XR"
@@ -3716,3 +3729,15 @@ msgstr "tak"
msgid "« Back"
msgstr "« Wróć"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Port %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "Port %d jest nietagowany w wielu VLAN`ach!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Interfejs VLAN"
diff --git a/modules/luci-base/po/pt-br/base.po b/modules/luci-base/po/pt-br/base.po
index 209a8625c7..fda160503c 100644
--- a/modules/luci-base/po/pt-br/base.po
+++ b/modules/luci-base/po/pt-br/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(janela de %d minutos, intervalo de %d segundos)"
@@ -544,9 +547,6 @@ msgstr "Botões"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "Uso da CPU (%)"
@@ -1086,6 +1086,9 @@ msgstr "Servidor externo de registros do sistema (syslog)"
msgid "External system log server port"
msgstr "Porta do servidor externo de registro do sistema (syslog)"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1813,6 +1816,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2319,12 +2325,6 @@ msgstr "Política"
msgid "Port"
msgstr "Porta"
-msgid "Port %d"
-msgstr "Porta %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "Porta %d está sem etiqueta para mútliplas VLANs!"
-
msgid "Port status:"
msgstr "Status da porta"
@@ -2623,6 +2623,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr "Execute a verificação do sistema de arquivos "
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2764,6 +2767,9 @@ msgstr "Intervalo de tempo"
msgid "Software"
msgstr "Software"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Alguns campos estão inválidos e os valores não podem ser salvos!"
@@ -2888,6 +2894,13 @@ msgstr "Switch %q"
msgid "Switch %q (%s)"
msgstr "Switch %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Trocar o protocolo"
@@ -3401,9 +3414,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Interface VLAN"
-
msgid "VLANs on %q"
msgstr "VLANs em %q"
@@ -3535,6 +3545,9 @@ msgstr "Rede sem fio desligada"
msgid "Write received DNS requests to syslog"
msgstr "Escreva as requisições DNS para o servidor de registro (syslog)"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Suporte a XR"
@@ -3720,3 +3733,15 @@ msgstr "sim"
msgid "« Back"
msgstr "« Voltar"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Porta %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "Porta %d está sem etiqueta para mútliplas VLANs!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Interface VLAN"
diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po
index f20a95dc19..05bdb76ff9 100644
--- a/modules/luci-base/po/pt/base.po
+++ b/modules/luci-base/po/pt/base.po
@@ -13,6 +13,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(janela de %d minutos, intervalo de %d segundos)"
@@ -542,9 +545,6 @@ msgstr "Botões"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "Uso da CPU (%)"
@@ -1079,6 +1079,9 @@ msgstr "Servidor externo de logs de sistema"
msgid "External system log server port"
msgstr "Porta do Servidor externo de logs de sistema"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1789,6 +1792,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2288,12 +2294,6 @@ msgstr "Política"
msgid "Port"
msgstr "Porta"
-msgid "Port %d"
-msgstr "Porta %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr "Estado da porta:"
@@ -2587,6 +2587,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr "Correr uma verificação do sistema de ficheiros"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2726,6 +2729,9 @@ msgstr ""
msgid "Software"
msgstr "Software"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Alguns campos são inválidos, não é possível gravar valores!"
@@ -2838,6 +2844,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3327,9 +3340,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Interface VLAN"
-
msgid "VLANs on %q"
msgstr "VLANs em %q"
@@ -3461,6 +3471,9 @@ msgstr "Desligar wireless"
msgid "Write received DNS requests to syslog"
msgstr "Escrever os pedidos de DNS para o syslog"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Suporte XR"
@@ -3645,3 +3658,12 @@ msgstr "sim"
msgid "« Back"
msgstr "« Voltar"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "Porta %d"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Interface VLAN"
diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po
index b114568179..73f9fb19f2 100644
--- a/modules/luci-base/po/ro/base.po
+++ b/modules/luci-base/po/ro/base.po
@@ -12,6 +12,9 @@ msgstr ""
"20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d fereastra minute, %d interval secunde)"
@@ -526,9 +529,6 @@ msgstr "Butoane"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "Procesor"
-
msgid "CPU usage (%)"
msgstr "Utilizarea procesorului (%)"
@@ -1032,6 +1032,9 @@ msgstr "Server de log-uri extern"
msgid "External system log server port"
msgstr "Portul serverului de log-uri extern"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1722,6 +1725,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2213,12 +2219,6 @@ msgstr ""
msgid "Port"
msgstr "Port"
-msgid "Port %d"
-msgstr "Port %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr "Stare port:"
@@ -2498,6 +2498,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2637,6 +2640,9 @@ msgstr ""
msgid "Software"
msgstr "Software"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr ""
@@ -2749,6 +2755,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3195,9 +3208,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Interfata VLAN"
-
msgid "VLANs on %q"
msgstr "VLANuri pe %q"
@@ -3329,6 +3339,9 @@ msgstr "Wireless-ul oprit"
msgid "Write received DNS requests to syslog"
msgstr "Scrie cererile DNS primite in syslog"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Suport XR"
@@ -3502,3 +3515,12 @@ msgstr "da"
msgid "« Back"
msgstr "« Inapoi"
+
+#~ msgid "CPU"
+#~ msgstr "Procesor"
+
+#~ msgid "Port %d"
+#~ msgstr "Port %d"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Interfata VLAN"
diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po
index 4ad8bfb1c4..34dde6bb10 100644
--- a/modules/luci-base/po/ru/base.po
+++ b/modules/luci-base/po/ru/base.po
@@ -15,6 +15,9 @@ msgstr ""
"X-Generator: Pootle 2.0.6\n"
"X-Poedit-SourceCharset: UTF-8\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d минутное окно, %d секундный интервал)"
@@ -542,9 +545,6 @@ msgstr "Кнопки"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "ЦП"
-
msgid "CPU usage (%)"
msgstr "Загрузка ЦП (%)"
@@ -1080,6 +1080,9 @@ msgstr "Сервер системного журнала"
msgid "External system log server port"
msgstr "Порт сервера системного журнала"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1794,6 +1797,9 @@ msgstr ""
msgid "MB/s"
msgstr "МБ/с"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "МГц"
@@ -2296,12 +2302,6 @@ msgstr "Политика"
msgid "Port"
msgstr "Порт"
-msgid "Port %d"
-msgstr "Порт %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "Порт %d нетегирован в нескольких VLANах!"
-
msgid "Port status:"
msgstr "Состояние порта:"
@@ -2597,6 +2597,9 @@ msgstr "Проверять файловую систему перед монти
msgid "Run filesystem check"
msgstr "Проверять файловую систему"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2738,6 +2741,9 @@ msgstr "Время слота"
msgid "Software"
msgstr "Программное обеспечение"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Некоторые значения полей недопустимы, невозможно сохранить информацию!"
@@ -2860,6 +2866,13 @@ msgstr "Коммутатор %q"
msgid "Switch %q (%s)"
msgstr "Коммутатор %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Изменить протокол"
@@ -3369,9 +3382,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "Интерфейс VLAN"
-
msgid "VLANs on %q"
msgstr "VLANы на %q"
@@ -3504,6 +3514,9 @@ msgstr "Выключение беспроводной сети"
msgid "Write received DNS requests to syslog"
msgstr "Записывать полученные DNS-запросы в системный журнал"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Поддержка XR"
@@ -3687,3 +3700,15 @@ msgstr "да"
msgid "« Back"
msgstr "« Назад"
+
+#~ msgid "CPU"
+#~ msgstr "ЦП"
+
+#~ msgid "Port %d"
+#~ msgstr "Порт %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "Порт %d нетегирован в нескольких VLANах!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "Интерфейс VLAN"
diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po
index a8466d4c9a..0d87051247 100644
--- a/modules/luci-base/po/sk/base.po
+++ b/modules/luci-base/po/sk/base.po
@@ -8,6 +8,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr ""
@@ -511,9 +514,6 @@ msgstr ""
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr ""
-
msgid "CPU usage (%)"
msgstr ""
@@ -1012,6 +1012,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1696,6 +1699,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2187,12 +2193,6 @@ msgstr ""
msgid "Port"
msgstr ""
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2470,6 +2470,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2608,6 +2611,9 @@ msgstr ""
msgid "Software"
msgstr ""
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr ""
@@ -2720,6 +2726,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3164,9 +3177,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr ""
-
msgid "VLANs on %q"
msgstr ""
@@ -3296,6 +3306,9 @@ msgstr ""
msgid "Write received DNS requests to syslog"
msgstr ""
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr ""
diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po
index 84421632d8..73a88b8616 100644
--- a/modules/luci-base/po/sv/base.po
+++ b/modules/luci-base/po/sv/base.po
@@ -11,6 +11,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr ""
@@ -517,9 +520,6 @@ msgstr ""
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr ""
-
msgid "CPU usage (%)"
msgstr ""
@@ -1018,6 +1018,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1702,6 +1705,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2193,12 +2199,6 @@ msgstr ""
msgid "Port"
msgstr ""
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2476,6 +2476,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2614,6 +2617,9 @@ msgstr ""
msgid "Software"
msgstr ""
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr ""
@@ -2726,6 +2732,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3170,9 +3183,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr ""
-
msgid "VLANs on %q"
msgstr ""
@@ -3302,6 +3312,9 @@ msgstr ""
msgid "Write received DNS requests to syslog"
msgstr ""
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr ""
diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot
index 35181ee222..df2892b88f 100644
--- a/modules/luci-base/po/templates/base.pot
+++ b/modules/luci-base/po/templates/base.pot
@@ -1,6 +1,9 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr ""
@@ -504,9 +507,6 @@ msgstr ""
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr ""
-
msgid "CPU usage (%)"
msgstr ""
@@ -1005,6 +1005,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1689,6 +1692,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2180,12 +2186,6 @@ msgstr ""
msgid "Port"
msgstr ""
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2463,6 +2463,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2601,6 +2604,9 @@ msgstr ""
msgid "Software"
msgstr ""
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr ""
@@ -2713,6 +2719,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3157,9 +3170,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr ""
-
msgid "VLANs on %q"
msgstr ""
@@ -3289,6 +3299,9 @@ msgstr ""
msgid "Write received DNS requests to syslog"
msgstr ""
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr ""
diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po
index ca993564c1..a5a5338979 100644
--- a/modules/luci-base/po/tr/base.po
+++ b/modules/luci-base/po/tr/base.po
@@ -11,6 +11,9 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d dakika gösteriliyor, %d saniye aralıklı)"
@@ -524,9 +527,6 @@ msgstr ""
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr ""
-
msgid "CPU usage (%)"
msgstr ""
@@ -1025,6 +1025,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1709,6 +1712,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2200,12 +2206,6 @@ msgstr ""
msgid "Port"
msgstr ""
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2483,6 +2483,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2621,6 +2624,9 @@ msgstr ""
msgid "Software"
msgstr ""
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr ""
@@ -2733,6 +2739,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3177,9 +3190,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr ""
-
msgid "VLANs on %q"
msgstr ""
@@ -3309,6 +3319,9 @@ msgstr ""
msgid "Write received DNS requests to syslog"
msgstr ""
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr ""
diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po
index 194f67c78e..95c686e282 100644
--- a/modules/luci-base/po/uk/base.po
+++ b/modules/luci-base/po/uk/base.po
@@ -12,6 +12,9 @@ msgstr ""
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d-хвилинне вікно, %d-секундний інтервал)"
@@ -551,9 +554,6 @@ msgstr "Кнопки"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "ЦП"
-
msgid "CPU usage (%)"
msgstr "Завантаження ЦП, %"
@@ -1088,6 +1088,9 @@ msgstr "Зовнішній сервер системного журналу"
msgid "External system log server port"
msgstr "Порт зовнішнього сервера системного журналу"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1803,6 +1806,9 @@ msgstr ""
msgid "MB/s"
msgstr "MБ/с"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "МГц"
@@ -2307,12 +2313,6 @@ msgstr "Політика"
msgid "Port"
msgstr "Порт"
-msgid "Port %d"
-msgstr "Порт %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "Порт %d нетегований у кількох VLAN-ах!"
-
msgid "Port status:"
msgstr "Статус порту:"
@@ -2610,6 +2610,9 @@ msgstr "Виконати перевірку файлової системи пе
msgid "Run filesystem check"
msgstr "Виконати перевірку файлової системи"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2751,6 +2754,9 @@ msgstr "Час слота"
msgid "Software"
msgstr "Програмне забезпечення"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "Деякі поля є неприпустимими, неможливо зберегти значення!"
@@ -2875,6 +2881,13 @@ msgstr "Комутатор %q"
msgid "Switch %q (%s)"
msgstr "Комутатор %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "Протокол комутатора"
@@ -3385,9 +3398,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "VLAN-інтерфейс"
-
msgid "VLANs on %q"
msgstr "VLAN на %q"
@@ -3519,6 +3529,9 @@ msgstr "Бездротова мережа припинила роботу"
msgid "Write received DNS requests to syslog"
msgstr "Записувати отримані DNS-запити до системного журналу"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Підтримка XR"
@@ -3702,3 +3715,15 @@ msgstr "так"
msgid "« Back"
msgstr "« Назад"
+
+#~ msgid "CPU"
+#~ msgstr "ЦП"
+
+#~ msgid "Port %d"
+#~ msgstr "Порт %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "Порт %d нетегований у кількох VLAN-ах!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "VLAN-інтерфейс"
diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po
index dbebe177f2..0e378565ae 100644
--- a/modules/luci-base/po/vi/base.po
+++ b/modules/luci-base/po/vi/base.po
@@ -12,6 +12,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 1.1.0\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr ""
@@ -518,9 +521,6 @@ msgstr ""
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr ""
-
msgid "CPU usage (%)"
msgstr "CPU usage (%)"
@@ -1030,6 +1030,9 @@ msgstr ""
msgid "External system log server port"
msgstr ""
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1724,6 +1727,9 @@ msgstr ""
msgid "MB/s"
msgstr ""
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr ""
@@ -2223,12 +2229,6 @@ msgstr "Chính sách"
msgid "Port"
msgstr "Cửa "
-msgid "Port %d"
-msgstr ""
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr ""
-
msgid "Port status:"
msgstr ""
@@ -2510,6 +2510,9 @@ msgstr ""
msgid "Run filesystem check"
msgstr ""
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2648,6 +2651,9 @@ msgstr ""
msgid "Software"
msgstr "Phần mềm"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr ""
@@ -2760,6 +2766,13 @@ msgstr ""
msgid "Switch %q (%s)"
msgstr ""
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr ""
@@ -3219,9 +3232,6 @@ msgstr ""
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr ""
-
msgid "VLANs on %q"
msgstr ""
@@ -3351,6 +3361,9 @@ msgstr ""
msgid "Write received DNS requests to syslog"
msgstr ""
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "Hỗ trợ XR"
diff --git a/modules/luci-base/po/zh-cn/base.po b/modules/luci-base/po/zh-cn/base.po
index 5d5d558af6..dbc4df8091 100644
--- a/modules/luci-base/po/zh-cn/base.po
+++ b/modules/luci-base/po/zh-cn/base.po
@@ -13,6 +13,9 @@ msgstr ""
"X-Generator: Poedit 1.8.5\n"
"Language-Team: \n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d分钟信息,%d秒刷新)"
@@ -526,9 +529,6 @@ msgstr "按键"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr "CA证书.如果留空的话证书将在第一次连接时被保存."
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "CPU使用率(%)"
@@ -1034,6 +1034,9 @@ msgstr "远程log服务器"
msgid "External system log server port"
msgstr "远程log服务器端口"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr "额外的SSH命令选项"
@@ -1722,6 +1725,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2213,12 +2219,6 @@ msgstr "策略"
msgid "Port"
msgstr "端口"
-msgid "Port %d"
-msgstr "端口 %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "端口 %d 在多个VLAN中均未关联!"
-
msgid "Port status:"
msgstr "端口状态:"
@@ -2507,6 +2507,9 @@ msgstr "挂载设备前运行文件系统检查"
msgid "Run filesystem check"
msgstr "文件系统检查"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2646,6 +2649,9 @@ msgstr "时隙"
msgid "Software"
msgstr "软件包"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "一些项目的值无效,无法保存!"
@@ -2763,6 +2769,13 @@ msgstr "交换机 %q"
msgid "Switch %q (%s)"
msgstr "交换机%q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "切换协议"
@@ -3230,9 +3243,6 @@ msgstr "VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "VLAN接口"
-
msgid "VLANs on %q"
msgstr "%q上的VLAN"
@@ -3364,6 +3374,9 @@ msgstr "无线已关闭"
msgid "Write received DNS requests to syslog"
msgstr "将收到的DNS请求写入系统日志"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "XR支持"
@@ -3542,3 +3555,15 @@ msgstr "是"
msgid "« Back"
msgstr "« 后退"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "端口 %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "端口 %d 在多个VLAN中均未关联!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "VLAN接口"
diff --git a/modules/luci-base/po/zh-tw/base.po b/modules/luci-base/po/zh-tw/base.po
index 4ed557fc6c..d1d17ad916 100644
--- a/modules/luci-base/po/zh-tw/base.po
+++ b/modules/luci-base/po/zh-tw/base.po
@@ -11,6 +11,9 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.6\n"
+msgid "%s is untagged in multiple VLANs!"
+msgstr ""
+
msgid "(%d minute window, %d second interval)"
msgstr "(%d 分鐘訊息, %d 秒更新)"
@@ -523,9 +526,6 @@ msgstr "按鈕"
msgid "CA certificate; if empty it will be saved after the first connection."
msgstr ""
-msgid "CPU"
-msgstr "CPU"
-
msgid "CPU usage (%)"
msgstr "CPU 使用率 (%)"
@@ -1043,6 +1043,9 @@ msgstr "外部系統日誌伺服器"
msgid "External system log server port"
msgstr "外部系統日誌伺服器埠號"
+msgid "External system log server protocol"
+msgstr ""
+
msgid "Extra SSH command options"
msgstr ""
@@ -1733,6 +1736,9 @@ msgstr ""
msgid "MB/s"
msgstr "MB/s"
+msgid "MD5"
+msgstr ""
+
msgid "MHz"
msgstr "MHz"
@@ -2228,12 +2234,6 @@ msgstr "策略"
msgid "Port"
msgstr "埠"
-msgid "Port %d"
-msgstr "埠 %d"
-
-msgid "Port %d is untagged in multiple VLANs!"
-msgstr "埠 %d 尚未標記在多個VLANs中!"
-
msgid "Port status:"
msgstr "埠狀態:"
@@ -2522,6 +2522,9 @@ msgstr "掛載這個設備前先跑系統檢查"
msgid "Run filesystem check"
msgstr "執行系統檢查"
+msgid "SHA256"
+msgstr ""
+
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
@@ -2661,6 +2664,9 @@ msgstr "插槽時間"
msgid "Software"
msgstr "軟體"
+msgid "Software VLAN"
+msgstr ""
+
msgid "Some fields are invalid, cannot save values!"
msgstr "有些欄位失效, 無法儲存數值!"
@@ -2778,6 +2784,13 @@ msgstr "交換器 %q"
msgid "Switch %q (%s)"
msgstr "交換器 %q (%s)"
+msgid ""
+"Switch %q has an unknown topology - the VLAN settings might not be accurate."
+msgstr ""
+
+msgid "Switch VLAN"
+msgstr ""
+
msgid "Switch protocol"
msgstr "交換器協定"
@@ -3257,9 +3270,6 @@ msgstr "虛擬電路多工器VC-Mux"
msgid "VDSL"
msgstr ""
-msgid "VLAN Interface"
-msgstr "VLAN介面"
-
msgid "VLANs on %q"
msgstr "VLAN 在 %q"
@@ -3391,6 +3401,9 @@ msgstr "無線網路關閉"
msgid "Write received DNS requests to syslog"
msgstr "寫入已接收的DNS請求到系統日誌中"
+msgid "Write system log to file"
+msgstr ""
+
msgid "XR Support"
msgstr "支援XR無線陣列"
@@ -3568,3 +3581,15 @@ msgstr "是的"
msgid "« Back"
msgstr "« 倒退"
+
+#~ msgid "CPU"
+#~ msgstr "CPU"
+
+#~ msgid "Port %d"
+#~ msgstr "埠 %d"
+
+#~ msgid "Port %d is untagged in multiple VLANs!"
+#~ msgstr "埠 %d 尚未標記在多個VLANs中!"
+
+#~ msgid "VLAN Interface"
+#~ msgstr "VLAN介面"