diff options
Diffstat (limited to 'applications/luci-app-sqm')
35 files changed, 5431 insertions, 1620 deletions
diff --git a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js index 28004215b8..8b4a0aed04 100644 --- a/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js +++ b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js @@ -89,18 +89,18 @@ return view.extend({ o = s.taboption("tab_basic", widgets.DeviceSelect, "interface", _("Interface name")); o.rmempty = false; - o = s.taboption("tab_basic", form.Value, "download", _("Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress shaping:")); + o = s.taboption("tab_basic", form.Value, "download", _("Download speed (ingress)"), _("Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress shaping")); o.datatype = "and(uinteger,min(0))"; o.rmempty = false; - o = s.taboption("tab_basic", form.Value, "upload", _("Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping:")); + o = s.taboption("tab_basic", form.Value, "upload", _("Upload speed (egress)"), _("Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping")); o.datatype = "and(uinteger,min(0))"; o.rmempty = false; - o = s.taboption("tab_basic", form.Flag, "debug_logging", _("Create log file for this SQM instance under /var/run/sqm/${Interface_name}.[start|stop]-sqm.log.")); + o = s.taboption("tab_basic", form.Flag, "debug_logging", _("Enable debug logging"), _("Create log file for this SQM instance under /var/run/sqm/${Interface_name}.[start|stop]-sqm.log.")); o.rmempty = false; - o = s.taboption("tab_basic", form.ListValue, "verbosity", _("Verbosity of SQM's output into the system log.")); + o = s.taboption("tab_basic", form.ListValue, "verbosity", _("Log verbosity"), _("Verbosity of SQM's output into the system log.")); o.value("0", "silent"); o.value("1", "error"); o.value("2", "warning"); @@ -109,7 +109,7 @@ return view.extend({ o.value("10", "trace"); o.default = "5"; - o = s.taboption("tab_qdisc", form.ListValue, "qdisc", _("Queuing disciplines useable on this system. After installing a new qdisc, you need to restart the router to see updates!")); + o = s.taboption("tab_qdisc", form.ListValue, "qdisc", _("Queueing discipline"), _("Lists queuing disciplines useable on this system. After installing a new qdisc, you need to restart the router to see updates!")); for (var i=0; i < qdiscs.length; i++) { o.value(qdiscs[i].name); } @@ -130,92 +130,92 @@ return view.extend({ o.rmempty = false; o.description = qos_desc; - o = s.taboption("tab_qdisc", form.Flag, "qdisc_advanced", _("Show and Use Advanced Configuration. Advanced options will only be used as long as this box is checked.")); + o = s.taboption("tab_qdisc", form.Flag, "qdisc_advanced", _("Advanced Configuration"), _("Advanced options will only be used as long as this box is checked.")); o.default = false; - o = s.taboption("tab_qdisc", form.ListValue, "squash_dscp", _("Squash DSCP on inbound packets (ingress):")); + o = s.taboption("tab_qdisc", form.ListValue, "squash_dscp", _("Squash DSCP (ingress)"), _("Squash DSCP markings on inbound packets")); o.value("1", "SQUASH"); o.value("0", "DO NOT SQUASH"); o.default = "1"; o.depends("qdisc_advanced", "1"); - o = s.taboption("tab_qdisc", form.ListValue, "squash_ingress", _("Ignore DSCP on ingress:")); + o = s.taboption("tab_qdisc", form.ListValue, "squash_ingress", _("Ignore DSCP (ingress)"), _("Ignore DSCP markings on inbound packets")); o.value("1", "Ignore"); o.value("0", "Allow"); o.default = "1"; o.depends("qdisc_advanced", "1"); - o = s.taboption("tab_qdisc", form.ListValue, "ingress_ecn", _("Explicit congestion notification (ECN) status on inbound packets (ingress):")); + o = s.taboption("tab_qdisc", form.ListValue, "ingress_ecn", _("ECN (ingress)"), _("Explicit congestion notification (ECN) status on inbound packets")); o.value("ECN", "ECN (" + _("default") + ")"); o.value("NOECN"); o.default = "ECN"; o.depends("qdisc_advanced", "1"); - o = s.taboption("tab_qdisc", form.ListValue, "egress_ecn", _("Explicit congestion notification (ECN) status on outbound packets (egress).")); + o = s.taboption("tab_qdisc", form.ListValue, "egress_ecn", _("ECN (egress)"), _("Explicit congestion notification (ECN) status on outbound packets")); o.value("NOECN", "NOECN (" + _("default") + ")"); o.value("ECN"); o.default = "NOECN"; o.depends("qdisc_advanced", "1"); - o = s.taboption("tab_qdisc", form.Flag, "qdisc_really_really_advanced", _("Show and Use Dangerous Configuration. Dangerous options will only be used as long as this box is checked.")); + o = s.taboption("tab_qdisc", form.Flag, "qdisc_really_really_advanced", _("Dangerous Configuration"), _("Dangerous options will only be used as long as this box is checked.")); o.default = false o.depends("qdisc_advanced", "1"); - o = s.taboption("tab_qdisc", form.Value, "ilimit", _("Hard limit on ingress queues; leave empty for default.")); + o = s.taboption("tab_qdisc", form.Value, "ilimit", _("Hard queue limit (ingress)"), _("Hard limit on ingress queues; leave empty for default.")); o.datatype = "and(uinteger,min(0))"; o.depends("qdisc_really_really_advanced", "1"); - o = s.taboption("tab_qdisc", form.Value, "elimit", _("Hard limit on egress queues; leave empty for default.")); + o = s.taboption("tab_qdisc", form.Value, "elimit", _("Hard queue limit (egress)"), _("Hard limit on egress queues; leave empty for default.")); o.datatype = "and(uinteger,min(0))"; o.depends("qdisc_really_really_advanced", "1"); - o = s.taboption("tab_qdisc", form.Value, "itarget", _("Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default.")); + o = s.taboption("tab_qdisc", form.Value, "itarget", _("Latency target (ingress)"), _("Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default.")); o.datatype = "string"; o.depends("qdisc_really_really_advanced", "1"); - o = s.taboption("tab_qdisc", form.Value, "etarget", _("Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default.")); + o = s.taboption("tab_qdisc", form.Value, "etarget", _("Latency target (egress)"), _("Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default.")); o.datatype = "string"; o.depends("qdisc_really_really_advanced", "1"); - o = s.taboption("tab_qdisc", form.Value, "iqdisc_opts", _("Advanced option string to pass to the ingress queueing disciplines; no error checking, use very carefully.")); + o = s.taboption("tab_qdisc", form.Value, "iqdisc_opts", _("Qdisc options (ingress)"), _("Advanced option string to pass to the ingress queueing disciplines; no error checking, use very carefully.")); o.depends("qdisc_really_really_advanced", "1"); - o = s.taboption("tab_qdisc", form.Value, "eqdisc_opts", _("Advanced option string to pass to the egress queueing disciplines; no error checking, use very carefully.")); + o = s.taboption("tab_qdisc", form.Value, "eqdisc_opts", _("Qdisc options (egress)"), _("Advanced option string to pass to the egress queueing disciplines; no error checking, use very carefully.")); o.depends("qdisc_really_really_advanced", "1"); // LINKLAYER - o = s.taboption("tab_linklayer", form.ListValue, "linklayer", _("Which link layer to account for:")); + o = s.taboption("tab_linklayer", form.ListValue, "linklayer", _("Link layer"), _("Which link layer technology to account for")); o.value("none", "none (" + _("default") + ")"); o.value("ethernet", "Ethernet with overhead: select for e.g. VDSL2."); o.value("atm", "ATM: select for e.g. ADSL1, ADSL2, ADSL2+."); o.default = "none"; - o = s.taboption("tab_linklayer", form.Value, "overhead", _("Per Packet Overhead (byte):")); + o = s.taboption("tab_linklayer", form.Value, "overhead", _("Per Packet Overhead (bytes)")); o.datatype = "and(integer,min(-1500))"; o.default = 0 o.depends("linklayer", "ethernet"); o.depends("linklayer", "atm"); - o = s.taboption("tab_linklayer", form.Flag, "linklayer_advanced", _("Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced options will only be used as long as this box is checked.")); + o = s.taboption("tab_linklayer", form.Flag, "linklayer_advanced", _("Advanced Linklayer Options"), _("Advanced options will only be used as long as this box is checked (only needed if MTU > 1500).")); o.depends("linklayer", "ethernet"); o.depends("linklayer", "atm"); - o = s.taboption("tab_linklayer", form.Value, "tcMTU", _("Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= interface MTU + overhead:")); + o = s.taboption("tab_linklayer", form.Value, "tcMTU", _("Maximum packet size"), _("Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= interface MTU + overhead")); o.datatype = "and(uinteger,min(0))"; o.default = 2047 o.depends("linklayer_advanced", "1"); - o = s.taboption("tab_linklayer", form.Value, "tcTSIZE", _("Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU + 1) / 16:")); + o = s.taboption("tab_linklayer", form.Value, "tcTSIZE", _("Rate table size"), _("Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU + 1) / 16")); o.datatype = "and(uinteger,min(0))"; o.default = 128 o.depends("linklayer_advanced", "1"); - o = s.taboption("tab_linklayer", form.Value, "tcMPU", _("Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:")); + o = s.taboption("tab_linklayer", form.Value, "tcMPU", _("Minimum packet size"), _("Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables")); o.datatype = "and(uinteger,min(0))"; o.default = 0 o.depends("linklayer_advanced", "1"); - o = s.taboption("tab_linklayer", form.ListValue, "linklayer_adaptation_mechanism", _("Which linklayer adaptation mechanism to use; for testing only")); + o = s.taboption("tab_linklayer", form.ListValue, "linklayer_adaptation_mechanism", _("Linklayer adaptation mechanism"), _("Which linklayer adaptation mechanism to use; for testing only")); o.value("default", "default (" + _("default") + ")"); o.value("cake"); o.value("htb_private"); diff --git a/applications/luci-app-sqm/po/ar/sqm.po b/applications/luci-app-sqm/po/ar/sqm.po index 48447fae9b..6a25928140 100644 --- a/applications/luci-app-sqm/po/ar/sqm.po +++ b/applications/luci-app-sqm/po/ar/sqm.po @@ -11,6 +11,14 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.5.1\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -25,6 +33,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "الإعدادات الأساسية" @@ -35,28 +53,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -71,8 +111,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -80,6 +132,14 @@ msgid "Interface name" msgstr "اسم الواجهة" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -95,25 +155,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -124,44 +218,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -178,9 +260,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -188,7 +273,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/bg/sqm.po b/applications/luci-app-sqm/po/bg/sqm.po index 4763b4aa3f..d005a5d30a 100644 --- a/applications/luci-app-sqm/po/bg/sqm.po +++ b/applications/luci-app-sqm/po/bg/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Основни настройки" @@ -34,31 +52,50 @@ msgstr "" "Създаване на журнален файл за тази инстанция на SQM под /var/run/sqm/" "${Interface_name}.[start|stop]-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 -#, fuzzy msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" -"Скорост на изтегляне (kbit/s) (входящ) зададена на 0, деактивира оформянето " -"на входящия трафик:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Активиране на SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Активиране на тази SQM инстанция." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -73,15 +110,35 @@ msgstr "Твърд лимит на изходните опашки; оставе msgid "Hard limit on ingress queues; leave empty for default." msgstr "Твърд лимит на входящите опашки; оставете празно по подразбиране." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Игнориране на DSCP за входящ:" +msgid "Ignore DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Име на интерфейса" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -103,25 +160,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -132,44 +223,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -186,9 +265,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -196,7 +278,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 @@ -217,3 +299,14 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "" + +#, fuzzy +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Скорост на изтегляне (kbit/s) (входящ) зададена на 0, деактивира " +#~ "оформянето на входящия трафик:" + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Игнориране на DSCP за входящ:" diff --git a/applications/luci-app-sqm/po/bn_BD/sqm.po b/applications/luci-app-sqm/po/bn_BD/sqm.po index 81e5f56c2f..2a068bcb6f 100644 --- a/applications/luci-app-sqm/po/bn_BD/sqm.po +++ b/applications/luci-app-sqm/po/bn_BD/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.4-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "সাধারন সেটিংস" @@ -32,28 +50,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -68,8 +108,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -77,6 +129,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -92,25 +152,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -121,44 +215,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -175,9 +257,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -185,7 +270,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/ca/sqm.po b/applications/luci-app-sqm/po/ca/sqm.po index bab2a9f42d..74291e5efd 100644 --- a/applications/luci-app-sqm/po/ca/sqm.po +++ b/applications/luci-app-sqm/po/ca/sqm.po @@ -4,6 +4,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -16,6 +24,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -26,28 +44,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -62,8 +102,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -71,6 +123,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -86,25 +146,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -115,44 +209,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -169,9 +251,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -179,7 +264,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/cs/sqm.po b/applications/luci-app-sqm/po/cs/sqm.po index 53293384ba..9657f0a0f6 100644 --- a/applications/luci-app-sqm/po/cs/sqm.po +++ b/applications/luci-app-sqm/po/cs/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.7-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -24,6 +32,16 @@ msgstr "" "Řetězec rozšířených možností pro předání do frontových disciplín; bez " "kontroly chyb, používejte s opatrností." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Základní nastavení" @@ -34,28 +52,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -70,8 +110,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -79,6 +131,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -94,25 +154,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -123,44 +217,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -177,9 +259,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -187,7 +272,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/da/sqm.po b/applications/luci-app-sqm/po/da/sqm.po index 66b4f784a6..78e9d2e938 100644 --- a/applications/luci-app-sqm/po/da/sqm.po +++ b/applications/luci-app-sqm/po/da/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9.1-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -23,8 +31,18 @@ msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -"Avanceret indstillingsstreng, der skal overføres til de indgående " -"kø-discipliner; ingen fejlkontrol, brug den med stor forsigtighed." +"Avanceret indstillingsstreng, der skal overføres til de indgående kø-" +"discipliner; ingen fejlkontrol, brug den med stor forsigtighed." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" @@ -35,36 +53,54 @@ msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -"Opret logfil for denne SQM-instans under /var/run/sqm/" -"${Interface_name}.[start|stop]-sqm.log." +"Opret logfil for denne SQM-instans under /var/run/sqm/${Interface_name}." +"[start|stop]-sqm.log." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" -"Downloadhastighed (kbit/s) (ingress) indstilles til 0 for selektivt at " -"deaktivere indgangsformning:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Aktiver SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Aktiver denne SQM-instans." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" -"ECN-status (Explicit congestion notification) for indgående pakker (ingress):" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" -"ECN-status (Explicit congestion notification) på udgående pakker (egress)." #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -78,15 +114,35 @@ msgstr "Hård grænse for egress køer; lad den være tom som standard." msgid "Hard limit on ingress queues; leave empty for default." msgstr "Hård grænse for ingress køer; lad den være tom som standard." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Ignorer DSCP ved ingress:" +msgid "Ignore DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Interface navn" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -106,32 +162,60 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Tilpasning af linklag" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" -"Maksimal størrelse til beregning af størrelse og hastighed, tcMTU (byte); " -"skal være >= MTU for grænsefladen + overhead:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" -"Minimal pakkestørrelse, MPU (byte); skal være > 0 for ethernet-" -"størrelsestabeller:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Antal poster i størrelses-/taksttabeller, TSIZE; for ATM skal du vælge TSIZE " -"= (tcMTU + 1) / 16:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Overhead pr. pakke (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -141,54 +225,33 @@ msgstr "Kø Disciplin" msgid "Queue setup script" msgstr "Køopsætningsscript" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Køer" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" -"Kø-discipliner, der kan bruges på dette system. Når du har installeret en ny " -"qdisc, skal du genstarte routeren for at se opdateringer!" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Vis avancerede linklagsindstillinger (kun nødvendige, hvis MTU > 1500). " -"Avancerede indstillinger bruges kun, så længe dette afkrydsningsfelt er " -"markeret." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Vis og brug avanceret konfiguration. Avancerede indstillinger vil kun blive " -"brugt, så længe dette felt er markeret." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Vis og brug farlig konfiguration. Farlige indstillinger anvendes kun, så " -"længe dette felt er markeret." - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Smart køstyring" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Squash DSCP på indgående pakker (indgang):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -209,20 +272,21 @@ msgstr "" "for at aktivere denne tjeneste." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" -"Uploadhastighed (kbit/s) (egress) sat til 0 for selektivt at deaktivere " -"udgående formning:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "Verbosity af SQM's output i systemloggen." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Hvilket forbindelseslag der skal tages hensyn til:" +msgid "Which link layer technology to account for" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -246,3 +310,91 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "Standard" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Downloadhastighed (kbit/s) (ingress) indstilles til 0 for selektivt at " +#~ "deaktivere indgangsformning:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "ECN-status (Explicit congestion notification) for indgående pakker " +#~ "(ingress):" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "" +#~ "ECN-status (Explicit congestion notification) på udgående pakker (egress)." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Ignorer DSCP ved ingress:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Maksimal størrelse til beregning af størrelse og hastighed, tcMTU (byte); " +#~ "skal være >= MTU for grænsefladen + overhead:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Minimal pakkestørrelse, MPU (byte); skal være > 0 for ethernet-" +#~ "størrelsestabeller:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Antal poster i størrelses-/taksttabeller, TSIZE; for ATM skal du vælge " +#~ "TSIZE = (tcMTU + 1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Overhead pr. pakke (byte):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Kø-discipliner, der kan bruges på dette system. Når du har installeret en " +#~ "ny qdisc, skal du genstarte routeren for at se opdateringer!" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Vis avancerede linklagsindstillinger (kun nødvendige, hvis MTU > 1500). " +#~ "Avancerede indstillinger bruges kun, så længe dette afkrydsningsfelt er " +#~ "markeret." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Vis og brug avanceret konfiguration. Avancerede indstillinger vil kun " +#~ "blive brugt, så længe dette felt er markeret." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Vis og brug farlig konfiguration. Farlige indstillinger anvendes kun, så " +#~ "længe dette felt er markeret." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Squash DSCP på indgående pakker (indgang):" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Uploadhastighed (kbit/s) (egress) sat til 0 for selektivt at deaktivere " +#~ "udgående formning:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Hvilket forbindelseslag der skal tages hensyn til:" diff --git a/applications/luci-app-sqm/po/de/sqm.po b/applications/luci-app-sqm/po/de/sqm.po index e3cadb1517..c8c634201a 100644 --- a/applications/luci-app-sqm/po/de/sqm.po +++ b/applications/luci-app-sqm/po/de/sqm.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-04-26 22:07+0000\n" +"PO-Revision-Date: 2023-01-01 13:21+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/de/>\n" @@ -8,7 +8,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.12.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "Erweiterte Konfiguration" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "Erweiterte Optionen Verbindungsschicht (Linklayer)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -23,8 +31,22 @@ msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -"Erweiterte Optionszeichenkette zur Übergabe an die in die Warteschlange " -"einsteigenden Disziplinen; keine Fehlerprüfung, sehr vorsichtig verwenden." +"Erweiterte Optionszeichenkette zur Übergabe an die Eingangs-" +"Warteschlangendisziplinen; keine Fehlerprüfung, sehr vorsichtig verwenden." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" +"Die erweiterten Optionen werden nur verwendet, wenn dieses Kästchen " +"aktiviert ist (nur erforderlich, wenn MTU > 1500)." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" +"Die erweiterten Optionen werden nur verwendet, wenn dieses Kästchen markiert " +"ist." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" @@ -38,34 +60,54 @@ msgstr "" "Logdatei für diese SQM-Instanz unter /var/run/sqm/${Interface_name}.[start|" "stop]-sqm.log erstellen." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "Gefährliche Konfiguration" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" +"Gefährliche Optionen werden nur verwendet, wenn dieses Feld markiert ist." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "Download-Geschwindigkeit (Eingang)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" msgstr "" -"Download-Geschwindigkeit (kbit/s) (Ingress) auf 0 setzen, um Ingress-Shaping " -"selektiv zu deaktivieren:" +"Download-Geschwindigkeit (kbit/s) (Eingang) auf 0 setzen, um Eingang-Shaping " +"selektiv zu deaktivieren" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "ECN (ausgehend)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" +msgstr "ECN (Eingang)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "SQM aktivieren" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "Aktiviere Debug-Protokollierung" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." -msgstr "Diese SQM-Instanz aktivieren" +msgstr "Diese SQM-Instanz aktivieren." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "" -"Explicit congestion notification (ECN) Status für eingehende Pakete " -"(ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" +msgstr "Explizite Überlastungsanzeige (ECN) bei eingehenden Paketen" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "" -"Explicit congestion notification (ECN) Status für ausgehende Pakete (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" +msgstr "Explizite Überlastungsanzeige (ECN) bei ausgehenden Paketen" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -78,17 +120,38 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 msgid "Hard limit on ingress queues; leave empty for default." -msgstr "Harte Begrenzung der Eingangswarteschlangen; Standardmäßig leer lassen." +msgstr "" +"Harte Begrenzung der Eingangswarteschlangen; Standardmäßig leer lassen." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "Harte Warteschlangenbegrenzung (Ausgang)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "Harte Warteschlangenbegrenzung (Eingang)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "DSCP ignorieren (Eingang)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "DSCP bei Paketeingang ignorieren:" +msgid "Ignore DSCP markings on inbound packets" +msgstr "DSCP-Markierungen auf eingehenden Paketen ignorieren" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Schnittstellenname" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "Latenzziel (Ausgang)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "Latenzziel (Eingang)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -110,34 +173,70 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Anpassung der Verbindungsschicht" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "Link-Layer" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "Linklayer-Anpassungsmechanismus" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" +"Listet die Warteschlangendisziplinen auf, die auf diesem System verwendet " +"werden können. Nach der Installation einer neuen qdisc müssen Sie den Router " +"neu starten, um Updates zu sehen!" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "Ausführlichkeit des Protokolls" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" msgstr "" "Maximale Größe für Größen- und Ratenberechnungen, tcMTU (Byte); muss >= " -"Schnittstellen-MTU + Overhead sein:" +"Schnittstellen-MTU + Overhead sein" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" +msgstr "Maximale Paketgröße" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" msgstr "" -"Minimale Paketgröße, MPU (Byte); muss > 0 für Ethernet-Größentabellen sein:" +"Minimale Paketgröße, MPU (Byte); muss bei Ethernet-Größentabellen > 0 sein" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" +msgstr "Minimale Paketgröße" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Anzahl der Einträge in Größen/Raten-Tabellen, TSIZE; für ATM wählen Sie " -"TSIZE = (tcMTU + 1) / 16:" +"Anzahl der Einträge in Größen-/Raten-Tabellen, TSIZE; für ATM wählen Sie " +"TSIZE = (tcMTU + 1) / 16" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Overhead pro Paket (Byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "Overhead pro Paket (Bytes)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "Qdisc-Optionen (Ausgang)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "Qdisc-Optionen (Eingang)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 -#, fuzzy msgid "Queue Discipline" msgstr "Queue Discipline" @@ -145,56 +244,33 @@ msgstr "Queue Discipline" msgid "Queue setup script" msgstr "Skript zum Aufsetzen der Warteschlange" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "Warteschlangendisziplin" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Warteschlangen" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" -msgstr "" -"Warteschlangenstrukturen die auf diesem System benutzbar sind. Der Router " -"muss nach der Installation einer neuen qdisc neu gestartet werden, um die " -"Änderungen sehen zu können." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" +msgstr "Größe der Ratentabelle" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Erweiterte Verbindungsschicht-Optionen anzeigen, (nur erforderlich, wenn MTU " -"> 1500). Die erweiterten Optionen werden nur verwendet, solange dieses " -"Kästchen markiert ist." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Erweiterte Konfiguration anzeigen und verwenden. Die erweiterten Optionen " -"werden nur verwendet, wenn diese Option ausgewählt ist." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Gefährliche Einstellungen anzeigen und nutzen. Gefährliche Optionen werden " -"nur benutzt, solange diese Box ausgewählt ist." - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Smart Queue Management" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -#, fuzzy -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Squash DSCP bei eingehenden Paketen (Ingress):" +msgid "Squash DSCP (ingress)" +msgstr "Squash-DSCP (Eingang)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "DSCP-Markierungen auf eingehenden Paketen unterdrücken" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -215,20 +291,23 @@ msgstr "" "Schaltfläche unten, um diesen Dienst zu aktivieren." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "Hochladegeschwindigkeit (Ausgang)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" -"Upload-Geschwindigkeit (kbit/s) (egress) auf 0 setzen, um die egress " -"Paketflusskontrolle abzuschalten:" +"Upload-Geschwindigkeit (kbit/s) (Ausgang) auf 0 gesetzt, um Ausgang-Shaping " +"selektiv zu deaktivieren" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." -msgstr "Festlegen, wie ausführlich SQM ins Systemlog schreiben soll" +msgstr "Festlegen, wie ausführlich SQM ins Systemlog schreiben soll." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Welche Verbindungsschicht zu berücksichtigen ist:" +msgid "Which link layer technology to account for" +msgstr "Welche Link-Layer-Technologie zu berücksichtigen ist" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -253,3 +332,93 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "Standardeinstellung" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Download-Geschwindigkeit (kbit/s) (Ingress) auf 0 setzen, um Ingress-" +#~ "Shaping selektiv zu deaktivieren:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "Explicit congestion notification (ECN) Status für eingehende Pakete " +#~ "(ingress):" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "" +#~ "Explicit congestion notification (ECN) Status für ausgehende Pakete " +#~ "(egress)." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "DSCP bei Paketeingang ignorieren:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Maximale Größe für Größen- und Ratenberechnungen, tcMTU (Byte); muss >= " +#~ "Schnittstellen-MTU + Overhead sein:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Minimale Paketgröße, MPU (Byte); muss > 0 für Ethernet-Größentabellen " +#~ "sein:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Anzahl der Einträge in Größen/Raten-Tabellen, TSIZE; für ATM wählen Sie " +#~ "TSIZE = (tcMTU + 1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Overhead pro Paket (Byte):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Warteschlangenstrukturen die auf diesem System benutzbar sind. Der Router " +#~ "muss nach der Installation einer neuen qdisc neu gestartet werden, um die " +#~ "Änderungen sehen zu können." + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Erweiterte Verbindungsschicht-Optionen anzeigen, (nur erforderlich, wenn " +#~ "MTU > 1500). Die erweiterten Optionen werden nur verwendet, solange " +#~ "dieses Kästchen markiert ist." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Erweiterte Konfiguration anzeigen und verwenden. Die erweiterten Optionen " +#~ "werden nur verwendet, wenn diese Option ausgewählt ist." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Gefährliche Einstellungen anzeigen und nutzen. Gefährliche Optionen " +#~ "werden nur benutzt, solange diese Box ausgewählt ist." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Squash DSCP bei eingehenden Paketen (Ingress):" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Upload-Geschwindigkeit (kbit/s) (egress) auf 0 setzen, um die egress " +#~ "Paketflusskontrolle abzuschalten:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Welche Verbindungsschicht zu berücksichtigen ist:" diff --git a/applications/luci-app-sqm/po/el/sqm.po b/applications/luci-app-sqm/po/el/sqm.po index d165ea0d01..7920acf371 100644 --- a/applications/luci-app-sqm/po/el/sqm.po +++ b/applications/luci-app-sqm/po/el/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Βασικές Ρυθμίσεις" @@ -32,28 +50,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -68,8 +108,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -77,6 +129,14 @@ msgid "Interface name" msgstr "Όνομα διεπαφής (Interface)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -92,25 +152,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -121,44 +215,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -175,9 +257,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -185,7 +270,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/en/sqm.po b/applications/luci-app-sqm/po/en/sqm.po index 548b41e7dc..1799524bac 100644 --- a/applications/luci-app-sqm/po/en/sqm.po +++ b/applications/luci-app-sqm/po/en/sqm.po @@ -4,6 +4,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -16,6 +24,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -26,28 +44,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -62,8 +102,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -71,6 +123,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -86,25 +146,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -115,44 +209,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -169,9 +251,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -179,7 +264,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/es/sqm.po b/applications/luci-app-sqm/po/es/sqm.po index bfb6036026..d3589afd30 100644 --- a/applications/luci-app-sqm/po/es/sqm.po +++ b/applications/luci-app-sqm/po/es/sqm.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-05-01 16:23+0000\n" +"PO-Revision-Date: 2022-12-27 19:24+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/es/>\n" @@ -8,7 +8,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.12.1\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "Configuración avanzada" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "Opciones avanzadas de capa de enlace" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -26,6 +34,19 @@ msgstr "" "Cadena de opciones avanzadas para pasar a las disciplinas de colas de " "ingreso; sin verificación de errores, use con mucho cuidado." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" +"Las opciones avanzadas solo se utilizarán mientras esta casilla esté marcada " +"(solo es necesario si MTU > 1500)." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" +"Las opciones avanzadas solo se utilizarán mientras esta casilla esté marcada." + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Configuración básica" @@ -38,35 +59,57 @@ msgstr "" "Cree un archivo de registro para esta instancia de SQM en /var/run/sqm/" "${Interface_name}.[start|stopfont>-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "Configuración peligrosa" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" +"Las opciones peligrosas sólo se utilizarán mientras esta casilla esté " +"marcada." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "Velocidad de descarga (ingreso)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" msgstr "" -"La velocidad de descarga (kbit/s) (ingreso) se establece en 0 para " -"desactivar selectivamente la configuración de ingreso:" +"Velocidad de descarga (kbit/s) (ingreso) establecida en 0 para desactivar " +"selectivamente el modelado de ingreso" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "ECN (salida)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" +msgstr "ECN (ingreso)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Activar SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "Activar el registro de depuración" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Activar esta instancia de SQM." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" -"Estado de notificación explícita de congestión (ECN) en paquetes entrantes " -"(ingreso):" +"Estado de notificación de congestión explícita (ECN) en paquetes entrantes" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" -"Estado explícito de notificación de congestión (ECN) en paquetes salientes " -"(salida)." +"Estado de notificación de congestión explícita (ECN) en paquetes salientes" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -80,15 +123,35 @@ msgstr "Límite estricto en las colas de salida; dejar en blanco por defecto." msgid "Hard limit on ingress queues; leave empty for default." msgstr "Límite estricto en las colas de ingreso; dejar en blanco por defecto." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "Límite duro de cola (salida)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "Límite duro de cola (ingreso)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "Ignorar DSCP (ingreso)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Ignorar DSCP en ingreso:" +msgid "Ignore DSCP markings on inbound packets" +msgstr "Ignorar las marcas DSCP en los paquetes entrantes" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Nombre de la interfaz" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "Objetivo de latencia (salida)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "Objetivo de latencia (ingreso)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -110,32 +173,70 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Adaptación de capa de enlace" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "Capa de enlace" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "Mecanismo de adaptación de capa de enlace" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" +"Enumera las disciplinas de colas que se pueden utilizar en este sistema. ¡" +"Después de instalar un nuevo qdisc, debe reiniciar el enrutador para ver las " +"actualizaciones!" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "Verbosidad del registro" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +#, fuzzy msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" msgstr "" -"Tamaño máximo para cálculos de tamaño y velocidad, tcMTU (byte); necesita " -"ser >= interfaz MTU + gastos generales:" +"Tamaño máximo para cálculos de tamaño y velocidad, tcMTU (byte); debe ser >= " +"MTU de interfaz + sobrecarga" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" +msgstr "Tamaño máximo de paquete" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" msgstr "" -"Tamaño de paquete mínimo, MPU (byte); debe ser > 0 para tablas de tamaño de " -"ethernet:" +"Tamaño mínimo de paquete, MPU (byte); debe ser > 0 para las tablas de tamaño " +"de ethernet" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" +msgstr "Tamaño mínimo de paquete" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Número de entradas en tablas de tamaño/tasa, TSIZE; para ATM, elija TSIZE = " -"(tcMTU + 1) / 16:" +"Número de entradas en tablas de tamaño/tasa, TSIZE; para ATM elija TSIZE = (" +"tcMTU + 1) / 16" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Por paquete de arriba (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "Sobrecarga por paquete (bytes)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "Opciones de Qdisc (salida)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "Opciones de Qdisc (ingreso)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -145,53 +246,35 @@ msgstr "Disciplina de cola" msgid "Queue setup script" msgstr "Script de configuración de cola" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "Disciplina en las colas" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Colas" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" -msgstr "" -"Disciplinas de colas utilizables en este sistema. Después de instalar un " -"nuevo qdisc, ¡debe reiniciar el enrutador para ver las actualizaciones!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" +msgstr "Tamaño de la tabla de tasas" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" -msgstr "Gestión inteligente de colas" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Mostrar opciones avanzadas de Linklayer (solo es necesario si MTU > 1500). " -"Las opciones avanzadas solo se utilizarán mientras esta casilla esté marcada." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Mostrar y usar la Configuración avanzada. Las opciones avanzadas solo se " -"utilizarán mientras esta casilla esté marcada." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Mostrar y usar la Configuración Peligrosa. Las opciones peligrosas sólo se " -"utilizarán mientras esté marcada esta casilla." +msgstr "QoS inteligente" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Gestión inteligente de colas" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Aplastar DSCP en paquetes entrantes (ingreso):" +#, fuzzy +msgid "Squash DSCP (ingress)" +msgstr "Squash DSCP (ingreso)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +#, fuzzy +msgid "Squash DSCP markings on inbound packets" +msgstr "Squash DSCP marcas en paquetes entrantes" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -212,20 +295,23 @@ msgstr "" "activar este servicio." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "Velocidad de subida (salida)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" "Velocidad de carga (kbit/s) (salida) establecida en 0 para desactivar " -"selectivamente la configuración de salida:" +"selectivamente el modelado de salida" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "Verbosidad de la salida de SQM en el registro del sistema." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Qué capa de enlace debe tener en cuenta:" +msgid "Which link layer technology to account for" +msgstr "Qué tecnología de capa de enlace se debe tener en cuenta" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -248,3 +334,92 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "predeterminado" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "La velocidad de descarga (kbit/s) (ingreso) se establece en 0 para " +#~ "desactivar selectivamente la configuración de ingreso:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "Estado de notificación explícita de congestión (ECN) en paquetes " +#~ "entrantes (ingreso):" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "" +#~ "Estado explícito de notificación de congestión (ECN) en paquetes " +#~ "salientes (salida)." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Ignorar DSCP en ingreso:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Tamaño máximo para cálculos de tamaño y velocidad, tcMTU (byte); necesita " +#~ "ser >= interfaz MTU + gastos generales:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Tamaño de paquete mínimo, MPU (byte); debe ser > 0 para tablas de tamaño " +#~ "de ethernet:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Número de entradas en tablas de tamaño/tasa, TSIZE; para ATM, elija TSIZE " +#~ "= (tcMTU + 1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Por paquete de arriba (byte):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Disciplinas de colas utilizables en este sistema. Después de instalar un " +#~ "nuevo qdisc, ¡debe reiniciar el enrutador para ver las actualizaciones!" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Mostrar opciones avanzadas de Linklayer (solo es necesario si MTU > " +#~ "1500). Las opciones avanzadas solo se utilizarán mientras esta casilla " +#~ "esté marcada." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Mostrar y usar la Configuración avanzada. Las opciones avanzadas solo se " +#~ "utilizarán mientras esta casilla esté marcada." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Mostrar y usar la Configuración Peligrosa. Las opciones peligrosas sólo " +#~ "se utilizarán mientras esté marcada esta casilla." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Aplastar DSCP en paquetes entrantes (ingreso):" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Velocidad de carga (kbit/s) (salida) establecida en 0 para desactivar " +#~ "selectivamente la configuración de salida:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Qué capa de enlace debe tener en cuenta:" diff --git a/applications/luci-app-sqm/po/fi/sqm.po b/applications/luci-app-sqm/po/fi/sqm.po index d37903f766..41be51b09f 100644 --- a/applications/luci-app-sqm/po/fi/sqm.po +++ b/applications/luci-app-sqm/po/fi/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Perusasetukset" @@ -34,30 +52,50 @@ msgstr "" "Luo lokitiedosto tälle SQM-esiintymälle: /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" -"Latausnopeus (kbit/s) (ingress). Aseta arvoksi 0 ottaaksesi latausnopeuden " -"säädön pois päältä:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Ota tämä SQM-esiintymä käyttöön." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -72,15 +110,35 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Sivuuta DSCP saapuvalta liikenteeltä:" +msgid "Ignore DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Sovittimen nimi" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -96,26 +154,60 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Linkkikerroksen sopeuttaminen" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Lisäkuorma pakettia kohti (tavu):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -125,46 +217,32 @@ msgstr "Jonomenetelmä (qdisc)" msgid "Queue setup script" msgstr "Jonomenetelmän asetustiedosto" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Jonot" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" -"Käytettävissä olevat jonomenetelmät (qdisc). Uuden qdiscin asentamisen " -"jälkeen tiedot päivittyvät laitteen uudelleenkäynnistyksen yhteydessä." #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Älykäs jononhallinta" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -181,19 +259,20 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" -"Lähetysnopeus kilobitteinä sekunnissa (kbit/s). Aseta arvoksi 0 ottaaksesi " -"lähetysnopeuden säädön pois päältä:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "SQM tapahtumien lokiinkirjaamisen tarkkuus." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 @@ -214,3 +293,30 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "vakio" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Latausnopeus (kbit/s) (ingress). Aseta arvoksi 0 ottaaksesi " +#~ "latausnopeuden säädön pois päältä:" + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Sivuuta DSCP saapuvalta liikenteeltä:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Lisäkuorma pakettia kohti (tavu):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Käytettävissä olevat jonomenetelmät (qdisc). Uuden qdiscin asentamisen " +#~ "jälkeen tiedot päivittyvät laitteen uudelleenkäynnistyksen yhteydessä." + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Lähetysnopeus kilobitteinä sekunnissa (kbit/s). Aseta arvoksi 0 " +#~ "ottaaksesi lähetysnopeuden säädön pois päältä:" diff --git a/applications/luci-app-sqm/po/fr/sqm.po b/applications/luci-app-sqm/po/fr/sqm.po index b4ae43d921..585d39f19e 100644 --- a/applications/luci-app-sqm/po/fr/sqm.po +++ b/applications/luci-app-sqm/po/fr/sqm.po @@ -1,14 +1,22 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-08 14:26+0000\n" -"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n" +"PO-Revision-Date: 2022-07-31 13:17+0000\n" +"Last-Translator: Christophe Blancon <christophe.blancon@gmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/fr/>\n" "Language: fr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.14-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -27,6 +35,16 @@ msgstr "" "d'entrée ; pas de vérification d'erreur, à utiliser avec beaucoup de " "précaution." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Paramètres de base" @@ -39,16 +57,38 @@ msgstr "" "Créer un fichier journal pour cette instance SQM sous /var/run/sqm/" "${nom_interface}. [start|stop]-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" -"Vitesse de téléchargement (kbit/s) (ingress) réglée sur 0 pour désactiver " -"sélectivement la mise en forme de l'ingress :" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" +msgstr "Activer l'indicateur de la qualité des signaux (SQM)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 @@ -56,17 +96,12 @@ msgid "Enable this SQM instance." msgstr "Activez cette instance SQM." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" -"Statut de notification de congestion (ECN) sur les paquets entrants " -"(ingress) :" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" -"Statut de notification de congestion (ECN) sur les paquets sortant (egress)." #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -80,15 +115,35 @@ msgstr "Limite des files d'attente pour la sortie ; laisser vide par défaut." msgid "Hard limit on ingress queues; leave empty for default." msgstr "Limite des files d'attente entrée ; laisser vide par défaut." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Ignoré DSCP à l'entrée :" +msgid "Ignore DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Nom de l’interface" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -108,90 +163,98 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "Link Layer Adaptation" -msgstr "Adaptation de liaison" +msgstr "Adaptation de la couche de liaison" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" -"Taille maximale pour les calculs de taille et de taux, tcMTU (byte) ; doit " -"être >= interface MTU + overhead :" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" -"Taille minimale des paquets, MPU (byte) ; doit être > 0 pour les tailes de " -"tables ethernet :" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Nombre d'entrées de taille/debit tables, TSIZE ; for ATM choose TSIZE = " -"(tcMTU + 1) / 16 :" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Overhead par Packet(byte) :" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" -msgstr "Queue Discipline" +msgstr "Discipline de la file d'attente" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120 msgid "Queue setup script" msgstr "Script de file d'attente" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" -msgstr "Queues" +msgstr "Files d'attente" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" -"Les disciplines de file d'attente sur ce système. Après avoir installé un " -"nouveau qdisc, vous devez redémarrer le routeur pour voir les mises à jour !" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" -msgstr "SQM QoS" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Afficher les options avancées du Linklayer, (uniquement nécessaire si MTU > " -"1500). Les options avancées ne seront utilisées que si cette case est cochée." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Afficher et utiliser la configuration avancée. Les options avancées ne " -"seront utilisées que tant que cette case sera cochée." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Afficher et utiliser une configuration dangereuse. Les options dangereuses " -"ne seront utilisées que si cette case est cochée." +msgstr "Qualité de service SQM" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" -msgstr "Management File d'attente" +msgstr "Gestion intelligente des files d'attente" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Écraser le DSCP sur les paquets entrants (ingress) :" +msgid "Squash DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -208,24 +271,31 @@ msgid "" "The SQM service seems to be disabled. Please use the button below to " "activate this service." msgstr "" +"Le service SQM semble être désactivé. Veuillez utiliser le bouton ci-dessous " +"pour activer ce service." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" -msgstr "Vitesse de chargement (kbit/s) (sortie) Mettre sur 0 pour désactiver :" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "Verbosité de la sortie de SQM dans le journal du système." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Quelle couche liaison à prendre en compte :" +msgid "Which link layer technology to account for" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" -msgstr "Mécanisme d'adaptation de la couche de liaison ; pour essai uniquement" +msgstr "" +"Quel mécanisme d'adaptation de la couche de liaison utiliser ; à des fins de " +"test uniquement" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 msgid "" @@ -244,4 +314,94 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188 #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" -msgstr "Par défaut" +msgstr "par défaut" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Vitesse de téléchargement (kbit/s) (ingress) réglée sur 0 pour désactiver " +#~ "sélectivement la mise en forme de l'ingress :" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "Statut de notification de congestion (ECN) sur les paquets entrants " +#~ "(ingress) :" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "" +#~ "Statut de notification de congestion (ECN) sur les paquets sortant " +#~ "(egress)." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Ignorer DSCP à l'entrée :" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Taille maximale pour les calculs de taille et de débit, tcMTU (octet); " +#~ "doit être >= interface MTU + surcharge:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Taille minimale des paquets, MPU (octet) ; doit être > 0 pour les tables " +#~ "de taille ethernet :" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Nombre d'entrées dans les tables de taille/taux, TSIZE ; pour ATM, " +#~ "choisir TSIZE = (tcMTU + 1) / 16 :" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Surcharge par paquet (octet) :" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Les disciplines de file d'attente sur ce système. Après avoir installé un " +#~ "nouveau qdisc, vous devez redémarrer le routeur pour voir les mises à " +#~ "jour !" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Afficher les options avancées du Linklayer, (uniquement nécessaire si MTU " +#~ "> 1500). Les options avancées ne seront utilisées que si cette case est " +#~ "cochée." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Afficher et utiliser la configuration avancée. Les options avancées ne " +#~ "seront utilisées que si cette case est cochée." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Afficher et utiliser une configuration dangereuse. Les options " +#~ "dangereuses ne seront utilisées que si cette case est cochée." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Écraser le DSCP sur les paquets entrants (ingress) :" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Vitesse de téléchargement (kbit/s) (egress) défini à 0 pour désactiver " +#~ "sélectivement la mise en forme de l'egress :" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Quelle couche liaison à prendre en compte :" diff --git a/applications/luci-app-sqm/po/he/sqm.po b/applications/luci-app-sqm/po/he/sqm.po index 587c49fcd7..d90f0867e1 100644 --- a/applications/luci-app-sqm/po/he/sqm.po +++ b/applications/luci-app-sqm/po/he/sqm.po @@ -4,6 +4,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -16,6 +24,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -26,28 +44,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -62,8 +102,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -71,6 +123,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -86,25 +146,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -115,44 +209,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -169,9 +251,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -179,7 +264,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/hi/sqm.po b/applications/luci-app-sqm/po/hi/sqm.po index 111424659e..fe43ae1b87 100644 --- a/applications/luci-app-sqm/po/hi/sqm.po +++ b/applications/luci-app-sqm/po/hi/sqm.po @@ -4,6 +4,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -16,6 +24,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -26,28 +44,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -62,8 +102,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -71,6 +123,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -86,25 +146,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -115,44 +209,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -169,9 +251,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -179,7 +264,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/hu/sqm.po b/applications/luci-app-sqm/po/hu/sqm.po index e4b96b811b..2ca9edf4c7 100644 --- a/applications/luci-app-sqm/po/hu/sqm.po +++ b/applications/luci-app-sqm/po/hu/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Alapszintű beállítások" @@ -32,28 +50,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "SQM engedélyezése" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -68,8 +108,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -77,6 +129,14 @@ msgid "Interface name" msgstr "Csatoló neve" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -92,25 +152,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -121,44 +215,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -175,9 +257,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -185,7 +270,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/it/sqm.po b/applications/luci-app-sqm/po/it/sqm.po index 3a867c3ad3..211356e543 100644 --- a/applications/luci-app-sqm/po/it/sqm.po +++ b/applications/luci-app-sqm/po/it/sqm.po @@ -1,20 +1,30 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-09-09 08:44+0000\n" -"Last-Translator: pisquan8 <cimurro@outlook.de>\n" +"PO-Revision-Date: 2022-12-31 11:08+0000\n" +"Last-Translator: Paul Spooren <mail@aparcar.org>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/it/>\n" "Language: it\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.8.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "Configurazione Avanzata" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" +"Stringa di opzioni avanzata da passare alle discipline di accodamento in " +"uscita; nessun controllo di errore, usare con cautela." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 msgid "" @@ -22,9 +32,19 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" -msgstr "" +msgstr "Impostazioni di base" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 msgid "" @@ -32,28 +52,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -68,8 +110,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -77,6 +131,14 @@ msgid "Interface name" msgstr "Nome interfaccia" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -92,25 +154,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -121,44 +217,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -175,9 +259,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -185,7 +272,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/ja/sqm.po b/applications/luci-app-sqm/po/ja/sqm.po index f7179b9dc0..0edbca92cb 100644 --- a/applications/luci-app-sqm/po/ja/sqm.po +++ b/applications/luci-app-sqm/po/ja/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "基本設定" @@ -32,28 +50,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "この SQM インスタンスを有効にします。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -68,8 +108,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -77,6 +129,14 @@ msgid "Interface name" msgstr "インターフェース名" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -92,25 +152,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -121,44 +215,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "キュー" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "スマート・キュー管理" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -175,9 +257,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -185,7 +270,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/ko/sqm.po b/applications/luci-app-sqm/po/ko/sqm.po index 8dbf6b6dd7..422f2fe3fe 100644 --- a/applications/luci-app-sqm/po/ko/sqm.po +++ b/applications/luci-app-sqm/po/ko/sqm.po @@ -1,14 +1,22 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-06-07 10:49+0000\n" -"Last-Translator: Sunggu Choi <dkaost@outlook.com>\n" +"PO-Revision-Date: 2022-12-27 13:49+0000\n" +"Last-Translator: somni <me@somni.one>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/ko/>\n" "Language: ko\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.7-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "기본 설정" @@ -32,28 +50,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -68,8 +108,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -77,6 +129,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -92,25 +152,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -121,44 +215,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -175,9 +257,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -185,7 +270,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 @@ -205,4 +290,4 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188 #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" -msgstr "" +msgstr "기본" diff --git a/applications/luci-app-sqm/po/mr/sqm.po b/applications/luci-app-sqm/po/mr/sqm.po index 4c14d4090b..93171dbcb1 100644 --- a/applications/luci-app-sqm/po/mr/sqm.po +++ b/applications/luci-app-sqm/po/mr/sqm.po @@ -4,6 +4,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -16,6 +24,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -26,28 +44,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -62,8 +102,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -71,6 +123,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -86,25 +146,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -115,44 +209,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -169,9 +251,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -179,7 +264,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/ms/sqm.po b/applications/luci-app-sqm/po/ms/sqm.po index b1857d906f..3a6c6b7732 100644 --- a/applications/luci-app-sqm/po/ms/sqm.po +++ b/applications/luci-app-sqm/po/ms/sqm.po @@ -4,6 +4,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -16,6 +24,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -26,28 +44,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -62,8 +102,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -71,6 +123,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -86,25 +146,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -115,44 +209,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -169,9 +251,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -179,7 +264,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/nb_NO/sqm.po b/applications/luci-app-sqm/po/nb_NO/sqm.po index 2c24412989..4a4acc2e12 100644 --- a/applications/luci-app-sqm/po/nb_NO/sqm.po +++ b/applications/luci-app-sqm/po/nb_NO/sqm.po @@ -4,6 +4,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -16,6 +24,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -26,28 +44,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -62,8 +102,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -71,6 +123,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -86,25 +146,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -115,44 +209,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -169,9 +251,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -179,7 +264,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/pl/sqm.po b/applications/luci-app-sqm/po/pl/sqm.po index 63d080dcef..effce416a9 100644 --- a/applications/luci-app-sqm/po/pl/sqm.po +++ b/applications/luci-app-sqm/po/pl/sqm.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-06-22 17:33+0000\n" +"PO-Revision-Date: 2022-12-28 07:01+0000\n" "Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/pl/>\n" @@ -9,7 +9,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.7.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "Zaawansowana konfiguracja" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "Zaawansowane opcje warstwy łączy" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -27,9 +35,22 @@ msgstr "" "Zaawansowany łańcuch opcji, aby przejść do dyscyplin kolejkowania ingress; " "bez sprawdzania błędów, używaj bardzo ostrożnie." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" +"Opcje zaawansowane będą używane tylko wtedy, gdy to pole jest zaznaczone (" +"potrzebne tylko, jeśli MTU > 1500)." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" +"Opcje zaawansowane będą używane tylko wtedy, gdy to pole jest zaznaczone." + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" -msgstr "Podstawowe ustawienia" +msgstr "Ustawienia podstawowe" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 msgid "" @@ -39,35 +60,56 @@ msgstr "" "Utwórz plik dziennika dla tej instancji SQM w /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "Niebezpieczna konfiguracja" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" +"Niebezpieczne opcje będą używane tylko wtedy, gdy to pole jest zaznaczone." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "Szybkość pobierania (wejście)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" msgstr "" -"Prędkość pobierania (kbit/s) (ingress) ustawiona na 0, aby selektywnie " -"wyłączyć kształtowanie ingress:" +"Szybkość pobierania (kbit/s) (wejście) ustawione na 0, aby selektywnie " +"wyłączyć kształtowanie wejścia" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "ECN (wyjście)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" +msgstr "ECN (wejście)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Włącz SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "Włącz rejestrowanie debugowania" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Włącz tę instancję SQM." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" -"Status jawnego powiadomienia o przeciążeniu (ECN) na pakietach " -"przychodzących (ingress):" +"Status jawnego powiadomienia o przeciążeniu (ECN) w pakietach przychodzących" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" -"Status jawnego powiadomienia o przeciążeniu (ECN) na pakietach wychodzących " -"(egress)." +"Status jawnego powiadomienia o przeciążeniu (ECN) w pakietach wychodzących" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -82,15 +124,35 @@ msgid "Hard limit on ingress queues; leave empty for default." msgstr "" "Twardy limit kolejek ingress; pozostawić puste dla ustawień domyślnych." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "Twardy limit kolejki (wyjście)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "Twardy limit kolejki (wejście)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Ignoruj DSCP przy ingress:" +msgid "Ignore DSCP (ingress)" +msgstr "Ignoruj DSCP (wejście)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP markings on inbound packets" +msgstr "Ignoruj oznaczenia DSCP na pakietach przychodzących" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Nazwa interfejsu" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "Docelowe opóźnienie (wyjście)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "Docelowe opóźnienie (wejście)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -110,32 +172,69 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Adaptacja warstwy połączenia" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "Warstwa łącza" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "Mechanizm adaptacji warstwy łącza" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" +"Wyświetla listę dyscyplin kolejkowania przydatnych w tym systemie. Po " +"zainstalowaniu nowej qdisc musisz ponownie uruchomić router, aby zobaczyć " +"aktualizacje!" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "Szczegółowość dziennika" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" msgstr "" -"Maksymalny rozmiar do obliczeń wielkości i szybkości, tcMTU (bajt); musi " -"być> = interfejs MTU + narzut:" +"Maksymalny rozmiar do obliczeń rozmiaru i szybkości, tcMTU (bajty); musi być " +">= interfejs MTU + narzut" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" +msgstr "Maksymalny rozmiar pakietu" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" msgstr "" -"Minimalny rozmiar pakietu, MPU (bajt); musi wynosić> 0 dla tabel rozmiarów " -"Ethernet:" +"Minimalny rozmiar pakietu, MPU (bajty); musi być > 0 dla tabel rozmiarów " +"Ethernet" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" +msgstr "Minimalny rozmiar pakietu" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Liczba wpisów w tabelach wielkości/szybkości, TSIZE; dla ATM wybrać TSIZE = " -"(tcMTU + 1) / 16:" +"Liczba wpisów w tabelach wielkości/szybkości, TSIZE; dla ATM wybrać TSIZE = (" +"tcMTU + 1) / 16" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Narzut na pakiet (bajt):" +msgid "Per Packet Overhead (bytes)" +msgstr "Narzut na pakiet (bajty)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "Opcje qdisc (wyjście)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "Opcje qdisc (wejście)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -145,53 +244,33 @@ msgstr "Dyscyplina kolejki" msgid "Queue setup script" msgstr "Skrypt konfiguracji kolejki" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "Dyscyplina kolejkowania" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Kolejki" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" -msgstr "" -"Dyscypliny kolejkowania przydatne w tym systemie. Po zainstalowaniu nowej " -"qdisc musisz ponownie uruchomić router, aby zobaczyć aktualizacje!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" +msgstr "Rozmiar tabeli szybkości" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Pokaż zaawansowane opcje Linklayera (wymagane tylko, jeśli MTU>1500). Opcje " -"zaawansowane będą używane tylko tak długo, jak to pole jest zaznaczone." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Pokaż i użyj konfiguracji zaawansowanej. Opcje zaawansowane będą używane " -"tylko tak długo, jak to pole jest zaznaczone." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Pokaż i używaj niebezpiecznej konfiguracji. Niebezpieczne opcje będą używane " -"tylko tak długo, jak to pole jest zaznaczone." - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Inteligentne zarządzanie kolejkami" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Squash DSCP na pakietach przychodzących (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "Zduś DSCP (wejście)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "Zduś oznaczenia DSCP na pakietach przychodzących" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -212,20 +291,23 @@ msgstr "" "aktywować tę usługę." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "Prędkość wysyłania (wyjście)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" -"Prędkość wysyłania (kbit/s) (egress) ustawiona na 0, aby selektywnie " -"wyłączyć kształtowanie egress:" +"Prędkość wysyłania (kbit/s) (wyjście) ustawione na 0, aby selektywnie " +"wyłączyć kształtowanie wyjścia" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "Szczegółowość danych wyjściowych SQM w dzienniku systemowym." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Którą warstwę łącza należy uwzględnić:" +msgid "Which link layer technology to account for" +msgstr "Którą technikę warstwy łącza należy uwzględnić" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -251,3 +333,92 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "domyślna" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Prędkość pobierania (kbit/s) (ingress) ustawiona na 0, aby selektywnie " +#~ "wyłączyć kształtowanie ingress:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "Status jawnego powiadomienia o przeciążeniu (ECN) na pakietach " +#~ "przychodzących (ingress):" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "" +#~ "Status jawnego powiadomienia o przeciążeniu (ECN) na pakietach " +#~ "wychodzących (egress)." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Ignoruj DSCP przy ingress:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Maksymalny rozmiar do obliczeń wielkości i szybkości, tcMTU (bajt); musi " +#~ "być> = interfejs MTU + narzut:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Minimalny rozmiar pakietu, MPU (bajt); musi wynosić> 0 dla tabel " +#~ "rozmiarów Ethernet:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Liczba wpisów w tabelach wielkości/szybkości, TSIZE; dla ATM wybrać TSIZE " +#~ "= (tcMTU + 1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Narzut na pakiet (bajt):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Dyscypliny kolejkowania przydatne w tym systemie. Po zainstalowaniu nowej " +#~ "qdisc musisz ponownie uruchomić router, aby zobaczyć aktualizacje!" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Pokaż zaawansowane opcje Linklayera (wymagane tylko, jeśli MTU>1500). " +#~ "Opcje zaawansowane będą używane tylko tak długo, jak to pole jest " +#~ "zaznaczone." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Pokaż i użyj konfiguracji zaawansowanej. Opcje zaawansowane będą używane " +#~ "tylko tak długo, jak to pole jest zaznaczone." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Pokaż i używaj niebezpiecznej konfiguracji. Niebezpieczne opcje będą " +#~ "używane tylko tak długo, jak to pole jest zaznaczone." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Squash DSCP na pakietach przychodzących (ingress):" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Prędkość wysyłania (kbit/s) (egress) ustawiona na 0, aby selektywnie " +#~ "wyłączyć kształtowanie egress:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Którą warstwę łącza należy uwzględnić:" diff --git a/applications/luci-app-sqm/po/pt/sqm.po b/applications/luci-app-sqm/po/pt/sqm.po index ff27471040..63c9b1c2db 100644 --- a/applications/luci-app-sqm/po/pt/sqm.po +++ b/applications/luci-app-sqm/po/pt/sqm.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-08-04 20:24+0000\n" +"PO-Revision-Date: 2022-12-29 23:53+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/pt/>\n" @@ -8,7 +8,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "Configurações Avançadas" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "Opções avançadas do Linklayer" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -26,6 +34,19 @@ msgstr "" "Cadeia de opções avançada para passar para as disciplinas de enfileiramento " "de entrada; sem verificação de erros, use com muito cuidado." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" +"As opções avançadas serão usadas apenas enquanto esta caixa estiver marcada (" +"é necessário apenas caso o MTU > 1500)." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" +"As opções avançadas só serão usadas enquanto esta caixa estiver marcada." + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Configurações Básicas" @@ -38,35 +59,53 @@ msgstr "" "Criar ficheiro de log para esta instância de SQM em /var/run/sqm/" "${Nome_da_Interface}.[start|stop]-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "Configurações perigosas" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "Opções perigosas só serão usadas enquanto esta caixa estiver marcada." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "Velocidade de download (entrada)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" msgstr "" -"Velocidade de descarrega (kbit/s) (ingresso) configurada a 0 para desativar " -"seletivamente a forma de ingresso:" +"Velocidade de Download (kbits/s) (entrada), defina como 0 para desativar " +"seletivamente o tráfico de entrada" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "ECN (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" +msgstr "ECN (entrada)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Ativar o SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "Ativar o registo de depuração" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Ativar esta instância do SQM." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "" -"Estado de notificação de congestionamento explícito (ECN) nos pacotes de " -"entrada (ingresso):" +msgid "Explicit congestion notification (ECN) status on inbound packets" +msgstr "Notificação explícita do congestionamento (ECN) nos pacotes da entrada" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "" -"Estado de notificação de congestionamento explícito (ECN) nos pacotes de " -"saída (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" +msgstr "Notificação explícita do congestionamento (ECN) nos pacotes da saída" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -84,15 +123,35 @@ msgstr "" "Limite rígido nas filas de espera de entrada; deixe em branco para utilizar " "valores predefinidos." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "Limite da fila rígida (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "Limite da fila rígida (entrada)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "Ignore o DSCP (entrada)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Ignore o DSCP na entrada:" +msgid "Ignore DSCP markings on inbound packets" +msgstr "Ignore as marcações DSCP nos pacotes da entrada" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Nome da interface" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "Meta de latência (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "Meta de latência (entrada)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -114,32 +173,69 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Adaptação da Camada de Ligação" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "Camada do enlace" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "Mecanismo de adaptação da camada de enlace" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" +"Lista as disciplinas da filas que são utilizáveis neste sistema. Depois de " +"instalar um novo qdisc, é preciso reiniciar o roteador para ver as " +"atualizações!" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "Loquacidade do registo" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" msgstr "" -"Tamanho máximo para cálculos de tamanho e taxa, tcMTU (byte); deve ser >= " -"MTU da interface + sobrecarga:" +"Tamanho máximo para realizar os cálculos de tamanho e taxa, tcMTU (byte); " +"precisa ser >= interface MTU + sobrecarga" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" +msgstr "Tamanho máximo do pacote" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" msgstr "" -"Tamanho mínimo do pacote, MPU (byte); deve ser > 0 para tabelas de tamanho " -"Ethernet:" +"Tamanho mínimo do pacote, MPU (byte); precisa ser > 0 para as tabelas de " +"tamanho ethernet" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" +msgstr "Tamanho mínimo do pacote" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Quantidade de entradas nas tabelas de tamanho/taxa, TSIZE; para ATM escolha " -"TSIZE = (tcMTU + 1) / 16:" +"Quantidade das entradas com tamanho/taxa nas tabelas, TSIZE; para o ATM, " +"escolha TSIZE = (tcMTU + 1) / 16" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Sobrecarga por Pacote (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "Por sobrecarga do pacote (byte)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "Opções Qdisc (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "Opções Qdisc (entrada)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -149,54 +245,33 @@ msgstr "Disciplina de Fila de Espera" msgid "Queue setup script" msgstr "Script de configuração da fila de espera" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "Disciplina da fila" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Filas de Espera" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" -msgstr "" -"Disciplinas de enfileiramento utilizáveis neste sistema. Depois de instalar " -"um novo qdisc, precisa reiniciar o roteador para ver as atualizações!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" +msgstr "Tamanho da tabela das taxas" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Mostrar Opções Avançadas da Camada de Ligações, (apenas necessário se MTU > " -"1500). As opções avançadas só serão usadas enquanto esta caixa estiver " -"marcada." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Mostrar e Usar Configuração Avançada. As opções avançadas só serão usadas " -"enquanto esta caixa estiver marcada." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Mostrar e Utilizar Configuração Perigosa. As opções perigosas só serão " -"usadas enquanto esta caixa estiver marcada." - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Gestão Inteligente de Filas de Espera" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Esmagar DSCP em pacotes de entrada (ingresso):" +msgid "Squash DSCP (ingress)" +msgstr "Squash DSCP (entrada)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "Marcações squash DSCP nos pacotes da entrada" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -217,20 +292,23 @@ msgstr "" "serviço." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "Velocidade de upload (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" -"Velocidade de envio (kbit/s) (saída) definida como 0 para desativar " -"seletivamente a forma de saída:" +"Velocidade de upload (kbit/s) (saída), defina como 0 para desativar " +"seletivamente o tráfico de saída" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "Verbosidade da saída do SQM no log do sistema." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Que camada de ligação para a conta:" +msgid "Which link layer technology to account for" +msgstr "Qual tecnologia de camada do enlace deve ser considerada" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -243,9 +321,9 @@ msgid "" "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -"Pode ativar a formação de tráfego com <abbr title=\"Smart Queue Management" -"\">SQM</abbr>, para melhor mistura (Fair Queueing), gestão ativa do " -"comprimento da fila de espera (AQM) e priorização numa interface de rede." +"Pode ativar a formação de tráfego com <abbr title=\"Smart Queue " +"Management\">SQM</abbr>, para melhor mistura (Fair Queueing), gestão ativa " +"do comprimento da fila de espera (AQM) e priorização numa interface de rede." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107 #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149 @@ -254,3 +332,93 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "padrão" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Velocidade de descarrega (kbit/s) (ingresso) configurada a 0 para " +#~ "desativar seletivamente a forma de ingresso:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "Estado de notificação de congestionamento explícito (ECN) nos pacotes de " +#~ "entrada (ingresso):" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "" +#~ "Estado de notificação de congestionamento explícito (ECN) nos pacotes de " +#~ "saída (egress)." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Ignore o DSCP na entrada:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Tamanho máximo para cálculos de tamanho e taxa, tcMTU (byte); deve ser >= " +#~ "MTU da interface + sobrecarga:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Tamanho mínimo do pacote, MPU (byte); deve ser > 0 para tabelas de " +#~ "tamanho Ethernet:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Quantidade de entradas nas tabelas de tamanho/taxa, TSIZE; para ATM " +#~ "escolha TSIZE = (tcMTU + 1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Sobrecarga por Pacote (byte):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Disciplinas de enfileiramento utilizáveis neste sistema. Depois de " +#~ "instalar um novo qdisc, precisa reiniciar o roteador para ver as " +#~ "atualizações!" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Mostrar Opções Avançadas da Camada de Ligações, (apenas necessário se MTU " +#~ "> 1500). As opções avançadas só serão usadas enquanto esta caixa estiver " +#~ "marcada." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Mostrar e Usar Configuração Avançada. As opções avançadas só serão usadas " +#~ "enquanto esta caixa estiver marcada." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Mostrar e Utilizar Configuração Perigosa. As opções perigosas só serão " +#~ "usadas enquanto esta caixa estiver marcada." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Esmagar DSCP em pacotes de entrada (ingresso):" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Velocidade de envio (kbit/s) (saída) definida como 0 para desativar " +#~ "seletivamente a forma de saída:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Que camada de ligação para a conta:" diff --git a/applications/luci-app-sqm/po/pt_BR/sqm.po b/applications/luci-app-sqm/po/pt_BR/sqm.po index ddcc9111bc..83c61d4f0e 100644 --- a/applications/luci-app-sqm/po/pt_BR/sqm.po +++ b/applications/luci-app-sqm/po/pt_BR/sqm.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-06-22 17:33+0000\n" +"PO-Revision-Date: 2022-12-28 07:01+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationssqm/pt_BR/>\n" @@ -8,7 +8,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.7.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "Configurações avançadas" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "Opções avançadas do Linklayer" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -26,6 +34,19 @@ msgstr "" "Cadeia de opções avançadas passada para as disciplinas de enfileiramento de " "entrada; sem verificação de erro, use com muito cuidado." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" +"As opções avançadas serão usadas apenas enquanto esta caixa estiver marcada (" +"é necessário apenas caso o MTU > 1500)." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" +"As opções avançadas só serão usadas enquanto esta caixa estiver marcada." + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Configurações Básicas" @@ -38,35 +59,53 @@ msgstr "" "Criar um arquivo de registro log para esta instância SQM em /var/run/sqm/" "${Interface_name}.[start|stop]-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "Configurações perigosas" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "Opções perigosas só serão usadas enquanto esta caixa estiver marcada." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "Velocidade de download (entrada)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" msgstr "" "Velocidade de Download (kbits/s) (entrada), defina como 0 para desativar " -"seletivamente a modelagem do tráfico de entrada:" +"seletivamente o tráfico de entrada" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "ECN (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" +msgstr "ECN (entrada)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Ative o SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "Ativar o registro de depuração" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Ative esta instância do SQM." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "" -"Status de notificação explicita de congestionamento (ECN) durante a entrada " -"de pacotes (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" +msgstr "Notificação explícita do congestionamento (ECN) nos pacotes da entrada" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "" -"Status de notificação explicita de congestionamento (ECN) durante a saída de " -"pacotes (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" +msgstr "Notificação explícita do congestionamento (ECN) nos pacotes da saída" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -84,15 +123,35 @@ msgstr "" "Limite máximo nas filas de entrada; deixe em branco para utilizar valores " "predefinidos." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "Limite da fila rígida (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "Limite da fila rígida (entrada)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "Ignore o DSCP (entrada)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Ignore o DSCP na entrada:" +msgid "Ignore DSCP markings on inbound packets" +msgstr "Ignore as marcações DSCP nos pacotes da entrada" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Nome da Interface" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "Meta de latência (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "Meta de latência (entrada)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -114,32 +173,69 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Adaptação da Camada do Link de Ligação" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "Camada do enlace" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "Mecanismo de adaptação da camada de enlace" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" +"Lista as disciplinas da filas que são utilizáveis neste sistema. Depois de " +"instalar um novo qdisc, é preciso reiniciar o roteador para ver as " +"atualizações!" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "Loquacidade do registro" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" msgstr "" "Tamanho máximo para realizar os cálculos de tamanho e taxa, tcMTU (byte); " -"precisa ser >= interface MTU + sobrecarga:" +"precisa ser >= interface MTU + sobrecarga" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" +msgstr "Tamanho máximo do pacote" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" msgstr "" "Tamanho mínimo do pacote, MPU (byte); precisa ser > 0 para as tabelas de " -"tamanho ethernet:" +"tamanho ethernet" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" +msgstr "Tamanho mínimo do pacote" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Quantidade de entradas de tamanho/taxa nas tabelas, TSIZE; para o ATM, " -"escolha TSIZE = (tcMTU + 1) / 16:" +"Quantidade das entradas com tamanho/taxa nas tabelas, TSIZE; para o ATM, " +"escolha TSIZE = (tcMTU + 1) / 16" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Por Sobrecarga de Pacote (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "Por sobrecarga do pacote (byte)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "Opções Qdisc (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "Opções Qdisc (entrada)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -149,54 +245,33 @@ msgstr "Disciplina da Fila" msgid "Queue setup script" msgstr "Script de configuração da fila" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "Disciplina da fila" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Filas de espera" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" -msgstr "" -"As disciplinas de enfileiramento utilizáveis neste sistema. Depois de " -"instalar um novo qdisc, você precisa reiniciar o roteador para ver as " -"atualizações!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" +msgstr "Tamanho da tabela das taxas" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Mostrar as Opções Avançadas da Camada do Link ( só é necessário caso MTU > " -"1500). As opções avançadas só serão usadas quando esta caixa for selecionada." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Exibir e Usar a Configuração Avançada. As opções avançadas só serão usadas " -"quando esta caixa for selecionada." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Mostrar e Usar as Configurações Perigosas. As opções perigosas só serão " -"usadas quando esta caixa for selecionada." - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Gestão Inteligente das Filas de Espera" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Liquidar o DSCP durante a entrada dos pacotes (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "Squash DSCP (entrada)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "Marcações squash DSCP nos pacotes da entrada" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -217,20 +292,23 @@ msgstr "" "serviço." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "Velocidade de upload (saída)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" "Velocidade de upload (kbit/s) (saída), defina como 0 para desativar " -"seletivamente a modelagem do tráfico de saída:" +"seletivamente o tráfico de saída" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "Prolixidade da saída do SQM's nos arquivos de registro log." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Qual camada de link deve ser considerada:" +msgid "Which link layer technology to account for" +msgstr "Qual tecnologia de camada do enlace deve ser considerada" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -256,3 +334,93 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "Padrão" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Velocidade de Download (kbits/s) (entrada), defina como 0 para desativar " +#~ "seletivamente a modelagem do tráfico de entrada:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "Status de notificação explicita de congestionamento (ECN) durante a " +#~ "entrada de pacotes (ingress):" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "" +#~ "Status de notificação explicita de congestionamento (ECN) durante a saída " +#~ "de pacotes (egress)." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Ignore o DSCP na entrada:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Tamanho máximo para realizar os cálculos de tamanho e taxa, tcMTU (byte); " +#~ "precisa ser >= interface MTU + sobrecarga:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Tamanho mínimo do pacote, MPU (byte); precisa ser > 0 para as tabelas de " +#~ "tamanho ethernet:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Quantidade de entradas de tamanho/taxa nas tabelas, TSIZE; para o ATM, " +#~ "escolha TSIZE = (tcMTU + 1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Por Sobrecarga de Pacote (byte):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "As disciplinas de enfileiramento utilizáveis neste sistema. Depois de " +#~ "instalar um novo qdisc, você precisa reiniciar o roteador para ver as " +#~ "atualizações!" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Mostrar as Opções Avançadas da Camada do Link ( só é necessário caso MTU " +#~ "> 1500). As opções avançadas só serão usadas quando esta caixa for " +#~ "selecionada." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Exibir e Usar a Configuração Avançada. As opções avançadas só serão " +#~ "usadas quando esta caixa for selecionada." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Mostrar e Usar as Configurações Perigosas. As opções perigosas só serão " +#~ "usadas quando esta caixa for selecionada." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Liquidar o DSCP durante a entrada dos pacotes (ingress):" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Velocidade de upload (kbit/s) (saída), defina como 0 para desativar " +#~ "seletivamente a modelagem do tráfico de saída:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Qual camada de link deve ser considerada:" diff --git a/applications/luci-app-sqm/po/ro/sqm.po b/applications/luci-app-sqm/po/ro/sqm.po index 6b5dd65791..87a69599dd 100644 --- a/applications/luci-app-sqm/po/ro/sqm.po +++ b/applications/luci-app-sqm/po/ro/sqm.po @@ -11,6 +11,14 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.10-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -27,6 +35,16 @@ msgstr "" "Șir de opțiuni avansate care trebuie transmise disciplinelor de intrare în " "coada de așteptare; fără verificare a erorilor, utilizați cu mare atenție." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Setări de bază" @@ -39,35 +57,51 @@ msgstr "" "Creați un fișier jurnal pentru această instanță SQM în /var/run/sqm/" "${Interface_name}.[start|stop]-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" -"Viteza de descărcare (kbit/s) (intrare) se setează la 0 pentru a dezactiva " -"selectiv modelarea intrării:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Activați SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Activează această instanță SQM." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" -"Starea ECN (Explicit congestion notification (notificare explicită de " -"congestie) pe pachetele de intrare (intrare):" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" -"Starea ECN (Explicit congestion notification (notificare explicită de " -"congestie) pe pachetele de ieșire (egress)." #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -82,15 +116,35 @@ msgid "Hard limit on ingress queues; leave empty for default." msgstr "" "Limita dură a cozilor de intrare; lăsați gol pentru valoarea implicită." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Ignoră DSCP la intrare:" +msgid "Ignore DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Numele interfeței" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -112,32 +166,60 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Adaptarea nivelului de legătură" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" -"Dimensiunea maximă pentru calcularea mărimii și a ratei, tcMTU (byte); " -"trebuie să fie >= MTU al interfeței + overhead:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" -"Dimensiunea minimă a pachetului, MPU (byte); trebuie să fie > 0 pentru " -"tabelele de dimensiuni ethernet:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Numărul de intrări în tabelele de mărime/taxe, TSIZE; pentru ATM, alegeți " -"TSIZE = (tcMTU + 1) / 16:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Per Pachet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -147,55 +229,33 @@ msgstr "Disciplina cozii" msgid "Queue setup script" msgstr "Script de configurare a cozilor de așteptare" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Cozi de așteptare" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" -"Discipline de coadă de așteptare utilizabile pe acest sistem. După " -"instalarea unui nou qdisc, trebuie să reporniți routerul pentru a vedea " -"actualizările!" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Afișează opțiunile avansate pentru Linklayer (necesar numai dacă MTU > 1500)" -". Opțiunile avansate vor fi utilizate numai atâta timp cât această casetă " -"este bifată." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Afișați și utilizați Configurație avansată. Opțiunile avansate vor fi " -"utilizate numai atât timp cât această casetă este bifată." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Afișare și utilizare Configurație periculoasă. Opțiunile periculoase vor fi " -"utilizate numai atât timp cât această casetă este bifată." - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Gestionarea inteligentă a cozilor de așteptare" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Zdrobiți DSCP pe pachetele de intrare (intrare):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -216,20 +276,21 @@ msgstr "" "jos pentru a activa acest serviciu." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" -"Viteza de încărcare (kbit/s) (ieșire) se setează la 0 pentru a dezactiva " -"selectiv modelarea la ieșire:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "Verbalitatea ieșirii SQM în jurnalul sistemului." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Ce strat de legătură trebuie luat în considerare:" +msgid "Which link layer technology to account for" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -255,3 +316,93 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "implicit" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Viteza de descărcare (kbit/s) (intrare) se setează la 0 pentru a " +#~ "dezactiva selectiv modelarea intrării:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "Starea ECN (Explicit congestion notification (notificare explicită de " +#~ "congestie) pe pachetele de intrare (intrare):" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "" +#~ "Starea ECN (Explicit congestion notification (notificare explicită de " +#~ "congestie) pe pachetele de ieșire (egress)." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Ignoră DSCP la intrare:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Dimensiunea maximă pentru calcularea mărimii și a ratei, tcMTU (byte); " +#~ "trebuie să fie >= MTU al interfeței + overhead:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Dimensiunea minimă a pachetului, MPU (byte); trebuie să fie > 0 pentru " +#~ "tabelele de dimensiuni ethernet:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Numărul de intrări în tabelele de mărime/taxe, TSIZE; pentru ATM, alegeți " +#~ "TSIZE = (tcMTU + 1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Per Pachet Overhead (byte):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Discipline de coadă de așteptare utilizabile pe acest sistem. După " +#~ "instalarea unui nou qdisc, trebuie să reporniți routerul pentru a vedea " +#~ "actualizările!" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Afișează opțiunile avansate pentru Linklayer (necesar numai dacă MTU > " +#~ "1500). Opțiunile avansate vor fi utilizate numai atâta timp cât această " +#~ "casetă este bifată." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Afișați și utilizați Configurație avansată. Opțiunile avansate vor fi " +#~ "utilizate numai atât timp cât această casetă este bifată." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Afișare și utilizare Configurație periculoasă. Opțiunile periculoase vor " +#~ "fi utilizate numai atât timp cât această casetă este bifată." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Zdrobiți DSCP pe pachetele de intrare (intrare):" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Viteza de încărcare (kbit/s) (ieșire) se setează la 0 pentru a dezactiva " +#~ "selectiv modelarea la ieșire:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Ce strat de legătură trebuie luat în considerare:" diff --git a/applications/luci-app-sqm/po/ru/sqm.po b/applications/luci-app-sqm/po/ru/sqm.po index 3aa81dd5af..d385e09bfe 100644 --- a/applications/luci-app-sqm/po/ru/sqm.po +++ b/applications/luci-app-sqm/po/ru/sqm.po @@ -1,15 +1,23 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-10-30 16:38+0000\n" -"Last-Translator: masta0f1eave <lomskoff.dima@gmail.com>\n" +"PO-Revision-Date: 2022-12-28 07:01+0000\n" +"Last-Translator: sergio <sergio+it@outerface.net>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/ru/>\n" "Language: ru\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.9-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "Расширенные настройки" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -27,6 +35,16 @@ msgstr "" "Строка расширенных параметров для перехода к входящим дисциплинам очередей; " "нет проверки ошибок, используйте очень осторожно." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Основные настройки" @@ -39,29 +57,50 @@ msgstr "" "Создать файл журнала для этого экземпляра SQM в папке /var/run/sqm/" "${Interface_name}.[start|stop]-sqm.log." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Включить SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Включите этот экземпляр SQM." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" -"Прямое уведомление о перегрузке сети (ECN) для входящих пакетов (ingress):" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -80,8 +119,20 @@ msgstr "" "Жесткое ограничение на входящие очереди; оставьте пустым для значения по " "умолчанию." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -89,6 +140,14 @@ msgid "Interface name" msgstr "Имя интерфейса" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -104,27 +163,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Адаптация канального уровня" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" -"Минимальный размер пакета, MPU (байт); должен быть > 0 для таблиц размеров " -"Ethernet:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -135,44 +226,32 @@ msgstr "" msgid "Queue setup script" msgstr "Скрипт настройки очереди" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Очереди" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Умное управление очередью" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -189,9 +268,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -199,7 +281,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "Детальность вывода SQM в системный журнал." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 @@ -220,3 +302,15 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "по умолчанию" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "" +#~ "Прямое уведомление о перегрузке сети (ECN) для входящих пакетов (ingress):" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Минимальный размер пакета, MPU (байт); должен быть > 0 для таблиц " +#~ "размеров Ethernet:" diff --git a/applications/luci-app-sqm/po/sk/sqm.po b/applications/luci-app-sqm/po/sk/sqm.po index 972333d165..1eb1c45043 100644 --- a/applications/luci-app-sqm/po/sk/sqm.po +++ b/applications/luci-app-sqm/po/sk/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.10-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Základné nastavenia" @@ -32,28 +50,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -68,8 +108,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -77,6 +129,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -92,25 +152,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -121,44 +215,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -175,9 +257,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -185,7 +270,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/sv/sqm.po b/applications/luci-app-sqm/po/sv/sqm.po index fad4f0c128..83820c7787 100644 --- a/applications/luci-app-sqm/po/sv/sqm.po +++ b/applications/luci-app-sqm/po/sv/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.11-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -23,8 +31,18 @@ msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -"Avancerad alternativsträng för att överföra till inträde till " -"utgångskö-disciplinerna; inga felkontroller, använd mycket försiktigt." +"Avancerad alternativsträng för att överföra till inträde till utgångskö-" +"disciplinerna; inga felkontroller, använd mycket försiktigt." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" @@ -35,33 +53,53 @@ msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -"Skapa loggfil för denna SQM-instans under /var/run/sqm/" -"${Interface_name}.[start|stop]-sqm.log." +"Skapa loggfil för denna SQM-instans under /var/run/sqm/${Interface_name}." +"[start|stop]-sqm.log." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" -"Nerladdnings hastighet (kbit/s) (inträde) ställs in på 0 för att selektivt " -"inaktivera ingångs formning:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "Aktivera SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Aktivera denna SQM-instans." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -76,8 +114,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -85,6 +135,14 @@ msgid "Interface name" msgstr "Gränssnittets namn" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -100,25 +158,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -129,44 +221,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -183,9 +263,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -193,7 +276,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 @@ -214,3 +297,10 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "Nerladdnings hastighet (kbit/s) (inträde) ställs in på 0 för att " +#~ "selektivt inaktivera ingångs formning:" diff --git a/applications/luci-app-sqm/po/templates/sqm.pot b/applications/luci-app-sqm/po/templates/sqm.pot index 9503c85868..962e2a5175 100644 --- a/applications/luci-app-sqm/po/templates/sqm.pot +++ b/applications/luci-app-sqm/po/templates/sqm.pot @@ -1,6 +1,14 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -13,6 +21,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -23,28 +41,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -59,8 +99,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -68,6 +120,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -83,25 +143,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -112,44 +206,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -166,9 +248,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -176,7 +261,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/tr/sqm.po b/applications/luci-app-sqm/po/tr/sqm.po index c90ec8848c..4f01077587 100644 --- a/applications/luci-app-sqm/po/tr/sqm.po +++ b/applications/luci-app-sqm/po/tr/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -26,6 +34,16 @@ msgstr "" "Giriş kuyruğu denetimleri için gelişmiş seçenek satırı; hata kontrolü " "yoktur, dikkatli kullanın." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "Temel Ayarlar" @@ -38,31 +56,51 @@ msgstr "" "Bu SQM örneği için /var/run/sqm/${Interface_name}.[start|stop]-sqm.log " "konumda günlük dosyası oluşturun." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" -"İndirme hızı (kbit/s) (giriş) Şekillendirmeyi devre dışı bırakmak için 0 " -"olarak ayarlayın:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "SQM'i etkinleştir" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "Bu SQM örneğini etkinleştirin." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "Gelen paketlerde (giriş) açık tıkanıklık bildirimi (ECN) durumu:" +msgid "Explicit congestion notification (ECN) status on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "Giden paketlerde (çıkış) açık tıkanıklık bildirimi (ECN) durumu." +msgid "Explicit congestion notification (ECN) status on outbound packets" +msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -76,15 +114,35 @@ msgstr "Çıkış kuyrukları için kesin sınır; varsayılan ayar için boş b msgid "Hard limit on ingress queues; leave empty for default." msgstr "Giriş kuyrukları için kesin sınır; varsayılan ayar için boş bırakın." +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "Giriş kuyruğunda DSCP'yi yoksay:" +msgid "Ignore DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Arayüz ismi" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -104,32 +162,60 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "Bağlantı Katmanı Uyarlaması" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" -"Boyut ve hız hesaplamaları için Maksimum Boyut, tcMTU (bayt); arayüzün MTU " -"değeri ve overhead toplamından büyük olması gerekir:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" -"Minimum paket boyutu, MPU (bayt); ethernet boyut tablosu için sıfırdan (0) " -"büyük olmalıdır:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" -"Boyut/hız tabloları için girdi sayıları, TSIZE; ATM için TSIZE = (tcMTU + " -"1) / 16:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "Paket Başına Ek Yük (bayt):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -139,53 +225,33 @@ msgstr "Kuyruk Denetimi" msgid "Queue setup script" msgstr "Kuyruk kurulum betiği" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "Kuyruklar" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" -"Bu sistemde kuyruk denetimleri kullanılabilir. Yeni bir qdisc yükledikten " -"sonra, devreye girmesi için yönlendiriciyi yeniden başlatmanız gerekir." #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"Gelişmiş bağlantı katmanı ayarlarını göster, (sadece MTU 1500'den büyükse " -"gereklidir). Gelişmiş seçenekler yalnızca bu kutu işaretliyken kullanılır." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" -"Gelişmiş Ayarları Göster ve kullan. Gelişmiş seçenekler yalnızca bu kutu " -"işaretliyken kullanılır." - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" -"Tehlikeli Ayarları Göster ve Kullan. Tehlikeli olabilecek seçenekler " -"yalnızca bu kutu işaretliyken kullanılacaktır." - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "Akıllı Kuyruk Yönetimi (SQM)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "Gelen paketlerde (giriş) DSCP'yi sıkıştır:" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -206,20 +272,21 @@ msgstr "" "butonu kullanın." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" -"Yükleme hızı (kbit/s) (çıkış) Şekillendirmeyi devre dışı bırakmak için 0 " -"olarak ayarlayın:" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "SQM çıktısının sistem günlüğü ayrıntısı." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "Bağlantı katmanı seçimi:" +msgid "Which link layer technology to account for" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -242,3 +309,87 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "varsayılan" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "" +#~ "İndirme hızı (kbit/s) (giriş) Şekillendirmeyi devre dışı bırakmak için 0 " +#~ "olarak ayarlayın:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "Gelen paketlerde (giriş) açık tıkanıklık bildirimi (ECN) durumu:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "Giden paketlerde (çıkış) açık tıkanıklık bildirimi (ECN) durumu." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "Giriş kuyruğunda DSCP'yi yoksay:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "" +#~ "Boyut ve hız hesaplamaları için Maksimum Boyut, tcMTU (bayt); arayüzün " +#~ "MTU değeri ve overhead toplamından büyük olması gerekir:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "" +#~ "Minimum paket boyutu, MPU (bayt); ethernet boyut tablosu için sıfırdan " +#~ "(0) büyük olmalıdır:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "Boyut/hız tabloları için girdi sayıları, TSIZE; ATM için TSIZE = (tcMTU + " +#~ "1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "Paket Başına Ek Yük (bayt):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "" +#~ "Bu sistemde kuyruk denetimleri kullanılabilir. Yeni bir qdisc yükledikten " +#~ "sonra, devreye girmesi için yönlendiriciyi yeniden başlatmanız gerekir." + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "Gelişmiş bağlantı katmanı ayarlarını göster, (sadece MTU 1500'den büyükse " +#~ "gereklidir). Gelişmiş seçenekler yalnızca bu kutu işaretliyken kullanılır." + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Gelişmiş Ayarları Göster ve kullan. Gelişmiş seçenekler yalnızca bu kutu " +#~ "işaretliyken kullanılır." + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "" +#~ "Tehlikeli Ayarları Göster ve Kullan. Tehlikeli olabilecek seçenekler " +#~ "yalnızca bu kutu işaretliyken kullanılacaktır." + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "Gelen paketlerde (giriş) DSCP'yi sıkıştır:" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "" +#~ "Yükleme hızı (kbit/s) (çıkış) Şekillendirmeyi devre dışı bırakmak için 0 " +#~ "olarak ayarlayın:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "Bağlantı katmanı seçimi:" diff --git a/applications/luci-app-sqm/po/uk/sqm.po b/applications/luci-app-sqm/po/uk/sqm.po index 086b3c30ca..f4dc277b80 100644 --- a/applications/luci-app-sqm/po/uk/sqm.po +++ b/applications/luci-app-sqm/po/uk/sqm.po @@ -1,21 +1,31 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-07 18:07+0000\n" -"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n" +"PO-Revision-Date: 2023-01-04 17:06+0000\n" +"Last-Translator: Sergey Melnichuk <deps2ak@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationssqm/uk/>\n" "Language: uk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" +"Рядок розширеного параметра для передачі до застосування без перевірки " +"помилок, використовуйте дуже обережно." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 msgid "" @@ -23,144 +33,246 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" +"Розширені параметри будуть використані тільки тоді, коли цей пункт вімкнено." + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" -msgstr "" +msgstr "Базові налаштування" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" +"Створіти журнальний файл для цього екземпляру SQM в каталозі /var/run/sqm/" +"${Interface_name}.[start|stop]-sqm.log." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "Небезпечна конфігурація" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" +"Небезпечні параметри будуть використовуватися тільки тоді, коли цей пункт " +"відмічено." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "Швидкість завантаження (вхідна)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" msgstr "" +"Швидкість завантаження (кбіт/с) (вхідна) встановлена в 0, щоб селективно " +"вимкнути вхідне вирівнювання" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "ECN (вихідна)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" +msgstr "ECN (вхідна)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" -msgstr "" +msgstr "Увімкнути SQM" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "Увімкнути системний журнал" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." -msgstr "" +msgstr "Увімкнути цей екземпляр SQM." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "" +msgid "Explicit congestion notification (ECN) status on inbound packets" +msgstr "Статус явного сповіщення про завантаженість (ECN) на вхідних пакетах" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "" +msgid "Explicit congestion notification (ECN) status on outbound packets" +msgstr "Статус явного сповіщення про завантаженість (ECN) на вихідних пакетах" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" -msgstr "" +msgstr "Надати доступ UCI для luci-app-sqm" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 msgid "Hard limit on egress queues; leave empty for default." msgstr "" +"Жорстке обмеження на вихідні черги; залиште порожнім для значення за " +"замовчуванням." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +"Жорстке обмеження на вхідні черги; залиште порожнім для значення за " +"замовчуванням." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "Жорстке обмеження черги (вихід)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "Жорстке обмеження черги (вхід)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "" +msgid "Ignore DSCP (ingress)" +msgstr "Ігнорувати DSCP (вхід)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP markings on inbound packets" +msgstr "Ігнорувати маркування DSCP на вхідних пакетах" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "Назва інтерфейсу" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "Ціль затримки (вихiд)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "Ціль затримки (вхiд)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." msgstr "" +"Ціль затримки для вихідного трафіку, наприклад, 5 мс [одиниці: с, мс, або " +"ус]; залиште порожнім, щоб автоматично вибрати значення, або введіть слово " +"\"default\" для значення за замовчуванням qdisc." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 msgid "" "Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." msgstr "" +"Ціль затримки для вхідного трафіку, наприклад, 5 мс [одиниці: с, мс, або ус];" +" залиште порожнім, щоб автоматично вибрати значення, або введіть слово " +"\"default\" для значення за замовчуванням qdisc." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "Link Layer Adaptation" msgstr "" +"Адаптація протоколу передачі даних у рівні протоколу з'єднання (Link Layer " +"Adaptation)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "Протокол з'єднання (Link Layer)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "Механізм адаптації протоколу з'єднання" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" +"Список чергувань, які можуть бути використані на цій системі. Після " +"установки нового qdisc вам необхідно перезапустити роутер, щоб побачити " +"оновлення!" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "Рівень деталізації журналу" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" msgstr "" +"Максимальний розмір для розрахунків розміру і швидкості, tcMTU (в байтах); " +"має бути >= MTU інтерфейсу + навантаження" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" +msgstr "Максимальний розмір пакету" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" msgstr "" +"Мінімальний розмір пакету, MPU (у байтах); має бути > 0 для таблиць розмірів " +"Ethernet" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" +msgstr "Мінімальний розмір пакету" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" +"Кількість записів у таблицях розміру/швидкості, TSIZE; для ATM виберіть " +"TSIZE = (tcMTU + 1) / 16" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "" +msgid "Per Packet Overhead (bytes)" +msgstr "Навантаження на кожен пакет (у байтах)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "Опції qdisc (для вихідного трафіку)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "Опції qdisc (для вхідного трафіку)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" -msgstr "" +msgstr "Чергування" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120 msgid "Queue setup script" +msgstr "Скрипт налаштування черги" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" -msgstr "" +msgstr "Черги" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" -msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" +msgstr "Розмір таблиці швидкості" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" +msgstr "SQM QoS" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" -msgstr "" +msgstr "Інтелектуальне керування чергою (Smart Queue Management)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "" +msgid "Squash DSCP (ingress)" +msgstr "Схоплення DSCP (для вхідного трафіку)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "Схоплення позначок DSCP на вхідних пакетах" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -168,30 +280,42 @@ msgid "" "disable the sqm initscript manually under System Startup menu in case this " "change was not wished for." msgstr "" +"Графічний інтерфейс SQM тільки що включив скрипт sqm initscript за ваш " +"запит. Пам'ятайте, що в разі, якщо ця зміна була небажаною, вам потрібно " +"вручну вимкнути скрипт sqm initscript в меню «Початок системи»." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48 msgid "" "The SQM service seems to be disabled. Please use the button below to " "activate this service." msgstr "" +"Сервіс SQM, схоже, вимкнено. Будь ласка, використовуйте кнопку нижче, щоб " +"активувати його." + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "Швидкість вивантаження (для вихідного трафіку)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" +"Швидкість вивантаження (у кбіт/с) (для вихідного трафіку) встановіть " +"значення в 0, щоб селективно вимкнути формування вихідного трафіку" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." -msgstr "" +msgstr "Рівень деталізації виведення SQM у системний журнал." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "" +msgid "Which link layer technology to account for" +msgstr "Яку технологію протоколу з'єднання враховувати" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" +"Який механізм адаптації протоколу з'єднання використовувати; тільки для " +"тестування" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 msgid "" @@ -199,6 +323,9 @@ msgid "" "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" +"З допомогою <abbr title=\"Smart Queue Management\">SQM</abbr> ви можете " +"включити формування трафіку, краще змішування (чесне чергування), керування " +"довжиною активної черги (AQM) та пріоритезацію на одному інтерфейсі мережі." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107 #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149 @@ -206,4 +333,4 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188 #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" -msgstr "" +msgstr "за замовчуванням" diff --git a/applications/luci-app-sqm/po/vi/sqm.po b/applications/luci-app-sqm/po/vi/sqm.po index da12d68ad8..99972af504 100644 --- a/applications/luci-app-sqm/po/vi/sqm.po +++ b/applications/luci-app-sqm/po/vi/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "" @@ -32,28 +50,50 @@ msgid "" "[start|stop]-sqm.log." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgid "Explicit congestion notification (ECN) status on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgid "Explicit congestion notification (ECN) status on outbound packets" msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 @@ -68,8 +108,20 @@ msgstr "" msgid "Hard limit on ingress queues; leave empty for default." msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" +msgid "Ignore DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 @@ -77,6 +129,14 @@ msgid "Interface name" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -92,25 +152,59 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" +"+ 1) / 16" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 @@ -121,44 +215,32 @@ msgstr "" msgid "Queue setup script" msgstr "" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 @@ -175,9 +257,12 @@ msgid "" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 @@ -185,7 +270,7 @@ msgid "Verbosity of SQM's output into the system log." msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" +msgid "Which link layer technology to account for" msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 diff --git a/applications/luci-app-sqm/po/zh_Hans/sqm.po b/applications/luci-app-sqm/po/zh_Hans/sqm.po index f98693af0f..c387e91321 100644 --- a/applications/luci-app-sqm/po/zh_Hans/sqm.po +++ b/applications/luci-app-sqm/po/zh_Hans/sqm.po @@ -1,14 +1,22 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-07-09 20:57+0000\n" -"Last-Translator: MkQtS <onewordwrong@aliyun.com>\n" +"PO-Revision-Date: 2023-01-03 20:21+0000\n" +"Last-Translator: MkQtS <MkQtS@users.noreply.hosted.weblate.org>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationssqm/zh_Hans/>\n" "Language: zh_Hans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.13.1-dev\n" +"X-Generator: Weblate 4.15.1-dev\n" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "高级配置" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "高级链路层选项" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "传递到入站队列规则的高级选项字符串;不会进行错误检查,请谨慎使用。" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "选中此框时,才使用高级选项(仅当 MTU > 1500 时才需要)。" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "勾选后才使用高级选项。" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "基本设置" @@ -30,32 +48,54 @@ msgstr "基本设置" msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." -msgstr "在 /var/run/sqm/${Interface_name} 下为此 SQM " -"实例创建日志文件。[start|stop]-sqm.log." +msgstr "为此 SQM 实例创建日志文件 /var/run/sqm/${Interface_name}.[start|stop]-sqm." +"log。" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "风险配置" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "仅当勾选后才使用这些有风险的配置。" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "下载速度(入口)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" -msgstr "下载速度 (kbit/s)(入口)。设为 0 时,将有选择地禁用入口整形:" +"shaping" +msgstr "下载速度(kbit/s,入口),设为 0 时,将有选择地禁用入口整形" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "ECN(上行)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" +msgstr "ECN(下行)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "启用 SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "启用调试日志" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "启用此 SQM 实例." #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "入站数据包的显式拥塞通知(ECN)状态:" +msgid "Explicit congestion notification (ECN) status on inbound packets" +msgstr "入站数据包的显式拥塞通知(ECN)状态" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "出站数据包的显式拥塞通知(ECN)状态." +msgid "Explicit congestion notification (ECN) status on outbound packets" +msgstr "出站数据包的显式拥塞通知(ECN)状态" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -69,52 +109,106 @@ msgstr "出口队列的硬限制; 默认留空。" msgid "Hard limit on ingress queues; leave empty for default." msgstr "入口队列的硬限制; 默认留空。" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "硬队列限制(出口)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "硬队列限制(入口)" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "在入口忽略 DSCP:" +msgid "Ignore DSCP (ingress)" +msgstr "忽略 DSCP(入口)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP markings on inbound packets" +msgstr "忽略入站数据包的 DSCP 标记" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "接口名称" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "延迟目标(出口)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "延迟目标(入口)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." -msgstr "出口的延迟目标,例如 5ms [单位:s、ms或us]; " -"为自动选择留空,为qdisc的默认值输入单词default。" +msgstr "出口的延迟目标,例如 5ms [单位:s、ms 或 us];留空为自动选择,输入单词 " +"default 为 qdisc 的默认值。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 msgid "" "Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." -msgstr "入口的延迟目标,例如 5ms [单位:s、ms 或 us]; " -"为自动选择留空,为qdisc的默认值输入单词default。" +msgstr "入口的延迟目标,例如 5ms [单位:s、ms 或 us];留空为自动选择,输入单词 " +"default 为 qdisc 的默认值。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "Link Layer Adaptation" msgstr "链路层适应" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "链路层" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "链路层适应机制" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "列出本系统上可用的队列规则。安装新的 qdisc 后,您需要重启路由器才能看到更新!" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "日志等级" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" -msgstr "大小和速率计算的最大大小,tcMTU(字节); 需要 >= 接口 MTU + 开销:" +"interface MTU + overhead" +msgstr "大小和速率计算的最大大小,tcMTU(字节); 需要 >= 接口 MTU + 开销" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" +msgstr "最大数据包大小" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" -msgstr "最小数据包大小,MPU(byte); 在以太网中需要大于0:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "最小数据包大小,MPU (byte);在以太网中需要大于 0" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" +msgstr "最小数据包大小" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" -msgstr "大小/费率表中的条目数,TSIZE; 对于 ATM,选择 TSIZE = (tcMTU + 1) / 16:" +"+ 1) / 16" +msgstr "大小/费率表中的条目数,TSIZE;对于 ATM,选择 TSIZE = (tcMTU + 1) / 16" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "每个数据包开销(字节):" +msgid "Per Packet Overhead (bytes)" +msgstr "单个数据包开销(字节)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "Qdisc 选项(出口)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "Qdisc 选项(入口)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -124,74 +218,64 @@ msgstr "列队规则" msgid "Queue setup script" msgstr "队列设置脚本" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "列队规则" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "队列" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" -msgstr "队列规则(需要重启路由器!)" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" +msgstr "费率表大小" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM 队列管理" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "显示高级链路选项(仅在MTU> 1500时才需要)。选中此框后才会应用高级选项。" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "显示和使用高级配置。选中此框后才会应用高级选项。" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "显示和使用危险配置。选中此框后会应用危险选项。" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "智能队列管理" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "在入站数据包(入口)上压缩 DSCP:" +msgid "Squash DSCP (ingress)" +msgstr "压缩 DSCP(入口)" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "压缩入站数据包的 DSCP 标记" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" "The SQM GUI has just enabled the sqm initscript on your behalf. Remember to " "disable the sqm initscript manually under System Startup menu in case this " "change was not wished for." -msgstr "" -"你刚刚开启了SQM随机启动功能,如果你不希望SQM随机启动,可以在系统启动菜单下手" -"动禁用。" +msgstr "你刚刚通过图形界面开启了 SQM 随机启动功能,如果你不希望 SQM " +"随机启动,请在系统启动项菜单下手动禁用。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48 msgid "" "The SQM service seems to be disabled. Please use the button below to " "activate this service." -msgstr "SQM服务似乎已被禁用。请使用下面的按钮来激活这项服务。" +msgstr "SQM 服务似乎已被禁用。请使用下面的按钮激活此服务。" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "上传速度(出口)" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" -msgstr "上传速度 (kbit/s)(出口)。设为 0 时,将有选择地禁用出口整形:" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" +msgstr "上传速度(kbit/s,出口),设为 0 时,将有选择地禁用出口整形" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." -msgstr "SQM 日志等级" +msgstr "SQM 输出到系统日志的详细程度。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "要考虑哪个链路层:" +msgid "Which link layer technology to account for" +msgstr "要考虑哪个链路层" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -203,8 +287,8 @@ msgid "" "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -"使用 <abbr title=\"智能列队管理\">SQM</abbr> 你可以启用流量整形,更好的混合(" -"公平列队)主动列队管理(AQM)并设置网络接口优先级。" +"使用 <abbr title=\"智能列队管理\">SQM</abbr> ,你可以在指定网络接口上启用流量" +"整形、更好的混合(公平队列)、主动列队管理(AQM)以及优先级排序。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107 #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149 @@ -213,3 +297,71 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "默认" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "下载速度 (kbit/s)(入口)。设为 0 时,将有选择地禁用入口整形:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "入站数据包的显式拥塞通知(ECN)状态:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "出站数据包的显式拥塞通知(ECN)状态." + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "在入口忽略 DSCP:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "大小和速率计算的最大大小,tcMTU(字节); 需要 >= 接口 MTU + 开销:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "最小数据包大小,MPU(byte); 在以太网中需要大于0:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "大小/费率表中的条目数,TSIZE; 对于 ATM,选择 TSIZE = (tcMTU + 1) / 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "每个数据包开销(字节):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "队列规则(需要重启路由器!)" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "显示高级链路选项(仅在MTU> 1500时才需要)。选中此框后才会应用高级选项。" + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "显示和使用高级配置。选中此框后才会应用高级选项。" + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "显示和使用危险配置。选中此框后会应用危险选项。" + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "在入站数据包(入口)上压缩 DSCP:" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "上传速度 (kbit/s)(出口)。设为 0 时,将有选择地禁用出口整形:" + +#~ msgid "Which link layer to account for:" +#~ msgstr "要考虑哪个链路层:" diff --git a/applications/luci-app-sqm/po/zh_Hant/sqm.po b/applications/luci-app-sqm/po/zh_Hant/sqm.po index 33dc433519..7166ac4aa0 100644 --- a/applications/luci-app-sqm/po/zh_Hant/sqm.po +++ b/applications/luci-app-sqm/po/zh_Hant/sqm.po @@ -10,6 +10,14 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.8-dev\n" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "Advanced Linklayer Options" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " @@ -22,6 +30,16 @@ msgid "" "checking, use very carefully." msgstr "傳遞到入站佇列規則的進階選項字串,沒有錯誤檢查,請謹慎使用。" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 +msgid "" +"Advanced options will only be used as long as this box is checked (only " +"needed if MTU > 1500)." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 +msgid "Advanced options will only be used as long as this box is checked." +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72 msgid "Basic Settings" msgstr "基本設定" @@ -32,29 +50,51 @@ msgid "" "[start|stop]-sqm.log." msgstr "建立日誌檔案 (/var/run/sqm/${Interface_name}.[start|stop]-sqm.log)。" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous Configuration" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 +msgid "Dangerous options will only be used as long as this box is checked." +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 +msgid "Download speed (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " -"shaping:" -msgstr "下載速度 (kbit/s) (0-無限制):" +"shaping" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 +msgid "ECN (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 +msgid "ECN (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58 msgid "Enable SQM" msgstr "啟用 SQM" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100 +msgid "Enable debug logging" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "Enable this SQM instance." msgstr "啟用 SQM。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148 -msgid "" -"Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "傳入封包(入口)上的顯式擁塞通知 (ECN)狀態:" +msgid "Explicit congestion notification (ECN) status on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 -msgid "" -"Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "傳出封包(出口)上的顯式擁塞通知(ECN)狀態。" +msgid "Explicit congestion notification (ECN) status on outbound packets" +msgstr "" #: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3 msgid "Grant UCI access for luci-app-sqm" @@ -68,15 +108,35 @@ msgstr "嚴格限制出口隊列;預設保留為空。" msgid "Hard limit on ingress queues; leave empty for default." msgstr "對入口隊列的硬限制;預設保留為空。" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168 +msgid "Hard queue limit (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164 +msgid "Hard queue limit (ingress)" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 -msgid "Ignore DSCP on ingress:" -msgstr "在進入時忽略DSCP:" +msgid "Ignore DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 +msgid "Ignore DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 msgid "Interface name" msgstr "介面名稱" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 +msgid "Latency target (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172 +msgid "Latency target (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176 msgid "" "Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for " "automatic selection, put in the word default for the qdisc's default." @@ -96,26 +156,60 @@ msgstr "" msgid "Link Layer Adaptation" msgstr "連結層適應" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 +msgid "Link layer" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 +msgid "Linklayer adaptation mechanism" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "" +"Lists queuing disciplines useable on this system. After installing a new " +"qdisc, you need to restart the router to see updates!" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 +msgid "Log verbosity" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " -"interface MTU + overhead:" -msgstr "用於大小和速率計算的最大大小,tcMTU (位元組);需要≧介面MTU +開銷:" +"interface MTU + overhead" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203 +msgid "Maximum packet size" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 msgid "" -"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" -msgstr "最小封包大小,MPU(位元組);對於乙太網大小表,必須>0:" +"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213 +msgid "Minimum packet size" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " -"+ 1) / 16:" -msgstr "大小/費率表中的條目數,TSIZE;對於ATM,選擇TSIZE = (tcMTU + 1)/ 16:" +"+ 1) / 16" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193 -msgid "Per Packet Overhead (byte):" -msgstr "每個封包開銷(位元組):" +msgid "Per Packet Overhead (bytes)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183 +msgid "Qdisc options (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180 +msgid "Qdisc options (ingress)" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73 msgid "Queue Discipline" @@ -125,47 +219,33 @@ msgstr "佇列規則" msgid "Queue setup script" msgstr "佇列設定指令碼" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 +msgid "Queueing discipline" +msgstr "" + #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Queues" msgstr "佇列" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112 -msgid "" -"Queuing disciplines useable on this system. After installing a new qdisc, " -"you need to restart the router to see updates!" -msgstr "安裝新的佇列規則後,需要重新啟動路由器!" +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208 +msgid "Rate table size" +msgstr "" #: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "SQM QoS頻寬管理" -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199 -msgid "" -"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " -"options will only be used as long as this box is checked." -msgstr "" -"顯示 高級連接層選項 , (僅當MTU> 1500時才需要)。僅在選中此框時,才使用高級選" -"項。" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133 -msgid "" -"Show and Use Advanced Configuration. Advanced options will only be used as " -"long as this box is checked." -msgstr "顯示使用進階選項,只有選取此選取框時,才會使用進階選項。" - -#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160 -msgid "" -"Show and Use Dangerous Configuration. Dangerous options will only be used as " -"long as this box is checked." -msgstr "顯示和使用危險組態。僅在選中此復選框後,才會使用危險選項。" - #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64 msgid "Smart Queue Management" msgstr "智慧隊列管理" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 -msgid "Squash DSCP on inbound packets (ingress):" -msgstr "在傳入封包(入口)上壓縮DSCP:" +msgid "Squash DSCP (ingress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 +msgid "Squash DSCP markings on inbound packets" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83 msgid "" @@ -183,18 +263,21 @@ msgid "" msgstr "SQM 服務似乎已被停用。請使用下面的按鈕來啟動這項服務。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 +msgid "Upload speed (egress)" +msgstr "" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96 msgid "" -"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " -"shaping:" -msgstr "上傳速度 (kbit/s) (0-無限制):" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103 msgid "Verbosity of SQM's output into the system log." msgstr "日誌等級。" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187 -msgid "Which link layer to account for:" -msgstr "連結層:" +msgid "Which link layer technology to account for" +msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218 msgid "Which linklayer adaptation mechanism to use; for testing only" @@ -216,3 +299,72 @@ msgstr "" #: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219 msgid "default" msgstr "預設" + +#~ msgid "" +#~ "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +#~ "shaping:" +#~ msgstr "下載速度 (kbit/s) (0-無限制):" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on inbound packets " +#~ "(ingress):" +#~ msgstr "傳入封包(入口)上的顯式擁塞通知 (ECN)狀態:" + +#~ msgid "" +#~ "Explicit congestion notification (ECN) status on outbound packets " +#~ "(egress)." +#~ msgstr "傳出封包(出口)上的顯式擁塞通知(ECN)狀態。" + +#~ msgid "Ignore DSCP on ingress:" +#~ msgstr "在進入時忽略DSCP:" + +#~ msgid "" +#~ "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +#~ "interface MTU + overhead:" +#~ msgstr "用於大小和速率計算的最大大小,tcMTU (位元組);需要≧介面MTU +開銷:" + +#~ msgid "" +#~ "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" +#~ msgstr "最小封包大小,MPU(位元組);對於乙太網大小表,必須>0:" + +#~ msgid "" +#~ "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = " +#~ "(tcMTU + 1) / 16:" +#~ msgstr "" +#~ "大小/費率表中的條目數,TSIZE;對於ATM,選擇TSIZE = (tcMTU + 1)/ 16:" + +#~ msgid "Per Packet Overhead (byte):" +#~ msgstr "每個封包開銷(位元組):" + +#~ msgid "" +#~ "Queuing disciplines useable on this system. After installing a new qdisc, " +#~ "you need to restart the router to see updates!" +#~ msgstr "安裝新的佇列規則後,需要重新啟動路由器!" + +#~ msgid "" +#~ "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +#~ "options will only be used as long as this box is checked." +#~ msgstr "" +#~ "顯示 高級連接層選項 , (僅當MTU> 1500時才需要)。僅在選中此框時,才使用高級" +#~ "選項。" + +#~ msgid "" +#~ "Show and Use Advanced Configuration. Advanced options will only be used " +#~ "as long as this box is checked." +#~ msgstr "顯示使用進階選項,只有選取此選取框時,才會使用進階選項。" + +#~ msgid "" +#~ "Show and Use Dangerous Configuration. Dangerous options will only be used " +#~ "as long as this box is checked." +#~ msgstr "顯示和使用危險組態。僅在選中此復選框後,才會使用危險選項。" + +#~ msgid "Squash DSCP on inbound packets (ingress):" +#~ msgstr "在傳入封包(入口)上壓縮DSCP:" + +#~ msgid "" +#~ "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +#~ "shaping:" +#~ msgstr "上傳速度 (kbit/s) (0-無限制):" + +#~ msgid "Which link layer to account for:" +#~ msgstr "連結層:" |