summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/luci-base/Makefile4
-rw-r--r--modules/luci-base/luasrc/sys/iptparser.lua36
-rw-r--r--modules/luci-base/luasrc/tools/webadmin.lua2
-rw-r--r--modules/luci-base/po/ca/base.po18
-rw-r--r--modules/luci-base/po/cs/base.po26
-rw-r--r--modules/luci-base/po/de/base.po18
-rw-r--r--modules/luci-base/po/el/base.po18
-rw-r--r--modules/luci-base/po/en/base.po18
-rw-r--r--modules/luci-base/po/es/base.po18
-rw-r--r--modules/luci-base/po/fr/base.po30
-rw-r--r--modules/luci-base/po/he/base.po22
-rw-r--r--modules/luci-base/po/hu/base.po21
-rw-r--r--modules/luci-base/po/it/base.po24
-rw-r--r--modules/luci-base/po/ja/base.po247
-rw-r--r--modules/luci-base/po/ko/base.po24
-rw-r--r--modules/luci-base/po/ms/base.po18
-rw-r--r--modules/luci-base/po/no/base.po22
-rw-r--r--modules/luci-base/po/pl/base.po24
-rw-r--r--modules/luci-base/po/pt-br/base.po22
-rw-r--r--modules/luci-base/po/pt/base.po18
-rw-r--r--modules/luci-base/po/ro/base.po18
-rw-r--r--modules/luci-base/po/ru/base.po22
-rw-r--r--modules/luci-base/po/sk/base.po18
-rw-r--r--modules/luci-base/po/sv/base.po18
-rw-r--r--modules/luci-base/po/templates/base.pot18
-rw-r--r--modules/luci-base/po/tr/base.po18
-rw-r--r--modules/luci-base/po/uk/base.po28
-rw-r--r--modules/luci-base/po/vi/base.po18
-rw-r--r--modules/luci-base/po/zh-cn/base.po614
-rw-r--r--modules/luci-base/po/zh-tw/base.po26
-rw-r--r--modules/luci-mod-admin-full/luasrc/controller/admin/status.lua6
-rw-r--r--modules/luci-mod-admin-full/luasrc/controller/admin/system.lua1
-rw-r--r--modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua4
33 files changed, 888 insertions, 551 deletions
diff --git a/modules/luci-base/Makefile b/modules/luci-base/Makefile
index ce7d40dac..753ff259f 100644
--- a/modules/luci-base/Makefile
+++ b/modules/luci-base/Makefile
@@ -15,8 +15,8 @@ LUCI_TITLE:=LuCI core libraries
LUCI_DEPENDS:=+lua +libuci-lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua +luci-lib-jsonc
PKG_SOURCE:=LuaSrcDiet-0.12.1.tar.bz2
-PKG_SOURCE_URL:=https://luasrcdiet.googlecode.com/files
-PKG_MD5SUM:=8a0812701e29b6715e4d76f2f118264a
+PKG_SOURCE_URL:=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/luasrcdiet
+PKG_MD5SUM:=ed7680f2896269ae8633756e7edcf09050812f78c8f49e280e63c30d14f35aea
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/LuaSrcDiet-0.12.1
diff --git a/modules/luci-base/luasrc/sys/iptparser.lua b/modules/luci-base/luasrc/sys/iptparser.lua
index a9dbc3082..7ff665e7a 100644
--- a/modules/luci-base/luasrc/sys/iptparser.lua
+++ b/modules/luci-base/luasrc/sys/iptparser.lua
@@ -31,29 +31,43 @@ function IptParser.__init__( self, family )
self._family = (tonumber(family) == 6) and 6 or 4
self._rules = { }
self._chains = { }
+ self._tables = { }
+
+ local t = self._tables
+ local s = self:_supported_tables(self._family)
+
+ if s.filter then t[#t+1] = "filter" end
+ if s.nat then t[#t+1] = "nat" end
+ if s.mangle then t[#t+1] = "mangle" end
+ if s.raw then t[#t+1] = "raw" end
if self._family == 4 then
self._nulladdr = "0.0.0.0/0"
- self._tables = { "filter", "nat", "mangle", "raw" }
self._command = "iptables -t %s --line-numbers -nxvL"
else
self._nulladdr = "::/0"
- self._tables = { "filter", "mangle", "raw" }
- local ok, lines = pcall(io.lines, "/proc/net/ip6_tables_names")
- if ok and lines then
- local line
- for line in lines do
- if line == "nat" then
- self._tables = { "filter", "nat", "mangle", "raw" }
- end
- end
- end
self._command = "ip6tables -t %s --line-numbers -nxvL"
end
self:_parse_rules()
end
+function IptParser._supported_tables( self, family )
+ local tables = { }
+ local ok, lines = pcall(io.lines,
+ (family == 6) and "/proc/net/ip6_tables_names"
+ or "/proc/net/ip_tables_names")
+
+ if ok and lines then
+ local line
+ for line in lines do
+ tables[line] = true
+ end
+ end
+
+ return tables
+end
+
-- search criteria as only argument. If args is nil or an empty table then all
-- rules will be returned.
--
diff --git a/modules/luci-base/luasrc/tools/webadmin.lua b/modules/luci-base/luasrc/tools/webadmin.lua
index 8273175de..106810aa0 100644
--- a/modules/luci-base/luasrc/tools/webadmin.lua
+++ b/modules/luci-base/luasrc/tools/webadmin.lua
@@ -96,7 +96,7 @@ function iface_get_network(iface)
if net.l3_device == iface or net.device == iface then
-- cross check with uci to filter out @name style aliases
local uciname = cur:get("network", net.interface, "ifname")
- if not uciname or uciname:sub(1, 1) ~= "@" then
+ if type(uciname) == "string" and uciname:sub(1,1) ~= "@" or uciname then
return net.interface
end
end
diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po
index 04d89d9dd..044339bc0 100644
--- a/modules/luci-base/po/ca/base.po
+++ b/modules/luci-base/po/ca/base.po
@@ -292,9 +292,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -402,6 +399,9 @@ msgstr ""
msgid "Authentication"
msgstr "Autenticació"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autoritzada"
@@ -576,6 +576,9 @@ msgstr "Comprovació"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Suma de verificació"
@@ -978,6 +981,9 @@ msgstr "Habilita l'<abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Habilita negociació IPv6 en la enllaç PPP"
@@ -2402,6 +2408,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Calidad"
@@ -2617,6 +2626,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po
index 2fa177640..8c850a26e 100644
--- a/modules/luci-base/po/cs/base.po
+++ b/modules/luci-base/po/cs/base.po
@@ -292,9 +292,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -402,6 +399,9 @@ msgstr ""
msgid "Authentication"
msgstr "Autentizace"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autoritativní"
@@ -575,6 +575,9 @@ msgstr "Kontrola"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Kontrolní součet"
@@ -988,6 +991,9 @@ msgstr "Povolit <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Povolit dynamickou aktualizaci koncového bodu HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Na PPP spoji povolit vyjednání IPv6"
@@ -2427,6 +2433,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Kvalita"
@@ -2656,6 +2665,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -2924,7 +2936,7 @@ msgid ""
"configurations where only hosts with a corresponding lease are served."
msgstr ""
"Statické zápůjčky se používají pro přiřazení fixních IP adres a symbolických "
-"jmen DHCP klientům. Jsou také vyžadvány pro nedynamické konfigurace "
+"jmen DHCP klientům. Jsou také vyžadovány pro nedynamické konfigurace "
"rozhraní, kde jsou povoleni pouze hosté s odpovídajícím nastavením."
msgid "Status"
@@ -2940,7 +2952,7 @@ msgid "Submit"
msgstr "Odeslat"
msgid "Suppress logging"
-msgstr ""
+msgstr "Potlačit logování"
msgid "Suppress logging of the routine operation of these protocols"
msgstr ""
@@ -3227,8 +3239,8 @@ msgid ""
"This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
"abbr> in the local network"
msgstr ""
-"Toto je jedný <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
-"abbr>v mistní síti"
+"Toto je jediný <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
+"abbr> v mistní síti"
msgid "This is the plain username for logging into the account"
msgstr ""
diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po
index d55c33fc2..e44d8bb23 100644
--- a/modules/luci-base/po/de/base.po
+++ b/modules/luci-base/po/de/base.po
@@ -291,9 +291,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -401,6 +398,9 @@ msgstr ""
msgid "Authentication"
msgstr "Authentifizierung"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Authoritativ"
@@ -575,6 +575,9 @@ msgstr "Prüfen"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Prüfsumme"
@@ -983,6 +986,9 @@ msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr> aktivieren"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Dynamisches HE.net IP-Adress-Update aktivieren"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Aushandeln von IPv6-Adressen auf der PPP-Verbindung aktivieren"
@@ -2432,6 +2438,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Qualität"
@@ -2662,6 +2671,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po
index 5f9ea287e..a196f5b08 100644
--- a/modules/luci-base/po/el/base.po
+++ b/modules/luci-base/po/el/base.po
@@ -299,9 +299,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -409,6 +406,9 @@ msgstr ""
msgid "Authentication"
msgstr "Εξουσιοδότηση"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Κύριος"
@@ -584,6 +584,9 @@ msgstr "Έλεγχος"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Άθροισμα Ελέγχου"
@@ -1000,6 +1003,9 @@ msgstr "Ενεργοποίηση <abbr title=\"Spanning Tree Protocol\">STP</abb
msgid "Enable HE.net dynamic endpoint update"
msgstr "Ενεργοποίηση ενημέρωσης δυναμικού τερματικού σημείου HE.net."
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Ενεργοποίηση διαπραγμάτευσης IPv6 πάνω στη PPP ζεύξη"
@@ -2433,6 +2439,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2648,6 +2657,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po
index 6dc1de222..125314d83 100644
--- a/modules/luci-base/po/en/base.po
+++ b/modules/luci-base/po/en/base.po
@@ -290,9 +290,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -400,6 +397,9 @@ msgstr ""
msgid "Authentication"
msgstr "Authentication"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Authoritative"
@@ -573,6 +573,9 @@ msgstr "Check"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Checksum"
@@ -979,6 +982,9 @@ msgstr "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2399,6 +2405,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2614,6 +2623,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po
index f05fee8d7..da786b69d 100644
--- a/modules/luci-base/po/es/base.po
+++ b/modules/luci-base/po/es/base.po
@@ -296,9 +296,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -406,6 +403,9 @@ msgstr ""
msgid "Authentication"
msgstr "Autentificación"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autorizado"
@@ -580,6 +580,9 @@ msgstr "Comprobar"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Comprobación"
@@ -994,6 +997,9 @@ msgstr "Activar <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Activar actualización dinámica de punto final HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Activar negociación IPv6 en el enlace PPP"
@@ -2441,6 +2447,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Calidad"
@@ -2668,6 +2677,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po
index b7fe5828e..cce8ee20a 100644
--- a/modules/luci-base/po/fr/base.po
+++ b/modules/luci-base/po/fr/base.po
@@ -302,9 +302,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -412,6 +409,9 @@ msgstr ""
msgid "Authentication"
msgstr "Authentification"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autoritaire"
@@ -585,6 +585,9 @@ msgstr "Vérification"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Somme de contrôle"
@@ -1004,6 +1007,9 @@ msgstr "Activer le protocole <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Activer la mise à jour dynamique de l'extrémité du tunnel chez HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Activer la négociation IPv6 sur le lien PPP"
@@ -2454,6 +2460,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Qualitée"
@@ -2681,6 +2690,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -2869,9 +2881,9 @@ msgid ""
"instructions."
msgstr ""
"Désolé, il n'y a pas de gestion de mise à jour disponible, une nouvelle "
-"image du micrologiciel doit être écrite manuellement. Reportez-vous S.V."
-"P. au wiki pour connaître les instructions d'installation spécifiques à "
-"votre matériel."
+"image du micrologiciel doit être écrite manuellement. Reportez-vous S.V.P. "
+"au wiki pour connaître les instructions d'installation spécifiques à votre "
+"matériel."
msgid "Sort"
msgstr "Trier"
@@ -3429,9 +3441,9 @@ msgid ""
"compatible firmware image)."
msgstr ""
"Envoyer ici une image compatible avec le système de mise à jour pour "
-"remplacer le micrologiciel actuel. Cochez \"Garder la configuration\" "
-"pour maintenir la configuration actuelle (nécessite une image de "
-"micrologiciel compatible)."
+"remplacer le micrologiciel actuel. Cochez \"Garder la configuration\" pour "
+"maintenir la configuration actuelle (nécessite une image de micrologiciel "
+"compatible)."
msgid "Upload archive..."
msgstr "Envoi de l'archive…"
diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po
index a4920a19b..0b11005ca 100644
--- a/modules/luci-base/po/he/base.po
+++ b/modules/luci-base/po/he/base.po
@@ -289,9 +289,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -401,6 +398,9 @@ msgstr ""
msgid "Authentication"
msgstr "אימות"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "מוסמך"
@@ -575,6 +575,9 @@ msgstr "לבדוק"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr ""
@@ -964,6 +967,9 @@ msgstr "אפשר <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2366,6 +2372,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2582,6 +2591,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -2764,8 +2776,8 @@ msgid ""
"flashed manually. Please refer to the wiki for device specific install "
"instructions."
msgstr ""
-"סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא "
-"פנה אל ה-wiki של OpenWrt/LEDE עבור הוראות ספציפיות למכשיר שלך."
+"סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא פנה "
+"אל ה-wiki של OpenWrt/LEDE עבור הוראות ספציפיות למכשיר שלך."
msgid "Sort"
msgstr "מיין"
diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po
index a813f7206..2b85df15a 100644
--- a/modules/luci-base/po/hu/base.po
+++ b/modules/luci-base/po/hu/base.po
@@ -295,9 +295,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -405,6 +402,9 @@ msgstr ""
msgid "Authentication"
msgstr "Hitelesítés"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Hiteles"
@@ -580,6 +580,9 @@ msgstr "Ellenőrzés"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Ellenőrző összeg"
@@ -997,6 +1000,9 @@ msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr> engedélyezése"
msgid "Enable HE.net dynamic endpoint update"
msgstr "HE.net dinamikus végpont frissítésének engedélyezése"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "IPv6 egyeztetés engedélyezése a PPP linken"
@@ -2444,6 +2450,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Minőség"
@@ -2673,6 +2682,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -3418,8 +3430,7 @@ msgid ""
msgstr ""
"Itt tölthet fel egy új sysupgrade-kompatibilis képet a futó firmware "
"lecseréléséhez. A jelenlegi beállítások megtartásához jelölje be a "
-"\"Beállítások megtartása\" négyzetet (kompatibilis firmware kép "
-"szükséges)."
+"\"Beállítások megtartása\" négyzetet (kompatibilis firmware kép szükséges)."
msgid "Upload archive..."
msgstr "Archívum feltöltése..."
diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po
index 6bd6f0c43..2f5350dd7 100644
--- a/modules/luci-base/po/it/base.po
+++ b/modules/luci-base/po/it/base.po
@@ -302,9 +302,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -412,6 +409,9 @@ msgstr ""
msgid "Authentication"
msgstr "Autenticazione PEAP"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autoritativo"
@@ -585,6 +585,9 @@ msgstr "Verifica"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Checksum"
@@ -998,6 +1001,9 @@ msgstr "Abilita <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Abilitazione aggiornamento endpoint dinamico HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Attiva la negoziazione IPv6 sul collegamento PPP"
@@ -2438,6 +2444,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2656,6 +2665,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -3367,9 +3379,9 @@ msgid ""
"Check \"Keep settings\" to retain the current configuration (requires a "
"compatible firmware image)."
msgstr ""
-"Carica un'immagine sysupgrade compatibile quì per sostituire il firmware "
-"in esecuzione. Attivare la spunta \"Mantieni Impostazioni\" per mantenere "
-"la configurazione corrente (richiede un immagine del firmware compatibile)."
+"Carica un'immagine sysupgrade compatibile quì per sostituire il firmware in "
+"esecuzione. Attivare la spunta \"Mantieni Impostazioni\" per mantenere la "
+"configurazione corrente (richiede un immagine del firmware compatibile)."
msgid "Upload archive..."
msgstr "Carica archivio..."
diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po
index 483aa8e3a..ed7241254 100644
--- a/modules/luci-base/po/ja/base.po
+++ b/modules/luci-base/po/ja/base.po
@@ -3,18 +3,18 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2013-10-06 02:29+0200\n"
-"Last-Translator: Kentaro <kentaro.matsuyama@gmail.com>\n"
+"PO-Revision-Date: 2016-12-16 15:23+0900\n"
+"Last-Translator: musashino205 <musashino.open@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.6\n"
+"X-Generator: Poedit 1.5.7\n"
msgid "%s is untagged in multiple VLANs!"
-msgstr ""
+msgstr "%s は複数のVLANにUntaggedしています!"
msgid "(%d minute window, %d second interval)"
msgstr "(%d 分幅, %d 秒間隔)"
@@ -38,10 +38,10 @@ msgid "-- custom --"
msgstr "-- 手動設定 --"
msgid "-- match by device --"
-msgstr ""
+msgstr "-- デバイスで設定 --"
msgid "-- match by label --"
-msgstr ""
+msgstr "-- ラベルで設定 --"
msgid "1 Minute Load:"
msgstr "過去1分の負荷:"
@@ -95,6 +95,7 @@ msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-ゲートウェ
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
msgstr ""
+"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス (16進数)"
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 設定"
@@ -287,10 +288,7 @@ msgid ""
msgstr ""
msgid "Always announce default router"
-msgstr ""
-
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
+msgstr "常にデフォルト ルーターとして通知する"
msgid "Annex"
msgstr ""
@@ -339,6 +337,8 @@ msgstr ""
msgid "Announce as default router even if no public prefix is available."
msgstr ""
+"利用可能なパブリック プレフィクスが無くても、デフォルトのルーターとして通知し"
+"ます。"
msgid "Announced DNS domains"
msgstr ""
@@ -350,10 +350,10 @@ msgid "Anonymous Identity"
msgstr ""
msgid "Anonymous Mount"
-msgstr ""
+msgstr "アノニマス マウント"
msgid "Anonymous Swap"
-msgstr ""
+msgstr "アノニマス スワップ"
msgid "Antenna 1"
msgstr "アンテナ 1"
@@ -399,6 +399,9 @@ msgstr ""
msgid "Authentication"
msgstr "認証"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Authoritative"
@@ -409,25 +412,25 @@ msgid "Auto Refresh"
msgstr "自動更新"
msgid "Automatic"
-msgstr ""
+msgstr "自動"
msgid "Automatic Homenet (HNCP)"
msgstr ""
msgid "Automatically check filesystem for errors before mounting"
-msgstr ""
+msgstr "マウント実行前にファイルシステムのエラーを自動でチェックします。"
msgid "Automatically mount filesystems on hotplug"
-msgstr ""
+msgstr "ホットプラグによってファイルシステムを自動的にマウントします。"
msgid "Automatically mount swap on hotplug"
-msgstr ""
+msgstr "ホットプラグによってスワップ パーティションを自動的にマウントします。"
msgid "Automount Filesystem"
-msgstr ""
+msgstr "ファイルシステム 自動マウント"
msgid "Automount Swap"
-msgstr ""
+msgstr "スワップ 自動マウント"
msgid "Available"
msgstr "使用可"
@@ -500,6 +503,7 @@ msgstr ""
msgid "Bind only to specific interfaces rather than wildcard address."
msgstr ""
+"ワイルドカード アドレスではなく、特定のインターフェースのみにバインドします。"
msgid "Bind the tunnel to this interface (optional)."
msgstr ""
@@ -535,6 +539,8 @@ msgid ""
"Build/distribution specific feed definitions. This file will NOT be "
"preserved in any sysupgrade."
msgstr ""
+"ビルド/ディストリビューション固有のフィード定義です。このファイルはsysupgrade"
+"の際に引き継がれません。"
msgid "Buttons"
msgstr "ボタン"
@@ -549,7 +555,7 @@ msgid "Cancel"
msgstr "キャンセル"
msgid "Category"
-msgstr ""
+msgstr "カテゴリー"
msgid "Chain"
msgstr "チェイン"
@@ -570,6 +576,9 @@ msgid "Check"
msgstr "チェック"
msgid "Check fileystems before mount"
+msgstr "マウント前にファイルシステムをチェックする"
+
+msgid "Check this option to delete the existing networks from this radio."
msgstr ""
msgid "Checksum"
@@ -659,7 +668,7 @@ msgid "Connection Limit"
msgstr "接続制限"
msgid "Connection to server fails when TLS cannot be used"
-msgstr ""
+msgstr "TLSが使用できないとき、サーバーへの接続は失敗します。"
msgid "Connections"
msgstr "ネットワーク接続"
@@ -701,9 +710,11 @@ msgid ""
"Custom feed definitions, e.g. private feeds. This file can be preserved in a "
"sysupgrade."
msgstr ""
+"プライベート フィードなどのカスタム フィード定義です。このファイルは"
+"sysupgrade時に引き継ぐことができます。"
msgid "Custom feeds"
-msgstr ""
+msgstr "カスタム フィード"
msgid ""
"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
@@ -731,13 +742,13 @@ msgid "DHCPv6 Leases"
msgstr "DHCPv6 リース"
msgid "DHCPv6 client"
-msgstr ""
+msgstr "DHCPv6 クライアント"
msgid "DHCPv6-Mode"
-msgstr ""
+msgstr "DHCPv6-モード"
msgid "DHCPv6-Service"
-msgstr ""
+msgstr "DHCPv6-サービス"
msgid "DNS"
msgstr "DNS"
@@ -758,7 +769,7 @@ msgid "DPD Idle Timeout"
msgstr ""
msgid "DS-Lite AFTR address"
-msgstr ""
+msgstr "DS-Lite AFTR アドレス"
msgid "DSL"
msgstr ""
@@ -785,7 +796,7 @@ msgid "Default gateway"
msgstr "デフォルトゲートウェイ"
msgid "Default is stateless + stateful"
-msgstr ""
+msgstr "デフォルトは ステートレス + ステートフル です。"
msgid "Default route"
msgstr ""
@@ -826,7 +837,7 @@ msgid "Device Configuration"
msgstr "デバイス設定"
msgid "Device is rebooting..."
-msgstr ""
+msgstr "デバイスを再起動中です..."
msgid "Device unreachable"
msgstr ""
@@ -875,7 +886,7 @@ msgid "Distance to farthest network member in meters."
msgstr "最も遠い端末との距離(メートル)を設定してください。"
msgid "Distribution feeds"
-msgstr ""
+msgstr "ディストリビューション フィード"
msgid "Diversity"
msgstr "ダイバシティ"
@@ -938,7 +949,7 @@ msgstr ""
"す。"
msgid "Dual-Stack Lite (RFC6333)"
-msgstr ""
+msgstr "Dual-Stack Lite (RFC6333)"
msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
msgstr ""
@@ -986,6 +997,9 @@ msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr>を有効にする"
msgid "Enable HE.net dynamic endpoint update"
msgstr "HE.netの動的endpoint更新を有効にします"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "PPPリンクのIPv6ネゴシエーションを有効にする"
@@ -1062,7 +1076,7 @@ msgid "Ethernet Switch"
msgstr "イーサネットスイッチ"
msgid "Exclude interfaces"
-msgstr ""
+msgstr "除外インターフェース"
msgid "Expand hosts"
msgstr "拡張ホスト設定"
@@ -1078,7 +1092,7 @@ msgstr ""
"code>)."
msgid "External"
-msgstr ""
+msgstr "外部"
msgid "External system log server"
msgstr "外部システムログ・サーバー"
@@ -1087,10 +1101,10 @@ msgid "External system log server port"
msgstr "外部システムログ・サーバーポート"
msgid "External system log server protocol"
-msgstr ""
+msgstr "外部システムログ・サーバー プロトコル"
msgid "Extra SSH command options"
-msgstr ""
+msgstr "拡張 SSHコマンドオプション"
msgid "Fast Frames"
msgstr "ファスト・フレーム"
@@ -1117,6 +1131,8 @@ msgid ""
"Find all currently attached filesystems and swap and replace configuration "
"with defaults based on what was detected"
msgstr ""
+"現在アタッチされている全てのファイルシステムとスワップを検索し、検出結果に基"
+"づいてデフォルト設定を置き換えます。"
msgid "Find and join network"
msgstr "ネットワークを検索して参加"
@@ -1137,7 +1153,7 @@ msgid "Firewall Status"
msgstr "ファイアウォール・ステータス"
msgid "Firmware File"
-msgstr ""
+msgstr "ファームウェア ファイル"
msgid "Firmware Version"
msgstr "ファームウェア・バージョン"
@@ -1230,10 +1246,10 @@ msgid "General Setup"
msgstr "一般設定"
msgid "General options for opkg"
-msgstr ""
+msgstr "opkgの一般設定"
msgid "Generate Config"
-msgstr ""
+msgstr "コンフィグ生成"
msgid "Generate archive"
msgstr "バックアップアーカイブの作成"
@@ -1245,7 +1261,7 @@ msgid "Given password confirmation did not match, password not changed!"
msgstr "入力されたパスワードが一致しません。パスワードは変更されませんでした!"
msgid "Global Settings"
-msgstr ""
+msgstr "全体設定"
msgid "Global network options"
msgstr ""
@@ -1260,7 +1276,7 @@ msgid "Group Password"
msgstr ""
msgid "Guest"
-msgstr ""
+msgstr "ゲスト"
msgid "HE.net password"
msgstr "HE.net パスワード"
@@ -1269,7 +1285,7 @@ msgid "HE.net username"
msgstr ""
msgid "HT mode (802.11n)"
-msgstr ""
+msgstr "HT モード (802.11n)"
msgid "Handler"
msgstr "ハンドラ"
@@ -1281,7 +1297,7 @@ msgid "Header Error Code Errors (HEC)"
msgstr ""
msgid "Heartbeat"
-msgstr ""
+msgstr "ハートビート"
msgid ""
"Here you can configure the basic aspects of your device like its hostname or "
@@ -1301,7 +1317,7 @@ msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>の隠匿"
msgid "Host"
-msgstr ""
+msgstr "ホスト"
msgid "Host entries"
msgstr "ホストエントリー"
@@ -1323,7 +1339,7 @@ msgid "Hostnames"
msgstr "ホスト名"
msgid "Hybrid"
-msgstr ""
+msgstr "ハイブリッド"
msgid "IKE DH Group"
msgstr ""
@@ -1362,7 +1378,7 @@ msgid "IPv4 only"
msgstr "IPv4のみ"
msgid "IPv4 prefix"
-msgstr ""
+msgstr "IPv4 プレフィクス"
msgid "IPv4 prefix length"
msgstr "IPv4 プレフィクス長"
@@ -1371,7 +1387,7 @@ msgid "IPv4-Address"
msgstr "IPv4-アドレス"
msgid "IPv4-in-IPv4 (RFC2003)"
-msgstr ""
+msgstr "IPv4-in-IPv4 (RFC2003)"
msgid "IPv6"
msgstr "IPv6"
@@ -1383,10 +1399,10 @@ msgid "IPv6 Neighbours"
msgstr ""
msgid "IPv6 Settings"
-msgstr ""
+msgstr "IPv6 設定"
msgid "IPv6 ULA-Prefix"
-msgstr ""
+msgstr "IPv6 ULA-プレフィクス"
msgid "IPv6 WAN Status"
msgstr "IPv6 WAN ステータス"
@@ -1535,7 +1551,7 @@ msgid "Interface is shutting down..."
msgstr "インターフェース終了中..."
msgid "Interface name"
-msgstr ""
+msgstr "インターフェース名"
msgid "Interface not present or not connected yet."
msgstr "インターフェースが存在しないか、接続していません"
@@ -1550,7 +1566,7 @@ msgid "Interfaces"
msgstr "インターフェース"
msgid "Internal"
-msgstr ""
+msgstr "内部"
msgid "Internal Server Error"
msgstr "内部サーバーエラー"
@@ -1567,13 +1583,12 @@ msgstr "無効なVLAN IDです! ユニークなIDを入力してください。"
msgid "Invalid username and/or password! Please try again."
msgstr "ユーザー名とパスワードが不正です! もう一度入力してください。"
-#, fuzzy
msgid ""
"It appears that you are trying to flash an image that does not fit into the "
"flash memory, please verify the image file!"
msgstr ""
-"更新しようとしたイメージファイルはこのフラッシュメモリに適合しません。もう一"
-"度イメージファイルを確認してください!"
+"更新しようとしたイメージファイルはこのフラッシュメモリに適合しません。イメー"
+"ジファイルを確認してください!"
msgid "Java Script required!"
msgstr "JavaScriptを有効にしてください!"
@@ -1585,7 +1600,7 @@ msgid "Join Network: Wireless Scan"
msgstr "ネットワークに接続する: 無線LANスキャン"
msgid "Joining Network: %q"
-msgstr ""
+msgstr "次のネットワークに参加: %q"
msgid "Keep settings"
msgstr "設定を保持する"
@@ -1630,13 +1645,13 @@ msgid "Language and Style"
msgstr "言語とスタイル"
msgid "Latency"
-msgstr ""
+msgstr "レイテンシー"
msgid "Leaf"
msgstr ""
msgid "Lease time"
-msgstr ""
+msgstr "リース時間"
msgid "Lease validity time"
msgstr "リース有効時間"
@@ -1666,7 +1681,7 @@ msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
msgstr ""
msgid "Limit listening to these interfaces, and loopback."
-msgstr ""
+msgstr "待ち受けをこれらのインターフェースとループバックに制限します。"
msgid "Line Attenuation (LATN)"
msgstr ""
@@ -1691,7 +1706,7 @@ msgstr ""
"リストを設定します"
msgid "List of SSH key files for auth"
-msgstr ""
+msgstr "認証用 SSH暗号キー ファイルのリスト"
msgid "List of domains to allow RFC1918 responses for"
msgstr "RFC1918の応答を許可するリスト"
@@ -1700,10 +1715,10 @@ msgid "List of hosts that supply bogus NX domain results"
msgstr ""
msgid "Listen Interfaces"
-msgstr ""
+msgstr "待ち受けインターフェース"
msgid "Listen Port"
-msgstr ""
+msgstr "待ち受けポート"
msgid "Listen only on the given interface or, if unspecified, on all"
msgstr ""
@@ -1723,7 +1738,7 @@ msgid "Loading"
msgstr "ロード中"
msgid "Local IP address to assign"
-msgstr ""
+msgstr "割り当てるローカル IPアドレス"
msgid "Local IPv4 address"
msgstr "ローカル IPv4 アドレス"
@@ -1750,6 +1765,8 @@ msgstr ""
msgid "Local domain suffix appended to DHCP names and hosts file entries"
msgstr ""
+"DHCP名とhostsファイルのエントリーに付される、ローカルドメインサフィックスで"
+"す。"
msgid "Local server"
msgstr "ローカルサーバー"
@@ -1763,7 +1780,7 @@ msgid "Localise queries"
msgstr "ローカライズクエリ"
msgid "Locked to channel %s used by: %s"
-msgstr ""
+msgstr "チャネル %s にロックされています。次で使用されています: %s"
msgid "Log output level"
msgstr "ログ出力レベル"
@@ -1818,9 +1835,10 @@ msgid ""
"Make sure to clone the root filesystem using something like the commands "
"below:"
msgstr ""
+"以下のようなコマンドを使用して、ルート ファイルシステムを複製してください:"
msgid "Manual"
-msgstr ""
+msgstr "手動"
msgid "Max. Attainable Data Rate (ATTNDR)"
msgstr ""
@@ -1847,6 +1865,8 @@ msgid ""
"Maximum length of the name is 15 characters including the automatic protocol/"
"bridge prefix (br-, 6in4-, pppoe- etc.)"
msgstr ""
+"名前の長さは、自動的に含まれるプロトコル/ブリッジ プレフィックス (br-, "
+"6in4-, pppoe- など)と合わせて最大15文字です。"
msgid "Maximum number of leased addresses."
msgstr "リースするアドレスの最大数です"
@@ -1882,7 +1902,7 @@ msgid "Mode"
msgstr "モード"
msgid "Model"
-msgstr ""
+msgstr "モデル"
msgid "Modem device"
msgstr "モデムデバイス"
@@ -1916,7 +1936,7 @@ msgstr ""
"表示しています。"
msgid "Mount filesystems not specifically configured"
-msgstr ""
+msgstr "明確に設定されていないファイルシステムをマウントします。"
msgid "Mount options"
msgstr "マウントオプション"
@@ -1925,7 +1945,7 @@ msgid "Mount point"
msgstr "マウントポイント"
msgid "Mount swap not specifically configured"
-msgstr ""
+msgstr "明確に設定されていないスワップ パーティションをマウントします。"
msgid "Mounted file systems"
msgstr "マウント中のファイルシステム"
@@ -1949,10 +1969,10 @@ msgid "NAT-T Mode"
msgstr ""
msgid "NAT64 Prefix"
-msgstr ""
+msgstr "NAT64 プレフィクス"
msgid "NDP-Proxy"
-msgstr ""
+msgstr "NDP-プロキシ"
msgid "NT Domain"
msgstr ""
@@ -2042,7 +2062,7 @@ msgid "Non Pre-emtive CRC errors (CRC_P)"
msgstr ""
msgid "Non-wildcard"
-msgstr ""
+msgstr "非ワイルドカード"
msgid "None"
msgstr "なし"
@@ -2123,7 +2143,7 @@ msgid "OpenConnect (CISCO AnyConnect)"
msgstr ""
msgid "Operating frequency"
-msgstr ""
+msgstr "動作周波数"
msgid "Option changed"
msgstr "変更されるオプション"
@@ -2198,7 +2218,7 @@ msgid "Override TTL"
msgstr ""
msgid "Override default interface name"
-msgstr ""
+msgstr "デフォルトのインターフェース名を上書きします。"
msgid "Override the gateway in DHCP responses"
msgstr "DHCPレスポンス内のゲートウェイアドレスを上書きする"
@@ -2244,7 +2264,7 @@ msgid "PPPoE"
msgstr "PPPoE"
msgid "PPPoSSH"
-msgstr ""
+msgstr "PPPoSSH"
msgid "PPtP"
msgstr "PPtP"
@@ -2361,7 +2381,7 @@ msgid "Pre-emtive CRC errors (CRCP_P)"
msgstr ""
msgid "Preshared Key"
-msgstr ""
+msgstr "事前共有鍵"
msgid ""
"Presume peer to be dead after given amount of LCP echo failures, use 0 to "
@@ -2371,7 +2391,7 @@ msgstr ""
"を設定した場合、失敗しても無視します"
msgid "Prevent listening on these interfaces."
-msgstr ""
+msgstr "これらのインターフェースでの待ち受けを停止します。"
msgid "Prevents client-to-client communication"
msgstr "クライアント同士の通信を制限します"
@@ -2380,7 +2400,7 @@ msgid "Prism2/2.5/3 802.11b Wireless Controller"
msgstr "Prism2/2.5/3 802.11b 無線LANコントローラ"
msgid "Private Key"
-msgstr ""
+msgstr "秘密鍵"
msgid "Proceed"
msgstr "続行"
@@ -2416,11 +2436,14 @@ msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "擬似アドホック (ahdemo)"
msgid "Public Key"
-msgstr ""
+msgstr "公開鍵"
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "クオリティ"
@@ -2485,7 +2508,6 @@ msgstr ""
msgid "Really reset all changes?"
msgstr "本当に全ての変更をリセットしますか?"
-#, fuzzy
msgid ""
"Really shut down network?\\nYou might lose access to this device if you are "
"connected via this interface."
@@ -2581,13 +2603,13 @@ msgid "Replace wireless configuration"
msgstr "無線設定を置換する"
msgid "Request IPv6-address"
-msgstr ""
+msgstr "IPv6-アドレスのリクエスト"
msgid "Request IPv6-prefix of length"
msgstr ""
msgid "Require TLS"
-msgstr ""
+msgstr "TLSが必要"
msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
msgstr "DOCSIS 3.0を使用するいくつかのISPでは必要になります"
@@ -2646,16 +2668,19 @@ msgid "Root directory for files served via TFTP"
msgstr "TFTP経由でファイルを取り扱う際のルートディレクトリ"
msgid "Root preparation"
-msgstr ""
+msgstr "ルートの準備"
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
msgid "Router Advertisement-Service"
-msgstr ""
+msgstr "ルーター アドバタイズメント-サービス"
msgid "Router Password"
msgstr "ルーター・パスワード"
@@ -2694,13 +2719,13 @@ msgid "SSH Access"
msgstr "SSHアクセス"
msgid "SSH server address"
-msgstr ""
+msgstr "SSH サーバーアドレス"
msgid "SSH server port"
-msgstr ""
+msgstr "SSH サーバーポート"
msgid "SSH username"
-msgstr ""
+msgstr "SSH ユーザー名"
msgid "SSH-Keys"
msgstr "SSHキー"
@@ -2749,7 +2774,7 @@ msgid "Server Settings"
msgstr "サーバー設定"
msgid "Server password"
-msgstr ""
+msgstr "サーバー パスワード"
msgid ""
"Server password, enter the specific password of the tunnel when the username "
@@ -2757,7 +2782,7 @@ msgid ""
msgstr ""
msgid "Server username"
-msgstr ""
+msgstr "サーバー ユーザー名"
msgid "Service Name"
msgstr "サービス名"
@@ -2768,9 +2793,8 @@ msgstr "サービスタイプ"
msgid "Services"
msgstr "サービス"
-#, fuzzy
msgid "Set up Time Synchronization"
-msgstr "時刻設定"
+msgstr "時刻同期設定"
msgid "Setup DHCP Server"
msgstr "DHCPサーバーを設定"
@@ -2803,7 +2827,7 @@ msgid "Size"
msgstr "サイズ"
msgid "Size (.ipk)"
-msgstr ""
+msgstr "サイズ (.ipk)"
msgid "Skip"
msgstr "スキップ"
@@ -2837,9 +2861,9 @@ msgid ""
"flashed manually. Please refer to the wiki for device specific install "
"instructions."
msgstr ""
-"申し訳ありません。現在このボードではsysupgradeがサポートがされていないた"
-"め、ファームウェア更新は手動で行っていただく必要があります。wikiを"
-"参照して、このデバイスのインストール手順を参照してください。"
+"申し訳ありません。現在このボードではsysupgradeがサポートがされていないため、"
+"ファームウェア更新は手動で行っていただく必要があります。wikiを参照して、この"
+"デバイスのインストール手順を参照してください。"
msgid "Sort"
msgstr "ソート"
@@ -2892,7 +2916,7 @@ msgid "Start priority"
msgstr "優先順位"
msgid "Startup"
-msgstr "Startup"
+msgstr "スタートアップ"
msgid "Static IPv4 Routes"
msgstr "IPv4 静的ルーティング"
@@ -2940,7 +2964,7 @@ msgid "Suppress logging of the routine operation of these protocols"
msgstr ""
msgid "Swap"
-msgstr ""
+msgstr "スワップ"
msgid "Swap Entry"
msgstr "スワップ機能"
@@ -3363,7 +3387,7 @@ msgid "Unmanaged"
msgstr "Unmanaged"
msgid "Unmount"
-msgstr ""
+msgstr "アンマウント"
msgid "Unsaved Changes"
msgstr "保存されていない変更"
@@ -3379,9 +3403,9 @@ msgid ""
"Check \"Keep settings\" to retain the current configuration (requires a "
"compatible firmware image)."
msgstr ""
-"システムをアップデートする場合、sysupgrade機能に互換性のあるファームウェア"
-"イメージをアップロードしてください。\"設定の保持\"を有効にすると、現在の設"
-"定を維持してアップデートを行います。ただし、OpenWrt/LEDE互換のファームウェアイ"
+"システムをアップデートする場合、sysupgrade機能に互換性のあるファームウェアイ"
+"メージをアップロードしてください。\"設定の保持\"を有効にすると、現在の設定を"
+"維持してアップデートを行います。ただし、OpenWrt/LEDE互換のファームウェアイ"
"メージがアップロードされた場合のみ、設定は保持されます。"
msgid "Upload archive..."
@@ -3412,16 +3436,16 @@ msgid "Use TTL on tunnel interface"
msgstr "トンネルインターフェースのTTLを設定"
msgid "Use as external overlay (/overlay)"
-msgstr ""
+msgstr "外部オーバーレイとして使用する (/overlay)"
msgid "Use as root filesystem (/)"
-msgstr ""
+msgstr "ルート ファイルシステムとして使用する (/)"
msgid "Use broadcast flag"
msgstr "ブロードキャスト・フラグを使用する"
msgid "Use builtin IPv6-management"
-msgstr ""
+msgstr "ビルトインのIPv6-マネジメントを使用する"
msgid "Use custom DNS servers"
msgstr "DNSサーバーを手動で設定"
@@ -3553,7 +3577,7 @@ msgid "Warning"
msgstr "警告"
msgid "Warning: There are unsaved changes that will get lost on reboot!"
-msgstr ""
+msgstr "警告: 再起動すると消えてしまう、保存されていない設定があります!"
msgid "Whether to create an IPv6 default route over the tunnel"
msgstr ""
@@ -3562,7 +3586,7 @@ msgid "Whether to route only packets from delegated prefixes"
msgstr ""
msgid "Width"
-msgstr ""
+msgstr "帯域幅"
msgid "WireGuard VPN"
msgstr ""
@@ -3604,7 +3628,7 @@ msgid "Write received DNS requests to syslog"
msgstr "受信したDNSリクエストをsyslogへ記録します"
msgid "Write system log to file"
-msgstr ""
+msgstr "システムログをファイルに書き込む"
msgid "XR Support"
msgstr "XRサポート"
@@ -3635,9 +3659,8 @@ msgstr "全て"
msgid "auto"
msgstr "自動"
-#, fuzzy
msgid "automatic"
-msgstr "static"
+msgstr "自動"
msgid "baseT"
msgstr "baseT"
@@ -3661,7 +3684,7 @@ msgid "disable"
msgstr "無効"
msgid "disabled"
-msgstr ""
+msgstr "無効"
msgid "expired"
msgstr "期限切れ"
@@ -3689,7 +3712,7 @@ msgid "hidden"
msgstr ""
msgid "hybrid mode"
-msgstr ""
+msgstr "ハイブリッド モード"
msgid "if target is a network"
msgstr "ターゲットがネットワークの場合"
@@ -3740,13 +3763,13 @@ msgid "overlay"
msgstr ""
msgid "relay mode"
-msgstr ""
+msgstr "リレー モード"
msgid "routed"
msgstr "routed"
msgid "server mode"
-msgstr ""
+msgstr "サーバー モード"
msgid "skiplink1 Skip to navigation"
msgstr ""
@@ -3755,19 +3778,19 @@ msgid "skiplink2 Skip to content"
msgstr ""
msgid "stateful-only"
-msgstr ""
+msgstr "ステートフルのみ"
msgid "stateless"
-msgstr ""
+msgstr "ステートレス"
msgid "stateless + stateful"
-msgstr ""
+msgstr "ステートレス + ステートフル"
msgid "tagged"
msgstr "tagged"
msgid "unknown"
-msgstr ""
+msgstr "不明"
msgid "unlimited"
msgstr "無期限"
diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po
index e6d18c04c..af52ee733 100644
--- a/modules/luci-base/po/ko/base.po
+++ b/modules/luci-base/po/ko/base.po
@@ -284,9 +284,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -394,6 +391,9 @@ msgstr ""
msgid "Authentication"
msgstr ""
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr ""
@@ -569,6 +569,9 @@ msgstr ""
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr ""
@@ -934,7 +937,6 @@ msgstr ""
msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
msgstr ""
-""
msgid "Dynamic tunnel"
msgstr ""
@@ -978,6 +980,9 @@ msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr> 활성화"
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -1549,7 +1554,6 @@ msgstr ""
msgid "Invalid username and/or password! Please try again."
msgstr ""
-#, fuzzy
msgid ""
"It appears that you are trying to flash an image that does not fit into the "
"flash memory, please verify the image file!"
@@ -2394,6 +2398,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -3075,7 +3082,6 @@ msgid ""
"when finished."
msgstr ""
-#, fuzzy
msgid ""
"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
"few minutes before you try to reconnect. It might be necessary to renew the "
@@ -3712,9 +3718,3 @@ msgstr ""
msgid "« Back"
msgstr ""
-
-#~ msgid "An additional network will be created if you leave this unchecked."
-#~ msgstr ""
-
-#~ msgid "CPU"
-#~ msgstr ""
diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po
index 74f03cd7a..8ba922f87 100644
--- a/modules/luci-base/po/ms/base.po
+++ b/modules/luci-base/po/ms/base.po
@@ -279,9 +279,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -389,6 +386,9 @@ msgstr ""
msgid "Authentication"
msgstr "Authentifizierung"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Pengesahan"
@@ -559,6 +559,9 @@ msgstr ""
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Jumlah disemak "
@@ -949,6 +952,9 @@ msgstr "Mengaktifkan <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2371,6 +2377,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2585,6 +2594,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/no/base.po b/modules/luci-base/po/no/base.po
index ed9d346e6..f9dad0a4e 100644
--- a/modules/luci-base/po/no/base.po
+++ b/modules/luci-base/po/no/base.po
@@ -288,9 +288,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -398,6 +395,9 @@ msgstr ""
msgid "Authentication"
msgstr "Godkjenning"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autoritativ"
@@ -571,6 +571,9 @@ msgstr "Kontroller"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Kontrollsum"
@@ -984,6 +987,9 @@ msgstr "Aktiver <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Aktiver HE,net dynamisk endepunkt oppdatering"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Aktiver IPv6 på PPP lenke"
@@ -2419,6 +2425,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Kvalitet"
@@ -2646,6 +2655,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -3383,8 +3395,8 @@ msgid ""
"compatible firmware image)."
msgstr ""
"Last her opp en sysupgrade-kompatibel firmware som skal erstatte den "
-"kjørende firmware. Merk av \"Behold innstillinger\" for å beholde "
-"gjeldene konfigurasjon. (en kompatibel firmware er nødvendig)"
+"kjørende firmware. Merk av \"Behold innstillinger\" for å beholde gjeldene "
+"konfigurasjon. (en kompatibel firmware er nødvendig)"
msgid "Upload archive..."
msgstr "Last opp arkiv..."
diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po
index 4f15a3769..a78584cbb 100644
--- a/modules/luci-base/po/pl/base.po
+++ b/modules/luci-base/po/pl/base.po
@@ -303,9 +303,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -413,6 +410,9 @@ msgstr ""
msgid "Authentication"
msgstr "Uwierzytelnianie"
+msgid "Authentication Type"
+msgstr ""
+
# Nawet M$ tego nie tłumaczy;)
msgid "Authoritative"
msgstr "Autorytatywny"
@@ -589,6 +589,9 @@ msgstr "Sprawdź"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Suma kontrolna"
@@ -1011,6 +1014,9 @@ msgstr "Włącz <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Włącz dynamiczną aktualizację punktu końcowego sieci HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Włącz negocjację IPv6 na łączu PPP"
@@ -2467,6 +2473,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Jakość"
@@ -2695,6 +2704,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -2883,9 +2895,9 @@ msgid ""
"flashed manually. Please refer to the wiki for device specific install "
"instructions."
msgstr ""
-"Przepraszamy, ale nie ma wsparcia dla trybu sysupgrade. Nowy firmware "
-"musi być wgrany ręcznie. Sprawdź stronę wiki, aby uzyskać instrukcję dla "
-"danego urządzenia."
+"Przepraszamy, ale nie ma wsparcia dla trybu sysupgrade. Nowy firmware musi "
+"być wgrany ręcznie. Sprawdź stronę wiki, aby uzyskać instrukcję dla danego "
+"urządzenia."
msgid "Sort"
msgstr "Posortuj"
diff --git a/modules/luci-base/po/pt-br/base.po b/modules/luci-base/po/pt-br/base.po
index c257abd1b..0bcd6398d 100644
--- a/modules/luci-base/po/pt-br/base.po
+++ b/modules/luci-base/po/pt-br/base.po
@@ -303,9 +303,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -413,6 +410,9 @@ msgstr ""
msgid "Authentication"
msgstr "Autenticação"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autoritário"
@@ -586,6 +586,9 @@ msgstr "Verificar"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Soma de verificação"
@@ -1007,6 +1010,9 @@ msgstr "Ativar <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Ativar a atualização de ponto final dinâmico HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Ativar a negociação de IPv6 no enlace PPP"
@@ -2472,6 +2478,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Qualidade"
@@ -2701,6 +2710,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -2889,8 +2901,8 @@ msgid ""
"instructions."
msgstr ""
"Sinto muito, não existe suporte para o sysupgrade. Uma nova imagem de "
-"firmware deve ser gravada manualmente. Por favor, consulte a wiki "
-"para instruções específicas da instalação deste dispositivo."
+"firmware deve ser gravada manualmente. Por favor, consulte a wiki para "
+"instruções específicas da instalação deste dispositivo."
msgid "Sort"
msgstr "Ordenar"
diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po
index 053419850..d8790dc1f 100644
--- a/modules/luci-base/po/pt/base.po
+++ b/modules/luci-base/po/pt/base.po
@@ -301,9 +301,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -411,6 +408,9 @@ msgstr ""
msgid "Authentication"
msgstr "Autenticação"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autoritário"
@@ -584,6 +584,9 @@ msgstr "Verificar"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Checksum"
@@ -1000,6 +1003,9 @@ msgstr "Ativar <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Ativar a atualização dinâmica de ponto final HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Ativar a negociação IPv6 no link PPP"
@@ -2439,6 +2445,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Qualidade"
@@ -2665,6 +2674,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po
index d25774706..4135c796a 100644
--- a/modules/luci-base/po/ro/base.po
+++ b/modules/luci-base/po/ro/base.po
@@ -287,9 +287,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -397,6 +394,9 @@ msgstr ""
msgid "Authentication"
msgstr "Autentificare"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Autoritare"
@@ -567,6 +567,9 @@ msgstr "Verificare"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Suma de verificare"
@@ -955,6 +958,9 @@ msgstr "Activeaza <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2363,6 +2369,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Calitate"
@@ -2578,6 +2587,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po
index 4ecad940e..e7045884b 100644
--- a/modules/luci-base/po/ru/base.po
+++ b/modules/luci-base/po/ru/base.po
@@ -300,9 +300,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -410,6 +407,9 @@ msgstr ""
msgid "Authentication"
msgstr "Аутентификация"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Авторитетный"
@@ -584,6 +584,9 @@ msgstr "Проверить"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Контрольная сумма"
@@ -1001,6 +1004,9 @@ msgstr "Включить <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Включить динамическое обновление оконечной точки HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Включить IPv6-согласование на PPP-соединении"
@@ -2449,6 +2455,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Качество"
@@ -2676,6 +2685,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -2863,8 +2875,8 @@ msgid ""
"instructions."
msgstr ""
"К сожалению, автоматическое обновление не поддерживается, новая прошивка "
-"должна быть установлена вручную. Обратитесь к вики для получения "
-"конкретных инструкций для вашего устройства."
+"должна быть установлена вручную. Обратитесь к вики для получения конкретных "
+"инструкций для вашего устройства."
msgid "Sort"
msgstr "Сортировка"
diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po
index a0a355fbb..f82402949 100644
--- a/modules/luci-base/po/sk/base.po
+++ b/modules/luci-base/po/sk/base.po
@@ -273,9 +273,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -383,6 +380,9 @@ msgstr ""
msgid "Authentication"
msgstr ""
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr ""
@@ -553,6 +553,9 @@ msgstr ""
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr ""
@@ -936,6 +939,9 @@ msgstr ""
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2338,6 +2344,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2551,6 +2560,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po
index 785e90022..4e228082e 100644
--- a/modules/luci-base/po/sv/base.po
+++ b/modules/luci-base/po/sv/base.po
@@ -279,9 +279,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -389,6 +386,9 @@ msgstr ""
msgid "Authentication"
msgstr ""
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr ""
@@ -559,6 +559,9 @@ msgstr ""
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr ""
@@ -942,6 +945,9 @@ msgstr ""
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2344,6 +2350,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2557,6 +2566,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot
index f29f1e320..5a77cd293 100644
--- a/modules/luci-base/po/templates/base.pot
+++ b/modules/luci-base/po/templates/base.pot
@@ -266,9 +266,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -376,6 +373,9 @@ msgstr ""
msgid "Authentication"
msgstr ""
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr ""
@@ -546,6 +546,9 @@ msgstr ""
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr ""
@@ -929,6 +932,9 @@ msgstr ""
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2331,6 +2337,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2544,6 +2553,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po
index 3d881f500..7f0ea7e16 100644
--- a/modules/luci-base/po/tr/base.po
+++ b/modules/luci-base/po/tr/base.po
@@ -286,9 +286,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -396,6 +393,9 @@ msgstr ""
msgid "Authentication"
msgstr "Kimlik doğrulama"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Yetkilendirme"
@@ -566,6 +566,9 @@ msgstr ""
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr ""
@@ -949,6 +952,9 @@ msgstr ""
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2351,6 +2357,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2564,6 +2573,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po
index b5d28c20d..29b1514e2 100644
--- a/modules/luci-base/po/uk/base.po
+++ b/modules/luci-base/po/uk/base.po
@@ -310,9 +310,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -420,6 +417,9 @@ msgstr ""
msgid "Authentication"
msgstr "Автентифікація"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Надійний"
@@ -593,6 +593,9 @@ msgstr "Перевірити"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Контрольна сума"
@@ -1010,6 +1013,9 @@ msgstr "Увімкнути <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "Увімкнути динамічне оновлення кінцевої точки HE.net"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "Увімкнути узгодження IPv6 для PPP-з'єднань"
@@ -2460,6 +2466,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "Якість"
@@ -2689,6 +2698,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -2876,8 +2888,8 @@ msgid ""
"instructions."
msgstr ""
"На жаль, автоматичне оновлення системи не підтримується. Новий образ "
-"прошивки повинен бути залитий вручну. Зверніться до Wiki за "
-"інструкцією з інсталяції для конкретного пристрою."
+"прошивки повинен бути залитий вручну. Зверніться до Wiki за інструкцією з "
+"інсталяції для конкретного пристрою."
msgid "Sort"
msgstr "Сортування"
@@ -3433,9 +3445,9 @@ msgid ""
"Check \"Keep settings\" to retain the current configuration (requires a "
"compatible firmware image)."
msgstr ""
-"Відвантажити sysupgrade-сумісний образ, щоб замінити поточну прошивку. "
-"Для збереження поточної конфігурації встановіть прапорець \"Зберегти "
-"настройки\" (потрібен сумісний образ прошивки)."
+"Відвантажити sysupgrade-сумісний образ, щоб замінити поточну прошивку. Для "
+"збереження поточної конфігурації встановіть прапорець \"Зберегти настройки"
+"\" (потрібен сумісний образ прошивки)."
msgid "Upload archive..."
msgstr "Відвантажити архів..."
diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po
index cb5e401c6..0cc83bf5a 100644
--- a/modules/luci-base/po/vi/base.po
+++ b/modules/luci-base/po/vi/base.po
@@ -280,9 +280,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -390,6 +387,9 @@ msgstr ""
msgid "Authentication"
msgstr "Xác thực"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "Authoritative"
@@ -560,6 +560,9 @@ msgstr ""
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "Checksum"
@@ -954,6 +957,9 @@ msgstr "Kích hoạt <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr ""
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr ""
@@ -2374,6 +2380,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr ""
@@ -2589,6 +2598,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
diff --git a/modules/luci-base/po/zh-cn/base.po b/modules/luci-base/po/zh-cn/base.po
index bbcc7e7cf..7c00f8ff8 100644
--- a/modules/luci-base/po/zh-cn/base.po
+++ b/modules/luci-base/po/zh-cn/base.po
@@ -3,21 +3,21 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-21 23:08+0200\n"
-"PO-Revision-Date: 2015-12-20 13:14+0800\n"
-"Last-Translator: GuoGuo <gch981213@gmail.com>\n"
+"PO-Revision-Date: 2017-01-07 21:46+0800\n"
+"Last-Translator: Hsing-Wang Liao <kuoruan@gmail.com>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Poedit 1.8.5\n"
+"X-Generator: Poedit 1.8.11\n"
"Language-Team: \n"
msgid "%s is untagged in multiple VLANs!"
-msgstr ""
+msgstr "%s 在多个 VLAN 中未标记"
msgid "(%d minute window, %d second interval)"
-msgstr "(%d分钟信息,%d秒刷新)"
+msgstr "(%d 分钟信息,%d 秒刷新)"
msgid "(%s available)"
msgstr "(%s 可用)"
@@ -50,91 +50,89 @@ msgid "15 Minute Load:"
msgstr "15分钟负载:"
msgid "464XLAT (CLAT)"
-msgstr ""
+msgstr "464XLAT (CLAT)"
msgid "5 Minute Load:"
msgstr "5分钟负载:"
msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
-msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
+msgstr "<abbr title=\"基本服务集标识符\">BSSID</abbr>"
msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
-msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 查询端口"
+msgstr "<abbr title=\"域名服务系统\">DNS</abbr> 查询端口"
msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
-msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 服务器端口"
+msgstr "<abbr title=\"域名服务系统\">DNS</abbr> 服务器端口"
msgid ""
"<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
"order of the resolvfile"
-msgstr "将会按照指定的顺序查询<abbr title=\"Domain Name System\">DNS</abbr>"
+msgstr "将会按照指定的顺序查询<abbr title=\"域名服务系统\">DNS</abbr>"
msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+msgstr "<abbr title=\"扩展服务集标识符\">ESSID</abbr>"
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
-msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-地址"
+msgstr "<abbr title=\"互联网协议第4版\">IPv4</abbr>-地址"
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
-msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-网关"
+msgstr "<abbr title=\"互联网协议第4版\">IPv4</abbr>-网关"
msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
-msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-子网掩码"
+msgstr "<abbr title=\"互联网协议第4版\">IPv4</abbr>-子网掩码"
msgid ""
"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
"(CIDR)"
msgstr ""
-"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-地址或超网() (<abbr "
-"title=\"无类别域间路由\">CIDR</abbr>)"
+"<abbr title=\"互联网协议第6版\">IPv6</abbr>-地址或超网(<abbr title=\"无类别域"
+"间路由\">CIDR</abbr>)"
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
-msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-网关"
+msgstr "<abbr title=\"互联网协议第6版\">IPv6</abbr>-网关"
msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
-msgstr ""
-"<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-后缀(十六进制)"
+msgstr "<abbr title=\"互联网协议第6版\">IPv6</abbr>-后缀(十六进制)"
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
-msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>配置"
+msgstr "<abbr title=\"发光二极管\">LED</abbr>配置"
msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
-msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>名称"
+msgstr "<abbr title=\"发光二极管\">LED</abbr>名称"
msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
-msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-地址"
+msgstr "<abbr title=\"介质访问控制\">MAC</abbr>-地址"
msgid ""
"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
"Protocol\">DHCP</abbr> leases"
-msgstr ""
-"最大<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>分配数量"
+msgstr "最大<abbr title=\"动态主机配置协议\">DHCP</abbr>分配数量"
msgid ""
"<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
"Domain Name System\">EDNS0</abbr> packet size"
-msgstr "最大<abbr title=\"DNS扩展名\">EDNS0</abbr>数据包大小"
+msgstr "最大<abbr title=\"DNS扩展名机制\">EDNS0</abbr>数据包大小"
msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
-msgstr "<abbr title=\"maximal\">最大</abbr>并发查询数"
+msgstr "最大并发查询数"
msgid "<abbr title='Pairwise: %s / Group: %s'>%s - %s</abbr>"
msgstr "<abbr title='Pairwise: %s / Group: %s'>%s - %s</abbr>"
msgid "A43C + J43 + A43"
-msgstr ""
+msgstr "A43C + J43 + A43"
msgid "A43C + J43 + A43 + V43"
-msgstr ""
+msgstr "A43C + J43 + A43 + V43"
msgid "ADSL"
msgstr "ADSL"
msgid "AICCU (SIXXS)"
-msgstr ""
+msgstr "AICCU (SIXXS)"
msgid "ANSI T1.413"
-msgstr ""
+msgstr "ANSI T1.413"
msgid "APN"
msgstr "APN"
@@ -146,7 +144,7 @@ msgid "ARP retry threshold"
msgstr "ARP重试阈值"
msgid "ATM (Asynchronous Transfer Mode)"
-msgstr ""
+msgstr "ATM(异步传输模式)"
msgid "ATM Bridges"
msgstr "ATM桥接"
@@ -169,10 +167,10 @@ msgid "ATM device number"
msgstr "ATM设备号码"
msgid "ATU-C System Vendor ID"
-msgstr ""
+msgstr "ATU-C系统供应商ID"
msgid "AYIYA"
-msgstr ""
+msgstr "AYIYA"
msgid "Access Concentrator"
msgstr "接入集中器"
@@ -190,10 +188,10 @@ msgid "Activate this network"
msgstr "激活此网络"
msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
-msgstr "活动的<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-链路"
+msgstr "活动的<abbr title=\"互联网协议第4版\">IPv4</abbr>-链路"
msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
-msgstr "活动的<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-链路"
+msgstr "活动的<abbr title=\"互联网协议第6版\">IPv6</abbr>-链路"
msgid "Active Connections"
msgstr "活动连接"
@@ -220,7 +218,7 @@ msgid "Additional Hosts files"
msgstr "额外的HOSTS文件"
msgid "Additional servers file"
-msgstr ""
+msgstr "额外的SERVERS文件"
msgid "Address"
msgstr "地址"
@@ -235,7 +233,7 @@ msgid "Advanced Settings"
msgstr "高级设置"
msgid "Aggregate Transmit Power(ACTATP)"
-msgstr ""
+msgstr "总发射功率(ACTATP)"
msgid "Alert"
msgstr "警戒"
@@ -243,13 +241,13 @@ msgstr "警戒"
msgid ""
"Allocate IP addresses sequentially, starting from the lowest available "
"address"
-msgstr ""
+msgstr "从最低可用地址开始顺序分配IP地址"
msgid "Allocate IP sequentially"
-msgstr ""
+msgstr "顺序分配IP"
msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
-msgstr "允许<abbr title=\"Secure Shell\">SSH</abbr>密码验证"
+msgstr "允许<abbr title=\"安全外壳协议\">SSH</abbr>密码验证"
msgid "Allow all except listed"
msgstr "仅允许列表外"
@@ -264,7 +262,7 @@ msgid "Allow remote hosts to connect to local SSH forwarded ports"
msgstr "允许远程主机连接到本地SSH转发端口"
msgid "Allow root logins with password"
-msgstr "root权限登录"
+msgstr "允许root用户凭密码登录"
msgid "Allow the <em>root</em> user to login with password"
msgstr "允许<em>root</em>用户凭密码登录"
@@ -274,68 +272,65 @@ msgid ""
msgstr "允许127.0.0.0/8回环范围内的上行响应,例如:RBL服务"
msgid "Allowed IPs"
-msgstr ""
+msgstr "允许的IP"
msgid ""
"Also see <a href=\"https://www.sixxs.net/faq/connectivity/?faq=comparison"
"\">Tunneling Comparison</a> on SIXXS"
msgstr ""
"也请查看SIXXS上的<a href=\"https://www.sixxs.net/faq/connectivity/?"
-"faq=comparison\">Tunneling Comparison</a> "
+"faq=comparison\">隧道对比</a>"
msgid "Always announce default router"
msgstr "总是广播默认路由"
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
-msgstr ""
+msgstr "Annex"
msgid "Annex A + L + M (all)"
-msgstr ""
+msgstr "Annex A + L + M (全部)"
msgid "Annex A G.992.1"
-msgstr ""
+msgstr "Annex A G.992.1"
msgid "Annex A G.992.2"
-msgstr ""
+msgstr "Annex A G.992.2"
msgid "Annex A G.992.3"
-msgstr ""
+msgstr "Annex A G.992.3"
msgid "Annex A G.992.5"
-msgstr ""
+msgstr "Annex A G.992.5"
msgid "Annex B (all)"
-msgstr ""
+msgstr "Annex B (全部)"
msgid "Annex B G.992.1"
-msgstr ""
+msgstr "Annex B G.992.1"
msgid "Annex B G.992.3"
-msgstr ""
+msgstr "Annex B G.992.3"
msgid "Annex B G.992.5"
-msgstr ""
+msgstr "Annex B G.992.5"
msgid "Annex J (all)"
-msgstr ""
+msgstr "Annex J (全部)"
msgid "Annex L G.992.3 POTS 1"
-msgstr ""
+msgstr "Annex L G.992.3 POTS 1"
msgid "Annex M (all)"
-msgstr ""
+msgstr "Annex M (全部)"
msgid "Annex M G.992.3"
-msgstr ""
+msgstr "Annex M G.992.3"
msgid "Annex M G.992.5"
-msgstr ""
+msgstr "Annex M G.992.5"
msgid "Announce as default router even if no public prefix is available."
-msgstr "即使没有可用的公共前缀也广播默认路由"
+msgstr "即使没有可用的公共前缀也广播默认路由。"
msgid "Announced DNS domains"
msgstr "广播的DNS域名"
@@ -344,7 +339,7 @@ msgid "Announced DNS servers"
msgstr "广播的DNS服务器"
msgid "Anonymous Identity"
-msgstr ""
+msgstr "匿名身份"
msgid "Anonymous Mount"
msgstr "自动挂载未配置的磁盘分区"
@@ -379,7 +374,7 @@ msgstr "分配接口..."
msgid ""
"Assign prefix parts using this hexadecimal subprefix ID for this interface."
-msgstr ""
+msgstr "指定此接口使用的十六进制子ID前缀部分"
msgid "Associated Stations"
msgstr "已连接站点"
@@ -388,7 +383,7 @@ msgid "Atheros 802.11%s Wireless Controller"
msgstr "Qualcomm/Atheros 802.11%s 无线网卡"
msgid "Auth Group"
-msgstr ""
+msgstr "认证组"
msgid "AuthGroup"
msgstr "认证组"
@@ -396,6 +391,9 @@ msgstr "认证组"
msgid "Authentication"
msgstr "认证"
+msgid "Authentication Type"
+msgstr "认证类型"
+
msgid "Authoritative"
msgstr "授权的唯一DHCP服务器"
@@ -415,10 +413,10 @@ msgid "Automatically check filesystem for errors before mounting"
msgstr "在挂载前自动检查文件系统错误"
msgid "Automatically mount filesystems on hotplug"
-msgstr "通过hotplug自动挂载磁盘"
+msgstr "通过Hotplug自动挂载磁盘"
msgid "Automatically mount swap on hotplug"
-msgstr "通过hotplug自动挂载Swap分区"
+msgstr "通过Hotplug自动挂载Swap分区"
msgid "Automount Filesystem"
msgstr "自动挂载磁盘"
@@ -436,13 +434,13 @@ msgid "Average:"
msgstr "平均:"
msgid "B43 + B43C"
-msgstr ""
+msgstr "B43 + B43C"
msgid "B43 + B43C + V43"
-msgstr ""
+msgstr "B43 + B43C + V43"
msgid "BR / DMR / AFTR"
-msgstr ""
+msgstr "BR / DMR / AFTR"
msgid "BSSID"
msgstr "BSSID"
@@ -492,13 +490,13 @@ msgstr ""
"备份文件。"
msgid "Bind interface"
-msgstr ""
+msgstr "绑定接口"
msgid "Bind only to specific interfaces rather than wildcard address."
-msgstr ""
+msgstr "仅绑定到特定接口,而不是全部地址。"
msgid "Bind the tunnel to this interface (optional)."
-msgstr ""
+msgstr "将隧道绑定到此接口(可选)。"
msgid "Bitrate"
msgstr "传输速率"
@@ -536,7 +534,7 @@ msgid "Buttons"
msgstr "按键"
msgid "CA certificate; if empty it will be saved after the first connection."
-msgstr "CA证书.如果留空的话证书将在第一次连接时被保存."
+msgstr "CA证书,如果留空的话证书将在第一次连接时被保存。"
msgid "CPU usage (%)"
msgstr "CPU使用率(%)"
@@ -568,6 +566,9 @@ msgstr "检查"
msgid "Check fileystems before mount"
msgstr "在挂载前检查文件系统"
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "校验值"
@@ -587,7 +588,7 @@ msgid "Cipher"
msgstr "算法"
msgid "Cisco UDP encapsulation"
-msgstr ""
+msgstr "Cisco UDP封装"
msgid ""
"Click \"Generate archive\" to download a tar archive of the current "
@@ -693,7 +694,7 @@ msgstr "自定义的软件源"
msgid ""
"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
"\">LED</abbr>s if possible."
-msgstr "自定义<abbr title=\"Light Emitting Diode\">LED</abbr>的活动状态。"
+msgstr "自定义<abbr title=\"发光二极管\">LED</abbr>的活动状态。"
msgid "DHCP Leases"
msgstr "DHCP分配"
@@ -729,34 +730,34 @@ msgid "DNS forwardings"
msgstr "DNS转发"
msgid "DNS-Label / FQDN"
-msgstr ""
+msgstr "DNS-Label / FQDN"
msgid "DNSSEC"
-msgstr ""
+msgstr "DNSSEC"
msgid "DNSSEC check unsigned"
-msgstr ""
+msgstr "DNSSEC未签名检查"
msgid "DPD Idle Timeout"
-msgstr ""
+msgstr "DPD空闲超时"
msgid "DS-Lite AFTR address"
-msgstr ""
+msgstr "DS-Lite AFTR地址"
msgid "DSL"
-msgstr ""
+msgstr "DSL"
msgid "DSL Status"
-msgstr ""
+msgstr "DSL状态"
msgid "DSL line mode"
-msgstr ""
+msgstr "DSL线路模式"
msgid "DUID"
-msgstr "DUID(DHCP唯一标识符)"
+msgstr "DUID (DHCP唯一标识符)"
msgid "Data Rate"
-msgstr ""
+msgstr "数据速率"
msgid "Debug"
msgstr "调试"
@@ -768,7 +769,7 @@ msgid "Default gateway"
msgstr "默认网关"
msgid "Default is stateless + stateful"
-msgstr ""
+msgstr "默认是无状态 + 有状态"
msgid "Default route"
msgstr "默认路由"
@@ -829,17 +830,16 @@ msgstr "禁用"
msgid ""
"Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
"this interface."
-msgstr ""
-"禁用本接口的<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>。"
+msgstr "禁用本接口的<abbr title=\"动态主机配置协议\">DHCP</abbr>。"
msgid "Disable DNS setup"
msgstr "停用DNS设定"
msgid "Disable Encryption"
-msgstr ""
+msgstr "禁用加密"
msgid "Disable HW-Beacon timer"
-msgstr "停用 HW-Beacon 计时器"
+msgstr "停用HW-Beacon计时器"
msgid "Disabled"
msgstr "禁用"
@@ -888,7 +888,7 @@ msgid "Domain whitelist"
msgstr "域名白名单"
msgid "Don't Fragment"
-msgstr ""
+msgstr "禁止碎片"
msgid ""
"Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
@@ -908,14 +908,14 @@ msgid ""
"Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
"and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
msgstr ""
-"Dropbear提供了集成的<abbr title=\"Secure Copy\">SCP</abbr>服务器和基于<abbr "
-"title=\"Secure Shell\">SSH</abbr>的shell访问"
+"Dropbear提供了集成的<abbr title=\"安全复制\">SCP</abbr>服务器和基于<abbr "
+"title=\"安全外壳协议\">SSH</abbr>的Shell访问"
msgid "Dual-Stack Lite (RFC6333)"
-msgstr ""
+msgstr "Dual-Stack Lite (RFC6333)"
msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
-msgstr "动态<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
+msgstr "动态<abbr title=\"动态主机配置协议\">DHCP</abbr>"
msgid "Dynamic tunnel"
msgstr "动态隧道"
@@ -926,10 +926,10 @@ msgid ""
msgstr "动态分配DHCP地址。如果禁用,则只能为静态租用表中的客户端提供网络服务。"
msgid "EA-bits length"
-msgstr ""
+msgstr "EA位长度"
msgid "EAP-Method"
-msgstr "EAP-Method"
+msgstr "EAP类型"
msgid "Edit"
msgstr "修改"
@@ -952,11 +952,14 @@ msgid "Enable"
msgstr "启用"
msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
-msgstr "开启<abbr title=\"Spanning Tree Protocol\">STP</abbr>"
+msgstr "开启<abbr title=\"生成树协议\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "启用HE.net动态终端更新"
+msgid "Enable IPv6 negotiation"
+msgstr "启用IPv6协商"
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "在PPP链路上启用IPv6协商"
@@ -967,7 +970,7 @@ msgid "Enable NTP client"
msgstr "启用NTP客户端"
msgid "Enable Single DES"
-msgstr ""
+msgstr "启用单个DES"
msgid "Enable TFTP server"
msgstr "启用TFTP服务器"
@@ -976,7 +979,7 @@ msgid "Enable VLAN functionality"
msgstr "启用VLAN"
msgid "Enable WPS pushbutton, requires WPA(2)-PSK"
-msgstr "启用WPS按键配置.要求使用WPA(2)-PSK"
+msgstr "启用WPS按键配置,要求使用WPA(2)-PSK"
msgid "Enable learning and aging"
msgstr "启用智能交换学习"
@@ -988,7 +991,7 @@ msgid "Enable mirroring of outgoing packets"
msgstr "启用流出数据包镜像"
msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
-msgstr ""
+msgstr "启用封装数据包的DF(禁止碎片)标志。"
msgid "Enable this mount"
msgstr "启用挂载点"
@@ -1012,10 +1015,10 @@ msgid "Encryption"
msgstr "加密"
msgid "Endpoint Host"
-msgstr ""
+msgstr "端点主机"
msgid "Endpoint Port"
-msgstr ""
+msgstr "端点端口"
msgid "Erasing..."
msgstr "擦除中..."
@@ -1024,7 +1027,7 @@ msgid "Error"
msgstr "错误"
msgid "Errored seconds (ES)"
-msgstr ""
+msgstr "错误秒数(ES)"
msgid "Ethernet Adapter"
msgstr "以太网适配器"
@@ -1033,7 +1036,7 @@ msgid "Ethernet Switch"
msgstr "以太网交换机"
msgid "Exclude interfaces"
-msgstr ""
+msgstr "排除接口"
msgid "Expand hosts"
msgstr "扩展HOSTS文件中的主机后缀"
@@ -1041,22 +1044,21 @@ msgstr "扩展HOSTS文件中的主机后缀"
msgid "Expires"
msgstr "到期时间"
-#, fuzzy
msgid ""
"Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
-msgstr "地址租期,最小2分钟(<code>2m</code>)。"
+msgstr "租用地址的到期时间,最短2分钟(<code>2m</code>)。"
msgid "External"
-msgstr ""
+msgstr "远程"
msgid "External system log server"
-msgstr "远程log服务器"
+msgstr "远程日志服务器"
msgid "External system log server port"
-msgstr "远程log服务器端口"
+msgstr "远程日志服务器端口"
msgid "External system log server protocol"
-msgstr ""
+msgstr "远程日志服务器协议"
msgid "Extra SSH command options"
msgstr "额外的SSH命令选项"
@@ -1108,7 +1110,7 @@ msgid "Firewall Status"
msgstr "防火墙状态"
msgid "Firmware File"
-msgstr ""
+msgstr "固件文件"
msgid "Firmware Version"
msgstr "固件版本"
@@ -1147,16 +1149,16 @@ msgid "Force TKIP and CCMP (AES)"
msgstr "TKIP和CCMP(AES)混合加密"
msgid "Force use of NAT-T"
-msgstr ""
+msgstr "强制使用NAT-T"
msgid "Form token mismatch"
-msgstr ""
+msgstr "表单令牌不匹配"
msgid "Forward DHCP traffic"
msgstr "转发DHCP数据包"
msgid "Forward Error Correction Seconds (FECS)"
-msgstr ""
+msgstr "前向纠错秒数(FECS)"
msgid "Forward broadcast traffic"
msgstr "转发广播数据包"
@@ -1180,6 +1182,8 @@ msgid ""
"Further information about WireGuard interfaces and peers at <a href=\"http://"
"wireguard.io\">wireguard.io</a>."
msgstr ""
+"有关WireGuard接口和Peer的更多信息:<a href=\"http://wireguard.io\">wireguard."
+"io</a>"
msgid "GHz"
msgstr "GHz"
@@ -1200,7 +1204,7 @@ msgid "General Setup"
msgstr "基本设置"
msgid "General options for opkg"
-msgstr "opkg基础配置"
+msgstr "Opkg基础配置"
msgid "Generate Config"
msgstr "生成配置"
@@ -1227,7 +1231,7 @@ msgid "Go to relevant configuration page"
msgstr "跳转到相关的配置页面"
msgid "Group Password"
-msgstr ""
+msgstr "组密码"
msgid "Guest"
msgstr "访客"
@@ -1239,7 +1243,7 @@ msgid "HE.net username"
msgstr "HE.net用户名"
msgid "HT mode (802.11n)"
-msgstr ""
+msgstr "HT模式(802.11n)"
msgid "Handler"
msgstr "处理程序"
@@ -1248,7 +1252,7 @@ msgid "Hang Up"
msgstr "挂起"
msgid "Header Error Code Errors (HEC)"
-msgstr ""
+msgstr "头错误代码错误(HEC)"
msgid "Heartbeat"
msgstr "心跳"
@@ -1267,10 +1271,10 @@ msgid "Hermes 802.11b Wireless Controller"
msgstr "Hermes 802.11b 无线网卡"
msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
-msgstr "隐藏<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
+msgstr "隐藏<abbr title=\"扩展服务集标识符\">ESSID</abbr>"
msgid "Host"
-msgstr ""
+msgstr "主机"
msgid "Host entries"
msgstr "主机目录"
@@ -1294,7 +1298,7 @@ msgid "Hybrid"
msgstr "混合"
msgid "IKE DH Group"
-msgstr ""
+msgstr "IKE DH组"
msgid "IP address"
msgstr "IP地址"
@@ -1339,7 +1343,7 @@ msgid "IPv4-Address"
msgstr "IPv4-地址"
msgid "IPv4-in-IPv4 (RFC2003)"
-msgstr ""
+msgstr "IPv4-in-IPv4 (RFC2003)"
msgid "IPv6"
msgstr "IPv6"
@@ -1366,7 +1370,7 @@ msgid "IPv6 address delegated to the local tunnel endpoint (optional)"
msgstr "绑定到本地隧道终点的IPv6地址(可选)"
msgid "IPv6 assignment hint"
-msgstr ""
+msgstr "IPv6分配提示"
msgid "IPv6 assignment length"
msgstr "IPv6分配长度"
@@ -1402,10 +1406,10 @@ msgid "Identity"
msgstr "鉴权"
msgid "If checked, 1DES is enaled"
-msgstr ""
+msgstr "选中以启用1DES"
msgid "If checked, encryption is disabled"
-msgstr ""
+msgstr "选中以禁用加密"
msgid ""
"If specified, mount the device by its UUID instead of a fixed device node"
@@ -1449,12 +1453,14 @@ msgid ""
"In order to prevent unauthorized access to the system, your request has been "
"blocked. Click \"Continue »\" below to return to the previous page."
msgstr ""
+"为了防止对系统的未授权访问,您的请求已被阻止。点击下面的 “继续 »” 来返回上一"
+"页。"
msgid "Inactivity timeout"
msgstr "活动超时"
msgid "Inbound:"
-msgstr "入站:"
+msgstr "入站:"
msgid "Info"
msgstr "信息"
@@ -1469,10 +1475,10 @@ msgid "Install"
msgstr "安装"
msgid "Install iputils-traceroute6 for IPv6 traceroute"
-msgstr "安装iputils-traceroute6以进行IPv6 traceroute"
+msgstr "安装 iputils-traceroute6 以进行IPv6 traceroute"
msgid "Install package %q"
-msgstr "安装软件包%q"
+msgstr "安装软件包 %q"
msgid "Install protocol extensions..."
msgstr "安装扩展协议..."
@@ -1496,10 +1502,10 @@ msgid "Interface is shutting down..."
msgstr "正在关闭接口..."
msgid "Interface name"
-msgstr ""
+msgstr "接口名称"
msgid "Interface not present or not connected yet."
-msgstr "接口不存在或未连接"
+msgstr "接口不存在或未连接。"
msgid "Interface reconnected"
msgstr "接口已重新连接"
@@ -1511,7 +1517,7 @@ msgid "Interfaces"
msgstr "接口"
msgid "Internal"
-msgstr ""
+msgstr "内部"
msgid "Internal Server Error"
msgstr "内部服务器错误"
@@ -1520,19 +1526,18 @@ msgid "Invalid"
msgstr "无效"
msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
-msgstr "无效的VLAN ID! 只有 %d 和 %d 之间的ID有效。"
+msgstr "无效的VLAN ID!只有 %d 和 %d 之间的ID有效。"
msgid "Invalid VLAN ID given! Only unique IDs are allowed"
-msgstr "无效的VLAN ID! 只允许唯一的ID。"
+msgstr "无效的VLAN ID!只允许唯一的ID。"
msgid "Invalid username and/or password! Please try again."
-msgstr "无效的用户名和/或密码! 请重试。"
+msgstr "无效的用户名和/或密码!请重试。"
-#, fuzzy
msgid ""
"It appears that you are trying to flash an image that does not fit into the "
"flash memory, please verify the image file!"
-msgstr "将要刷新的固件与本路由器不兼容,请重新验证固件文件。"
+msgstr "你尝试刷写的固件与本路由器不兼容,请重新验证固件文件。"
msgid "Java Script required!"
msgstr "需要Java Script!"
@@ -1541,10 +1546,10 @@ msgid "Join Network"
msgstr "加入网络"
msgid "Join Network: Wireless Scan"
-msgstr "加入网络:搜索无线"
+msgstr "加入网络:搜索无线"
msgid "Joining Network: %q"
-msgstr ""
+msgstr "加入网络:%q"
msgid "Keep settings"
msgstr "保留配置"
@@ -1589,13 +1594,13 @@ msgid "Language and Style"
msgstr "语言和界面"
msgid "Latency"
-msgstr ""
+msgstr "延迟"
msgid "Leaf"
-msgstr "叶子"
+msgstr "叶状"
msgid "Lease time"
-msgstr ""
+msgstr "租期"
msgid "Lease validity time"
msgstr "有效租期"
@@ -1622,22 +1627,22 @@ msgid "Limit"
msgstr "客户数"
msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
-msgstr ""
+msgstr "将DNS服务限制到我们提供DNS的子网接口。"
msgid "Limit listening to these interfaces, and loopback."
-msgstr ""
+msgstr "仅监听这些接口和环回接口。"
msgid "Line Attenuation (LATN)"
-msgstr ""
+msgstr "线路衰减(LATN)"
msgid "Line Mode"
-msgstr ""
+msgstr "线路模式"
msgid "Line State"
msgstr "线路状态"
msgid "Line Uptime"
-msgstr ""
+msgstr "线路运行时间"
msgid "Link On"
msgstr "活动链接"
@@ -1648,7 +1653,7 @@ msgid ""
msgstr "将指定的域名DNS解析转发到指定的DNS服务器(按照示例填写)"
msgid "List of SSH key files for auth"
-msgstr ""
+msgstr "用于认证的SSH密钥文件列表"
msgid "List of domains to allow RFC1918 responses for"
msgstr "允许RFC1918响应的域名列表"
@@ -1657,10 +1662,10 @@ msgid "List of hosts that supply bogus NX domain results"
msgstr "允许虚假空域名响应的服务器列表"
msgid "Listen Interfaces"
-msgstr ""
+msgstr "监听接口"
msgid "Listen Port"
-msgstr ""
+msgstr "监听端口"
msgid "Listen only on the given interface or, if unspecified, on all"
msgstr "监听指定的接口;未指定则监听全部"
@@ -1678,7 +1683,7 @@ msgid "Loading"
msgstr "加载中"
msgid "Local IP address to assign"
-msgstr ""
+msgstr "要分配的本地IP地址"
msgid "Local IPv4 address"
msgstr "本地IPv4地址"
@@ -1687,7 +1692,7 @@ msgid "Local IPv6 address"
msgstr "本地IPv6地址"
msgid "Local Service Only"
-msgstr ""
+msgstr "仅本地服务"
msgid "Local Startup"
msgstr "本地启动脚本"
@@ -1698,11 +1703,10 @@ msgstr "本地时间"
msgid "Local domain"
msgstr "本地域名"
-#, fuzzy
msgid ""
"Local domain specification. Names matching this domain are never forwarded "
"and are resolved from DHCP or hosts files only"
-msgstr "本地域名规则。从不转发和处理只源自DHCP或HOSTS文件的本地域名数据"
+msgstr "本地域名规则。与此域匹配的名称从不转发,仅从DHCP或HOSTS文件解析"
msgid "Local domain suffix appended to DHCP names and hosts file entries"
msgstr "本地域名后缀将添加到DHCP和HOSTS文件条目"
@@ -1719,7 +1723,7 @@ msgid "Localise queries"
msgstr "本地化查询"
msgid "Locked to channel %s used by: %s"
-msgstr "信道道已被锁定为 %s,因为该信道被 %s 使用"
+msgstr "信道道已被锁定为 %s,因为该信道被 %s 使用"
msgid "Log output level"
msgstr "日志记录等级"
@@ -1737,7 +1741,7 @@ msgid "Logout"
msgstr "退出"
msgid "Loss of Signal Seconds (LOSS)"
-msgstr ""
+msgstr "信号丢失秒数(LOSS)"
msgid "Lowest leased address as offset from the network address."
msgstr "网络地址的起始分配基址。"
@@ -1755,13 +1759,13 @@ msgid "MAC-List"
msgstr "MAC-列表"
msgid "MAP / LW4over6"
-msgstr ""
+msgstr "MAP / LW4over6"
msgid "MB/s"
msgstr "MB/s"
msgid "MD5"
-msgstr ""
+msgstr "MD5"
msgid "MHz"
msgstr "MHz"
@@ -1772,13 +1776,13 @@ msgstr "MTU"
msgid ""
"Make sure to clone the root filesystem using something like the commands "
"below:"
-msgstr "请确认你已经复制过整个根文件系统,例如使用以下命令:"
+msgstr "请确认你已经复制过整个根文件系统,例如使用以下命令:"
msgid "Manual"
-msgstr ""
+msgstr "手动"
msgid "Max. Attainable Data Rate (ATTNDR)"
-msgstr ""
+msgstr "最大可达数据速率(ATTNDR)"
msgid "Maximum Rate"
msgstr "最高速率"
@@ -1790,7 +1794,7 @@ msgid "Maximum allowed number of concurrent DNS queries"
msgstr "允许的最大并发DNS查询数"
msgid "Maximum allowed size of EDNS.0 UDP packets"
-msgstr "允许的最大EDNS.0 UDP报文大小"
+msgstr "允许的最大EDNS.0 UDP数据包大小"
msgid "Maximum amount of seconds to wait for the modem to become ready"
msgstr "调制解调器就绪的最大等待时间(秒)"
@@ -1802,6 +1806,7 @@ msgid ""
"Maximum length of the name is 15 characters including the automatic protocol/"
"bridge prefix (br-, 6in4-, pppoe- etc.)"
msgstr ""
+"名称的最大长度为15个字符,包括自动协议/网桥前缀(br-, 6in4-, pppoe- 等等)"
msgid "Maximum number of leased addresses."
msgstr "最大地址分配数量。"
@@ -1831,7 +1836,7 @@ msgid "Mirror source port"
msgstr "数据包镜像源端口"
msgid "Missing protocol extension for proto %q"
-msgstr "缺少协议%q的协议扩展"
+msgstr "缺少协议 %q 的协议扩展"
msgid "Mode"
msgstr "模式"
@@ -1899,16 +1904,16 @@ msgid "NAS ID"
msgstr "NAS ID"
msgid "NAT-T Mode"
-msgstr ""
+msgstr "NAT-T模式"
msgid "NAT64 Prefix"
-msgstr ""
+msgstr "NAT64前缀"
msgid "NDP-Proxy"
msgstr "NDP-代理"
msgid "NT Domain"
-msgstr ""
+msgstr "NT域"
msgid "NTP server candidates"
msgstr "候选NTP服务器"
@@ -1950,7 +1955,7 @@ msgid "No DHCP Server configured for this interface"
msgstr "本接口未配置DHCP服务器"
msgid "No NAT-T"
-msgstr ""
+msgstr "无NAT-T"
msgid "No chains in this table"
msgstr "本表中没有链"
@@ -1986,16 +1991,16 @@ msgid "Noise"
msgstr "噪声"
msgid "Noise Margin (SNR)"
-msgstr ""
+msgstr "噪声容限(SNR)"
msgid "Noise:"
msgstr "噪声:"
msgid "Non Pre-emtive CRC errors (CRC_P)"
-msgstr ""
+msgstr "非抢占CRC错误(CRC_P)"
msgid "Non-wildcard"
-msgstr ""
+msgstr "非通配符"
msgid "None"
msgstr "无"
@@ -2016,7 +2021,7 @@ msgid "Note: Configuration files will be erased."
msgstr "注意:配置文件将被删除。"
msgid "Note: interface name length"
-msgstr ""
+msgstr "注意:接口名称长度"
msgid "Notice"
msgstr "注意"
@@ -2025,7 +2030,7 @@ msgid "Nslookup"
msgstr "Nslookup"
msgid "OK"
-msgstr "OK"
+msgstr "确认"
msgid "OPKG-Configuration"
msgstr "OPKG-配置"
@@ -2058,7 +2063,7 @@ msgid "One or more fields contain invalid values!"
msgstr "一个或多个选项值有误!"
msgid "One or more invalid/required values on tab"
-msgstr ""
+msgstr "选项卡上存在一个或多个无效/必需值"
msgid "One or more required fields have no value!"
msgstr "一个或多个必选项值为空!"
@@ -2067,7 +2072,7 @@ msgid "Open list..."
msgstr "打开列表..."
msgid "OpenConnect (CISCO AnyConnect)"
-msgstr ""
+msgstr "开放连接(CISCO AnyConnect)"
msgid "Operating frequency"
msgstr "工作频率"
@@ -2079,13 +2084,13 @@ msgid "Option removed"
msgstr "移除的选项"
msgid "Optional, specify to override default server (tic.sixxs.net)"
-msgstr "可选,设置这个选项会覆盖默认设定的服务器(tic.sixxs.net)"
+msgstr "可选,设置这个选项会覆盖默认设定的服务器(tic.sixxs.net)"
msgid "Optional, use when the SIXXS account has more than one tunnel"
-msgstr "可选,如果你的SIXXS账号拥有一个以上的隧道请设置此项."
+msgstr "可选,如果你的SIXXS账号拥有一个以上的隧道请设置此项."
msgid "Optional."
-msgstr ""
+msgstr "可选"
msgid ""
"Optional. Adds in an additional layer of symmetric-key cryptography for post-"
@@ -2093,7 +2098,7 @@ msgid ""
msgstr ""
msgid "Optional. Create routes for Allowed IPs for this peer."
-msgstr ""
+msgstr "可选,为此Peer创建允许IP的路由。"
msgid ""
"Optional. Host of peer. Names are resolved prior to bringing up the "
@@ -2101,30 +2106,32 @@ msgid ""
msgstr ""
msgid "Optional. Maximum Transmission Unit of tunnel interface."
-msgstr ""
+msgstr "可选,隧道接口的最大传输单元。"
msgid "Optional. Port of peer."
-msgstr ""
+msgstr "可选,Peer的端口。"
msgid ""
"Optional. Seconds between keep alive messages. Default is 0 (disabled). "
"Recommended value if this device is behind a NAT is 25."
msgstr ""
+"可选,Keep-Alive消息之间的秒数,默认为0(禁用)。如果此设备位于NAT之后,建议使"
+"用的值为25。"
msgid "Optional. UDP port used for outgoing and incoming packets."
-msgstr ""
+msgstr "可选,用于传出和传入数据包的UDP端口。"
msgid "Options"
msgstr "选项"
msgid "Other:"
-msgstr "其余:"
+msgstr "其余:"
msgid "Out"
msgstr "出口"
msgid "Outbound:"
-msgstr "出站:"
+msgstr "出站:"
msgid "Outdoor Channels"
msgstr "户外频道"
@@ -2136,24 +2143,24 @@ msgid "Override MAC address"
msgstr "克隆MAC地址"
msgid "Override MTU"
-msgstr "设置MTU"
+msgstr "更新MTU"
msgid "Override TOS"
-msgstr ""
+msgstr "更新TOS"
msgid "Override TTL"
-msgstr ""
+msgstr "更新TTL"
msgid "Override default interface name"
-msgstr ""
+msgstr "更新默认接口名称"
msgid "Override the gateway in DHCP responses"
-msgstr "更新网关"
+msgstr "更新DHCP响应网关"
msgid ""
"Override the netmask sent to clients. Normally it is calculated from the "
"subnet that is served."
-msgstr "更新子网掩码。"
+msgstr "更新发送到客户端的子网掩码。"
msgid "Override the table used for internal routes"
msgstr "更新内部路由表"
@@ -2189,22 +2196,22 @@ msgid "PPPoE"
msgstr "PPPoE"
msgid "PPPoSSH"
-msgstr ""
+msgstr "PPPoSSH"
msgid "PPtP"
msgstr "PPtP"
msgid "PSID offset"
-msgstr ""
+msgstr "PSID偏移"
msgid "PSID-bits length"
-msgstr ""
+msgstr "PSID位长度"
msgid "PTM/EFM (Packet Transfer Mode)"
-msgstr ""
+msgstr "PTM/EFM(分组传输模式)"
msgid "Package libiwinfo required!"
-msgstr "需要libiwinfo软件包!"
+msgstr "需要 libiwinfo 软件包!"
msgid "Package lists are older than 24 hours"
msgstr "软件包列表已超过24小时未更新"
@@ -2228,7 +2235,7 @@ msgid "Password of Private Key"
msgstr "私有密钥"
msgid "Password of inner Private Key"
-msgstr ""
+msgstr "内部私钥的密码"
msgid "Password successfully changed!"
msgstr "密码修改成功!"
@@ -2246,25 +2253,25 @@ msgid "Path to executable which handles the button event"
msgstr "处理按键动作的可执行文件路径"
msgid "Path to inner CA-Certificate"
-msgstr ""
+msgstr "内部CA证书的路径"
msgid "Path to inner Client-Certificate"
-msgstr ""
+msgstr "内部客户端证书的路径"
msgid "Path to inner Private Key"
-msgstr ""
+msgstr "内部私钥的路径"
msgid "Peak:"
msgstr "峰值:"
msgid "Peer IP address to assign"
-msgstr ""
+msgstr "要分配的Peer IP地址"
msgid "Peers"
-msgstr ""
+msgstr "Peers"
msgid "Perfect Forward Secrecy"
-msgstr ""
+msgstr "完全正向保密"
msgid "Perform reboot"
msgstr "执行重启"
@@ -2273,7 +2280,7 @@ msgid "Perform reset"
msgstr "执行复位"
msgid "Persistent Keep Alive"
-msgstr ""
+msgstr "持续Keep-Alive"
msgid "Phy Rate:"
msgstr "物理速率:"
@@ -2300,13 +2307,13 @@ msgid "Port status:"
msgstr "端口状态:"
msgid "Power Management Mode"
-msgstr ""
+msgstr "电源管理模式"
msgid "Pre-emtive CRC errors (CRCP_P)"
-msgstr ""
+msgstr "抢占式CRC错误(CRCP_P)"
msgid "Preshared Key"
-msgstr ""
+msgstr "预共享密钥"
msgid ""
"Presume peer to be dead after given amount of LCP echo failures, use 0 to "
@@ -2314,7 +2321,7 @@ msgid ""
msgstr "在指定数量的LCP响应故障后假定链路已断开,0为忽略故障"
msgid "Prevent listening on these interfaces."
-msgstr ""
+msgstr "防止监听这些接口。"
msgid "Prevents client-to-client communication"
msgstr "禁止客户端间通信"
@@ -2323,7 +2330,7 @@ msgid "Prism2/2.5/3 802.11b Wireless Controller"
msgstr "Prism2/2.5/3 802.11b 无线网卡"
msgid "Private Key"
-msgstr ""
+msgstr "私钥"
msgid "Proceed"
msgstr "执行"
@@ -2332,7 +2339,7 @@ msgid "Processes"
msgstr "系统进程"
msgid "Profile"
-msgstr ""
+msgstr "配置文件"
msgid "Prot."
msgstr "协议"
@@ -2359,16 +2366,19 @@ msgid "Pseudo Ad-Hoc (ahdemo)"
msgstr "伪装Ad-Hoc(ahdemo)"
msgid "Public Key"
-msgstr ""
+msgstr "公钥"
msgid "Public prefix routed to this device for distribution to clients."
-msgstr ""
+msgstr "分配到此设备的公共前缀,用以分发到客户端。"
+
+msgid "QMI Cellular"
+msgstr "QMI蜂窝"
msgid "Quality"
msgstr "质量"
msgid "RFC3947 NAT-T mode"
-msgstr ""
+msgstr "RFC3947 NAT-T模式"
msgid "RTS/CTS Threshold"
msgstr "RTS/CTS阈值"
@@ -2411,33 +2421,31 @@ msgid ""
"Really delete this interface? The deletion cannot be undone!\\nYou might "
"lose access to this device if you are connected via this interface."
msgstr ""
-"确定要删除此接口?删除操作无法撤销!\\\n"
-"删除此接口,可能导致无法再访问路由器!"
+"确定要删除此接口?删除操作无法撤销!\\n删除此接口,可能导致无法再访问路由器!"
msgid ""
"Really delete this wireless network? The deletion cannot be undone!\\nYou "
"might lose access to this device if you are connected via this network."
msgstr ""
-"确定要删除此无线网络?删除操作无法撤销!\\\n"
-"删除此无线网络,可能导致无法再访问路由器!"
+"确定要删除此无线网络?删除操作无法撤销!\\n删除此无线网络,可能导致无法再访问"
+"路由器!"
msgid "Really reset all changes?"
msgstr "确定要放弃所有更改?"
-#, fuzzy
msgid ""
"Really shut down network?\\nYou might lose access to this device if you are "
"connected via this interface."
msgstr ""
-"确定要关闭此网络?\\\n"
-"关闭此网络,可能导致无法再访问路由器!"
+"确定要关闭此网络?\\n如果你正在使用此接口连接路由器,关闭此网络可能导致连接断"
+"开!"
msgid ""
"Really shutdown interface \"%s\" ?\\nYou might lose access to this device if "
"you are connected via this interface."
msgstr ""
-"确定要关闭接口\"%s\" ?\\\n"
-"删除此网络,可能导致无法再访问路由器!"
+"确定要关闭接口 \"%s\"?\\n如果你正在使用此接口连接路由器,关闭此网络可能导致"
+"连接断开!"
msgid "Really switch protocol?"
msgstr "确定要切换协议?"
@@ -2503,7 +2511,7 @@ msgid "Remote IPv4 address"
msgstr "远程IPv4地址"
msgid "Remote IPv4 address or FQDN"
-msgstr ""
+msgstr "远程IPv4地址或FQDN"
msgid "Remove"
msgstr "移除"
@@ -2527,24 +2535,26 @@ msgid "Require TLS"
msgstr "必须使用TLS"
msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
-msgstr "某些ISP需要,例如:同轴线网络DOCSIS 3"
+msgstr "某些ISP需要,例如:同轴线网络DOCSIS 3"
msgid "Required. Base64-encoded private key for this interface."
-msgstr ""
+msgstr "必须,此接口的Base64编码私钥。"
msgid ""
"Required. IP addresses and prefixes that this peer is allowed to use inside "
"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
"routes through the tunnel."
msgstr ""
+"必须,允许该Peer在隧道中使用的IP地址和前缀,通常是该Peer的隧道IP地址和通过隧"
+"道的路由网络。"
msgid "Required. Public key of peer."
-msgstr ""
+msgstr "必须,Peer的公钥。"
msgid ""
"Requires upstream supports DNSSEC; verify unsigned domain responses really "
"come from unsigned domains"
-msgstr ""
+msgstr "需要上级支持DNSSEC,验证未签名的域响应确实是来自未签名的域。"
msgid "Reset"
msgstr "复位"
@@ -2586,13 +2596,16 @@ msgid "Root preparation"
msgstr ""
msgid "Route Allowed IPs"
-msgstr ""
+msgstr "路由允许的IP"
+
+msgid "Route type"
+msgstr "路由类型"
msgid "Routed IPv6 prefix for downstream interfaces"
-msgstr ""
+msgstr "下行接口的路由IPv6前缀"
msgid "Router Advertisement-Service"
-msgstr ""
+msgstr "路由器广告服务"
msgid "Router Password"
msgstr "主机密码"
@@ -2612,18 +2625,18 @@ msgid "Run filesystem check"
msgstr "文件系统检查"
msgid "SHA256"
-msgstr ""
+msgstr "SHA256"
msgid ""
"SIXXS supports TIC only, for static tunnels using IP protocol 41 (RFC4213) "
"use 6in4 instead"
-msgstr ""
+msgstr "SIXXS仅支持TIC,对于使用IP协议41(RFC4213)的静态隧道,使用6in4"
msgid "SIXXS-handle[/Tunnel-ID]"
msgstr ""
msgid "SNR"
-msgstr ""
+msgstr "SNR"
msgid "SSH Access"
msgstr "SSH访问"
@@ -2665,7 +2678,7 @@ msgid "Section removed"
msgstr "移除的区域"
msgid "See \"mount\" manpage for details"
-msgstr "详参\"mount\"联机帮助"
+msgstr "详参 \"mount\" 联机帮助"
msgid ""
"Send LCP echo requests at the given interval in seconds, only effective in "
@@ -2701,7 +2714,6 @@ msgstr "服务类型"
msgid "Services"
msgstr "服务"
-#, fuzzy
msgid "Set up Time Synchronization"
msgstr "设置时间同步"
@@ -2709,7 +2721,7 @@ msgid "Setup DHCP Server"
msgstr "配置DHCP服务器"
msgid "Severely Errored Seconds (SES)"
-msgstr ""
+msgstr "严重误码秒(SES)"
msgid "Short GI"
msgstr ""
@@ -2727,7 +2739,7 @@ msgid "Signal"
msgstr "信号"
msgid "Signal Attenuation (SATN)"
-msgstr ""
+msgstr "信号衰减(SATN)"
msgid "Signal:"
msgstr "信号:"
@@ -2736,7 +2748,7 @@ msgid "Size"
msgstr "大小"
msgid "Size (.ipk)"
-msgstr ""
+msgstr "大小(.ipk)"
msgid "Skip"
msgstr "跳过"
@@ -2770,7 +2782,7 @@ msgid ""
"flashed manually. Please refer to the wiki for device specific install "
"instructions."
msgstr ""
-"抱歉,您的设备暂不支持sysupgrade升级,需手动更新固件。请参考Wiki中关于此设备"
+"抱歉,您的设备暂不支持Sysupgrade升级,需手动更新固件。请参考Wiki中关于此设备"
"的固件更新说明。"
msgid "Sort"
@@ -2802,17 +2814,17 @@ msgid ""
msgstr "指定假设主机已丢失的最大时间(秒)"
msgid "Specify a TOS (Type of Service)."
-msgstr ""
+msgstr "指定TOS(服务类型)。"
msgid ""
"Specify a TTL (Time to Live) for the encapsulating packet other than the "
"default (64)."
-msgstr ""
+msgstr "为封装数据包设置TTL(生存时间),缺省值:64"
msgid ""
"Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
"bytes)."
-msgstr ""
+msgstr "设置MTU(最大传输单位),缺省值:1280 bytes"
msgid "Specify the secret encryption key here."
msgstr "在此指定密钥。"
@@ -2866,10 +2878,10 @@ msgid "Submit"
msgstr "提交"
msgid "Suppress logging"
-msgstr ""
+msgstr "不记录日志"
msgid "Suppress logging of the routine operation of these protocols"
-msgstr ""
+msgstr "不记录这些协议的常规操作日志。"
msgid "Swap"
msgstr "交换区"
@@ -2884,14 +2896,14 @@ msgid "Switch %q"
msgstr "交换机 %q"
msgid "Switch %q (%s)"
-msgstr "交换机%q (%s)"
+msgstr "交换机 %q (%s)"
msgid ""
"Switch %q has an unknown topology - the VLAN settings might not be accurate."
-msgstr ""
+msgstr "交换机 %q 具有未知的拓扑结构 - VLAN设置可能不正确。"
msgid "Switch VLAN"
-msgstr ""
+msgstr "VLAN交换机"
msgid "Switch protocol"
msgstr "切换协议"
@@ -2936,7 +2948,7 @@ msgid "Target"
msgstr "对象"
msgid "Target network"
-msgstr ""
+msgstr "目标网络"
msgid "Terminate"
msgstr "关闭"
@@ -2965,7 +2977,7 @@ msgstr "HE.net客户端更新设置已经被改变,您现在必须使用用户
msgid ""
"The IPv4 address or the fully-qualified domain name of the remote tunnel end."
-msgstr ""
+msgstr "远程隧道端的IPv4地址或完整域名。"
msgid ""
"The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
@@ -2984,17 +2996,15 @@ msgstr "由于以下错误,配置文件无法被加载:"
msgid ""
"The device file of the memory or partition (<abbr title=\"for example\">e.g."
"</abbr> <code>/dev/sda1</code>)"
-msgstr ""
-"存储器或分区的设备节点,(<abbr title=\"for example\">例如</abbr> <code>/dev/"
-"sda1</code>)"
+msgstr "存储器或分区的设备节点,(例如:<code>/dev/sda1</code>)"
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 ""
-"用于格式化存储器的文件系统,(<abbr title=\"for example\">例如</abbr> "
-"<samp><abbr title=\"Third Extended Filesystem\">ext4</abbr></samp>)"
+"用于格式化存储器的文件系统,(例如:<samp><abbr title=\"第三代扩展文件系统"
+"\">ext3</abbr></samp>)"
msgid ""
"The flash image was uploaded. Below is the checksum and file size listed, "
@@ -3014,11 +3024,10 @@ msgstr "系统中的活跃连接。"
msgid "The given network name is not unique"
msgstr "给定的网络名重复"
-#, fuzzy
msgid ""
"The hardware is not multi-SSID capable and the existing configuration will "
"be replaced if you proceed."
-msgstr "本机的硬件不支持多SSID,继续进行将会覆盖现有配置。"
+msgstr "本机的硬件不支持多SSID,如果继续,现有配置将被替换。"
msgid ""
"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
@@ -3029,7 +3038,7 @@ msgid "The length of the IPv6 prefix in bits"
msgstr "bit格式的IPv6前缀长度"
msgid "The local IPv4 address over which the tunnel is created (optional)."
-msgstr ""
+msgstr "所创建隧道的本地IPv4地址(可选)。"
msgid ""
"The network ports on this device can be combined to several <abbr title="
@@ -3039,16 +3048,15 @@ msgid ""
"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 ""
-"本设备可以划分为多个<abbr title=\"Virtual Local Area Network\">VLAN</abbr>,"
-"并支持电脑间的直接通讯。<abbr title=\"Virtual Local Area Network\">VLAN</"
-"abbr>也常用于分割不同网段。默认通常是一条上行端口连接ISP,其余端口为本地子"
-"网。"
+"本设备可以划分为多个<abbr title=\"虚拟局域网\">VLAN</abbr>,并支持电脑间的直"
+"接通讯。<abbr title=\"虚拟局域网\">VLAN</abbr>也常用于分割不同网段。默认通常"
+"是一条上行端口连接ISP,其余端口为本地子网。"
msgid "The selected protocol needs a device assigned"
msgstr "所选的协议需要分配设备"
msgid "The submitted security token is invalid or already expired!"
-msgstr ""
+msgstr "提交的安全令牌无效或已过期!"
msgid ""
"The system is erasing the configuration partition now and will reboot itself "
@@ -3067,7 +3075,7 @@ msgstr ""
msgid ""
"The tunnel end-point is behind NAT, defaults to disabled and only applies to "
"AYIYA"
-msgstr ""
+msgstr "隧道端点在NAT之后,默认为禁用,仅适用于AYIYA"
msgid ""
"The uploaded image file does not contain a supported format. Make sure that "
@@ -3089,7 +3097,7 @@ msgstr "没有待生效的更改!"
msgid ""
"There is no device assigned yet, please attach a network device in the "
"\"Physical Settings\" tab"
-msgstr "尚未分配设备,请在\"物理设置\"选项卡中选择网络设备"
+msgstr "尚未分配设备,请在“物理设置”选项卡中选择网络设备"
msgid ""
"There is no password set on this router. Please configure a root password to "
@@ -3104,6 +3112,8 @@ msgid ""
"'server=1.2.3.4' fordomain-specific or full upstream <abbr title=\"Domain "
"Name System\">DNS</abbr> servers."
msgstr ""
+"此文件可能包含类似'server=/domain/1.2.3.4'或'server=1.2.3.4'的行,来解析特定"
+"域名或指定上游<abbr title=\"域名服务系统\">DNS</abbr>服务器。"
msgid ""
"This is a list of shell glob patterns for matching files and directories to "
@@ -3116,7 +3126,7 @@ msgstr ""
msgid ""
"This is either the \"Update Key\" configured for the tunnel or the account "
"password if no update key has been configured"
-msgstr "如果更新密钥没有设置的话,隧道的\"更新密钥\"或者账户密码必须填写."
+msgstr "如果更新密钥没有设置的话,隧道的“更新密钥”或者账户密码必须填写。"
msgid ""
"This is the content of /etc/rc.local. Insert your own commands here (in "
@@ -3131,19 +3141,17 @@ msgstr "隧道代理分配的本地终端地址,通常以<code>:2</code>结尾
msgid ""
"This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
"abbr> in the local network"
-msgstr ""
-"这是内网中唯一的<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
-"abbr>服务器"
+msgstr "这是内网中唯一的<abbr title=\"动态主机配置协议\">DHCP</abbr>服务器"
msgid "This is the plain username for logging into the account"
msgstr "登录账户时填写的用户名"
msgid ""
"This is the prefix routed to you by the tunnel broker for use by clients"
-msgstr ""
+msgstr "这是隧道代理分配给你的路由前缀,供客户端使用"
msgid "This is the system crontab in which scheduled tasks can be defined."
-msgstr "自定义系统crontab中的计划任务。"
+msgstr "自定义系统Crontab中的计划任务。"
msgid ""
"This is usually the address of the nearest PoP operated by the tunnel broker"
@@ -3256,7 +3264,7 @@ msgid "Unable to dispatch"
msgstr "无法调度"
msgid "Unavailable Seconds (UAS)"
-msgstr ""
+msgstr "不可用秒数(UAS)"
msgid "Unknown"
msgstr "未知"
@@ -3283,7 +3291,7 @@ msgid ""
"Upload a sysupgrade-compatible image here to replace the running firmware. "
"Check \"Keep settings\" to retain the current configuration (requires a "
"compatible firmware image)."
-msgstr "上传兼容的sysupgrade固件以刷新当前系统。"
+msgstr "上传兼容的Sysupgrade固件以刷新当前系统。"
msgid "Upload archive..."
msgstr "上传备份..."
@@ -3313,7 +3321,7 @@ msgid "Use TTL on tunnel interface"
msgstr "隧道接口的TTL"
msgid "Use as external overlay (/overlay)"
-msgstr "作为外部overlay使用(/overlay)"
+msgstr "作为外部Overlay使用(/overlay)"
msgid "Use as root filesystem (/)"
msgstr "作为跟文件系统使用(/)"
@@ -3322,7 +3330,7 @@ msgid "Use broadcast flag"
msgstr "使用广播标签"
msgid "Use builtin IPv6-management"
-msgstr ""
+msgstr "使用内置的IPv6管理"
msgid "Use custom DNS servers"
msgstr "使用自定义的DNS服务器"
@@ -3365,19 +3373,19 @@ msgid "VC-Mux"
msgstr "VC-Mux"
msgid "VDSL"
-msgstr ""
+msgstr "VDSL"
msgid "VLANs on %q"
-msgstr "%q上的VLAN"
+msgstr "%q 上的VLAN"
msgid "VLANs on %q (%s)"
-msgstr "%q (%s)上的VLAN"
+msgstr "%q (%s) 上的VLAN"
msgid "VPN Local address"
-msgstr ""
+msgstr "VPN本地地址"
msgid "VPN Local port"
-msgstr ""
+msgstr "VPN本地端口"
msgid "VPN Server"
msgstr "VPN服务器"
@@ -3389,7 +3397,7 @@ msgid "VPN Server's certificate SHA1 hash"
msgstr "VPN服务器证书的SHA1哈希值"
msgid "VPNC (CISCO 3000 (and others) VPN)"
-msgstr ""
+msgstr "VPNC (CISCO 3000 和其他VPN)"
msgid "Vendor"
msgstr ""
@@ -3398,10 +3406,10 @@ msgid "Vendor Class to send when requesting DHCP"
msgstr "请求DHCP时发送的Vendor Class"
msgid "Verbose"
-msgstr ""
+msgstr "详细"
msgid "Verbose logging by aiccu daemon"
-msgstr ""
+msgstr "aiccu守护程序详细日志"
msgid "Verify"
msgstr "验证"
@@ -3436,7 +3444,7 @@ msgstr ""
msgid ""
"Wait for NTP sync that many seconds, seting to 0 disables waiting (optional)"
-msgstr "在NTP同步之前等待时间.设置为0表示同步之前不等待(可选)"
+msgstr "在NTP同步之前等待时间,设置为0表示同步之前不等待(可选)"
msgid "Waiting for changes to be applied..."
msgstr "正在应用更改..."
@@ -3454,10 +3462,10 @@ msgid "Warning: There are unsaved changes that will get lost on reboot!"
msgstr "警告:有一些未保存的配置将在重启后丢失!"
msgid "Whether to create an IPv6 default route over the tunnel"
-msgstr ""
+msgstr "是否通过隧道创建IPv6缺省路由"
msgid "Whether to route only packets from delegated prefixes"
-msgstr ""
+msgstr "是否仅路由来自分发前缀的数据包"
msgid "Width"
msgstr "频宽"
@@ -3502,7 +3510,7 @@ msgid "Write received DNS requests to syslog"
msgstr "将收到的DNS请求写入系统日志"
msgid "Write system log to file"
-msgstr ""
+msgstr "将系统日志写入文件"
msgid "XR Support"
msgstr "XR支持"
@@ -3524,8 +3532,8 @@ msgid ""
"upgrade it to at least version 7 or use another browser like Firefox, Opera "
"or Safari."
msgstr ""
-"你的Internet Explorer已经老到无法正常显示这个页面了!请至少更新到IE7或者使用诸"
-"如Firefox Opera Safari之类的浏览器."
+"你的Internet Explorer已经老到无法正常显示这个页面了!请至少更新到IE7或者使用"
+"诸如Firefox Opera Safari之类的浏览器。"
msgid "any"
msgstr "任意"
@@ -3566,8 +3574,7 @@ msgstr "过期时间"
msgid ""
"file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
"abbr>-leases will be stored"
-msgstr ""
-"存放<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>租约的文件"
+msgstr "存放<abbr title=\"动态主机配置协议\">DHCP</abbr>租约的文件"
msgid "forward"
msgstr "转发"
@@ -3603,16 +3610,16 @@ msgid "kbit/s"
msgstr "kbit/s"
msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
-msgstr "本地<abbr title=\"Domain Name System\">DNS</abbr>解析文件"
+msgstr "本地<abbr title=\"域名服务系统\">DNS</abbr>解析文件"
msgid "minimum 1280, maximum 1480"
-msgstr "最小值1280,最大值1480"
+msgstr "最小值1280,最大值1480"
msgid "navigation Navigation"
-msgstr ""
+msgstr "导航"
msgid "no"
-msgstr "no"
+msgstr ""
msgid "no link"
msgstr "未连接"
@@ -3621,7 +3628,7 @@ msgid "none"
msgstr "无"
msgid "not present"
-msgstr ""
+msgstr "不存在"
msgid "off"
msgstr "关"
@@ -3633,7 +3640,7 @@ msgid "open"
msgstr "开放式"
msgid "overlay"
-msgstr ""
+msgstr "覆盖"
msgid "relay mode"
msgstr "中继模式"
@@ -3645,19 +3652,19 @@ msgid "server mode"
msgstr "服务器模式"
msgid "skiplink1 Skip to navigation"
-msgstr ""
+msgstr "skiplink1 跳转到导航"
msgid "skiplink2 Skip to content"
-msgstr ""
+msgstr "skiplink2 跳到内容"
msgid "stateful-only"
-msgstr ""
+msgstr "有状态的"
msgid "stateless"
-msgstr ""
+msgstr "无状态的"
msgid "stateless + stateful"
-msgstr ""
+msgstr "有状态和无状态的"
msgid "tagged"
msgstr "关联"
@@ -3672,7 +3679,7 @@ msgid "unspecified"
msgstr "未指定"
msgid "unspecified -or- create:"
-msgstr "未指定 // 创建:"
+msgstr "未指定或创建:"
msgid "untagged"
msgstr "不关联"
@@ -3683,11 +3690,14 @@ msgstr "是"
msgid "« Back"
msgstr "« 后退"
+#~ msgid "An additional network will be created if you leave this checked."
+#~ msgstr "如果选中此复选框,则会创建一个附加网络。"
+
#~ msgid "An additional network will be created if you leave this unchecked."
#~ msgstr "取消选中将会另外创建一个新网络,而不会覆盖当前网络设置"
#~ msgid "Join Network: Settings"
-#~ msgstr "加入网络:设置"
+#~ msgstr "加入网络:设置"
#~ msgid "CPU"
#~ msgstr "CPU"
diff --git a/modules/luci-base/po/zh-tw/base.po b/modules/luci-base/po/zh-tw/base.po
index deed439b7..15ffafc2b 100644
--- a/modules/luci-base/po/zh-tw/base.po
+++ b/modules/luci-base/po/zh-tw/base.po
@@ -283,9 +283,6 @@ msgstr ""
msgid "Always announce default router"
msgstr ""
-msgid "An additional network will be created if you leave this checked."
-msgstr ""
-
msgid "Annex"
msgstr ""
@@ -393,6 +390,9 @@ msgstr ""
msgid "Authentication"
msgstr "認證"
+msgid "Authentication Type"
+msgstr ""
+
msgid "Authoritative"
msgstr "授權"
@@ -565,6 +565,9 @@ msgstr "檢查"
msgid "Check fileystems before mount"
msgstr ""
+msgid "Check this option to delete the existing networks from this radio."
+msgstr ""
+
msgid "Checksum"
msgstr "效驗碼"
@@ -966,6 +969,9 @@ msgstr "啟用 <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
msgid "Enable HE.net dynamic endpoint update"
msgstr "啟用HE.net服務代管動態更新"
+msgid "Enable IPv6 negotiation"
+msgstr ""
+
msgid "Enable IPv6 negotiation on the PPP link"
msgstr "啟用PPP連結上的IPv6交涉"
@@ -2379,6 +2385,9 @@ msgstr ""
msgid "Public prefix routed to this device for distribution to clients."
msgstr ""
+msgid "QMI Cellular"
+msgstr ""
+
msgid "Quality"
msgstr "品質"
@@ -2603,6 +2612,9 @@ msgstr ""
msgid "Route Allowed IPs"
msgstr ""
+msgid "Route type"
+msgstr ""
+
msgid "Routed IPv6 prefix for downstream interfaces"
msgstr ""
@@ -2785,8 +2797,8 @@ msgid ""
"flashed manually. Please refer to the wiki for device specific install "
"instructions."
msgstr ""
-"抱歉, 沒有sysupgrade支援出現, 新版韌體映像檔必須手動更新. 請回歸"
-"wiki找尋特定設備安裝指引."
+"抱歉, 沒有sysupgrade支援出現, 新版韌體映像檔必須手動更新. 請回歸wiki找尋特定"
+"設備安裝指引."
msgid "Sort"
msgstr "分類"
@@ -3307,8 +3319,8 @@ msgid ""
"Check \"Keep settings\" to retain the current configuration (requires a "
"compatible firmware image)."
msgstr ""
-"上傳一個sysupgrade-相容的映像檔在這以便替代正執行中的韌體. 勾選\"保持設定"
-"\"以保留目前設定值(必須要是OpenWrt/LEDE相容性韌體映像檔)."
+"上傳一個sysupgrade-相容的映像檔在這以便替代正執行中的韌體. 勾選\"保持設定\"以"
+"保留目前設定值(必須要是OpenWrt/LEDE相容性韌體映像檔)."
msgid "Upload archive..."
msgstr "上傳壓縮檔..."
diff --git a/modules/luci-mod-admin-full/luasrc/controller/admin/status.lua b/modules/luci-mod-admin-full/luasrc/controller/admin/status.lua
index 24db1e4ff..ad575e0d2 100644
--- a/modules/luci-mod-admin-full/luasrc/controller/admin/status.lua
+++ b/modules/luci-mod-admin-full/luasrc/controller/admin/status.lua
@@ -24,8 +24,10 @@ function index()
entry({"admin", "status", "realtime", "bandwidth"}, template("admin_status/bandwidth"), _("Traffic"), 2).leaf = true
entry({"admin", "status", "realtime", "bandwidth_status"}, call("action_bandwidth")).leaf = true
- entry({"admin", "status", "realtime", "wireless"}, template("admin_status/wireless"), _("Wireless"), 3).leaf = true
- entry({"admin", "status", "realtime", "wireless_status"}, call("action_wireless")).leaf = true
+ if nixio.fs.access("/etc/config/wireless") then
+ entry({"admin", "status", "realtime", "wireless"}, template("admin_status/wireless"), _("Wireless"), 3).leaf = true
+ entry({"admin", "status", "realtime", "wireless_status"}, call("action_wireless")).leaf = true
+ end
entry({"admin", "status", "realtime", "connections"}, template("admin_status/connections"), _("Connections"), 4).leaf = true
entry({"admin", "status", "realtime", "connections_status"}, call("action_connections")).leaf = true
diff --git a/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua b/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua
index cf8cfb5d2..5478afa3e 100644
--- a/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua
+++ b/modules/luci-mod-admin-full/luasrc/controller/admin/system.lua
@@ -52,6 +52,7 @@ function action_clock_status()
luci.sys.call("date -s '%04d-%02d-%02d %02d:%02d:%02d'" %{
date.year, date.month, date.day, date.hour, date.min, date.sec
})
+ luci.sys.call("/etc/init.d/sysfixtime restart")
end
end
diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua
index 05b27a9f0..8277deb2f 100644
--- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua
+++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua
@@ -16,7 +16,7 @@ if not iw then
return
end
-m = SimpleForm("network", translate("Joining Network: %q", http.formvalue("join")))
+m = SimpleForm("network", translatef("Joining Network: %q", http.formvalue("join")))
m.cancel = translate("Back to scan results")
m.reset = false
@@ -44,7 +44,7 @@ m.hidden = {
if iw and iw.mbssid_support then
replace = m:field(Flag, "replace", translate("Replace wireless configuration"),
- translate("An additional network will be created if you leave this checked."))
+ translate("Check this option to delete the existing networks from this radio."))
function replace.cfgvalue() return "0" end
else