diff options
Diffstat (limited to 'applications/luci-app-sqm')
39 files changed, 1665 insertions, 1710 deletions
diff --git a/applications/luci-app-sqm/Makefile b/applications/luci-app-sqm/Makefile index ab2ec47f7..4ab842b24 100644 --- a/applications/luci-app-sqm/Makefile +++ b/applications/luci-app-sqm/Makefile @@ -6,12 +6,9 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Support for SQM Scripts LUCI_DESCRIPTION:=Luci interface for the SQM scripts queue management package -PKG_VERSION:=1.4.0 -PKG_RELEASE:=8 - PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk> -LUCI_DEPENDS:=+luci-compat +sqm-scripts +LUCI_DEPENDS:=+sqm-scripts LUCI_PKGARCH:=all include ../../luci.mk 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 new file mode 100644 index 000000000..a9d99d5f6 --- /dev/null +++ b/applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js @@ -0,0 +1,210 @@ +'use strict'; +'require fs'; +'require rpc'; +'require uci'; +'require view'; +'require form'; +'require tools.widgets as widgets'; + +return view.extend({ + handleGetHelpText: function(script_name, tbl) { + return fs.read("/usr/lib/sqm/" + script_name + ".help").then(function (text) { + if (text) + return [script_name, text]; + }); + }, + + handleEnableSQM: rpc.declare({ + object: 'luci', + method: 'setInitAction', + params: [ 'sqm', 'enable' ], + expect: { result: false } + }), + + load: function() { + return Promise.all([ + fs.list("/var/run/sqm/available_qdiscs"), + fs.list("/usr/lib/sqm").then(L.bind(function(scripts) { + var tasks = [], scriptHelpTbl = {}; + + for (var i = 0; i < scripts.length; i++) + if (scripts[i].name.search(/\.qos$/) != -1) + tasks.push(L.resolveDefault(this.handleGetHelpText(scripts[i].name, scriptHelpTbl), [scripts[i].name, null])); + + return Promise.all(tasks); + }, this)), + uci.load('sqm') + ]); + }, + + render: function(data) { + var qdiscs = data[0], + scripts = data[1]; + + var m, s, o; + + m = new form.Map('sqm', _('Smart Queue Management')); + m.description = _("With <abbr title=\"Smart Queue Management\">SQM</abbr> you " + + "can enable traffic shaping, better mixing (Fair Queueing)," + + " active queue length management (AQM) " + + " and prioritisation on one " + + "network interface."); + + s = m.section(form.TypedSection, 'queue', _('Queues')); + s.tab("tab_basic", _("Basic Settings")); + s.tab("tab_qdisc", _("Queue Discipline")); + s.tab("tab_linklayer", _("Link Layer Adaptation")); + s.anonymous = true; + s.addremove = true; + + o = s.taboption("tab_basic", form.Flag, "enabled", _("Enable this SQM instance.")); + o.rmempty = false; + o.write = L.bind(function(section, value) { + if (value == "1") { + this.handleEnableSQM(); + L.ui.addNotification(null, E('p', _("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."))); + } + + return uci.set("sqm", section, "enabled", value); + }, this); + + 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.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.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.rmempty = false; + + o = s.taboption("tab_basic", form.ListValue, "verbosity", _("Verbosity of SQM's output into the system log.")); + o.value("0", "silent"); + o.value("1", "error"); + o.value("2", "warning"); + o.value("5", "info ("+_("default")+")"); + o.value("8", "debug"); + 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!")); + for (var i=0; i < qdiscs.length; i++) { + o.value(qdiscs[i].name); + } + o.default = "fq_codel"; + o.rmempty = false; + + var qos_desc = ""; + o = s.taboption("tab_qdisc", form.ListValue, "script", _("Queue setup script")); + for (i = 0; i < scripts.length; i++) { + o.value(scripts[i][0]); + qos_desc += "<p><b>" + scripts[i][0] + ":</b><br />"; + if (scripts[i][1]) + qos_desc += scripts[i][1] + "</p>"; + else + qos_desc += "No help text</p>"; + } + o.default = "simple.qos"; + 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.default = false; + + o = s.taboption("tab_qdisc", form.ListValue, "squash_dscp", _("Squash DSCP on inbound packets (ingress):")); + 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.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.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.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.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.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.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.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.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.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.depends("qdisc_really_really_advanced", "1"); + + // LINKLAYER + o = s.taboption("tab_linklayer", form.ListValue, "linklayer", _("Which link layer 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.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.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.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.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.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.value("default", "default (" + _("default") + ")"); + o.value("cake"); + o.value("htb_private"); + o.value("tc_stab"); + o.default = "default"; + o.depends("linklayer_advanced", "1"); + + return m.render(); + } +})
\ No newline at end of file diff --git a/applications/luci-app-sqm/luasrc/controller/sqm.lua b/applications/luci-app-sqm/luasrc/controller/sqm.lua deleted file mode 100644 index 3bf0af2de..000000000 --- a/applications/luci-app-sqm/luasrc/controller/sqm.lua +++ /dev/null @@ -1,27 +0,0 @@ ---[[ -LuCI - Lua Configuration Interface - -Copyright 2008 Steven Barth <steven@midlink.org> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -$Id$ -]]-- - -module("luci.controller.sqm", package.seeall) - -function index() - if not nixio.fs.access("/etc/config/sqm") then - return - end - - local page - - page = entry({"admin", "network", "sqm"}, cbi("sqm"), _("SQM QoS")) - page.dependent = true - page.acl_depends = { "luci-app-sqm" } -end diff --git a/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua b/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua deleted file mode 100644 index f6cdaca8a..000000000 --- a/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua +++ /dev/null @@ -1,263 +0,0 @@ ---[[ -LuCI - Lua Configuration Interface - -Copyright 2014 Steven Barth <steven@midlink.org> -Copyright 2014 Dave Taht <dave.taht@bufferbloat.net> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -$Id$ -]]-- - -local wa = require "luci.tools.webadmin" -local fs = require "nixio.fs" -local net = require "luci.model.network".init() -local sys = require "luci.sys" ---local ifaces = net:get_interfaces() -local ifaces = sys.net:devices() -local path = "/usr/lib/sqm" -local run_path = "/var/run/sqm/available_qdiscs" - -m = Map("sqm", translate("Smart Queue Management"), - translate("With <abbr title=\"Smart Queue Management\">SQM</abbr> you " .. - "can enable traffic shaping, better mixing (Fair Queueing)," .. - " active queue length management (AQM) " .. - " and prioritisation on one " .. - "network interface.")) - -s = m:section(TypedSection, "queue", translate("Queues")) -s:tab("tab_basic", translate("Basic Settings")) -s:tab("tab_qdisc", translate("Queue Discipline")) -s:tab("tab_linklayer", translate("Link Layer Adaptation")) -s.addremove = true -- set to true to allow adding SQM instances in the GUI -s.anonymous = true - --- BASIC -e = s:taboption("tab_basic", Flag, "enabled", translate("Enable this SQM instance.")) -e.rmempty = false - --- sm: following jow's advise, be helpful to the user and enable --- sqm's init script if even a single sm instance/interface --- is enabled; this is unexpected in that the init script gets --- enabled as soon as at least one sqm instance is enabled --- and that state is saved, so it does not require "Save & Apply" --- to effect the init scripts. --- the implementation was inpired/lifted from --- https://github.com/openwrt/luci/blob/master/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua -function e.write(self, section, value) - if value == "1" then - luci.sys.init.enable("sqm") - m.message = translate("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.") - end - return Flag.write(self, section, value) -end --- TODO: inform the user what we just did... - - --- Add to physical interface list a hint of the correpsonding network names, --- used to help users better select e.g. lan or wan interface. - -n = s:taboption("tab_basic", ListValue, "interface", translate("Interface name")) --- sm lifted from luci-app-wol, the original implementation failed to show pppoe-ge00 type interface names -for _, iface in ipairs(ifaces) do - if not (iface == "lo" or iface:match("^ifb.*")) then - local nets = net:get_interface(iface) - nets = nets and nets:get_networks() or {} - for k, v in pairs(nets) do - nets[k] = nets[k].sid - end - nets = table.concat(nets, ",") - n:value(iface, ((#nets > 0) and "%s (%s)" % {iface, nets} or iface)) - end -end -n.rmempty = false - - -dl = s:taboption("tab_basic", Value, "download", translate("Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress shaping:")) -dl.datatype = "and(uinteger,min(0))" -dl.rmempty = false - -ul = s:taboption("tab_basic", Value, "upload", translate("Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping:")) -ul.datatype = "and(uinteger,min(0))" -ul.rmempty = false - -dbl = s:taboption("tab_basic", Flag, "debug_logging", translate("Create log file for this SQM instance under /var/run/sqm/${Interface_name}.[start|stop]-sqm.log.")) -dbl.rmempty = false - - -verb = s:taboption("tab_basic", ListValue, "verbosity", translate("Verbosity of SQM's output into the system log.")) -verb:value("0", "silent") -verb:value("1", "error") -verb:value("2", "warning") -verb:value("5", "info ("..translate("default")..")") -verb:value("8", "debug") -verb:value("10", "trace") -verb.default = "5" -verb.rmempty = true - - - - --- QDISC - -local val_qdisc_name = "" -c = s:taboption("tab_qdisc", ListValue, "qdisc", translate("Queuing disciplines useable on this system. After installing a new qdisc, you need to restart the router to see updates!")) -c:value("fq_codel", "fq_codel ("..translate("default")..")") - -if fs.stat(run_path) then - for file in fs.dir(run_path) do - c:value( file ) - end -end -c.default = "fq_codel" -c.rmempty = false - - - -local qos_desc = "" -sc = s:taboption("tab_qdisc", ListValue, "script", translate("Queue setup script")) -for file in fs.dir(path) do - if string.find(file, ".qos$") and not fs.stat(path .. "/" .. file .. ".hidden") then - sc:value(file) - qos_desc = qos_desc .. "<p><b>" .. file .. ":</b><br />" - fh = io.open(path .. "/" .. file .. ".help", "r") - if fh then - qos_desc = qos_desc .. fh:read("*a") .. "</p>" - else - qos_desc = qos_desc .. "No help text</p>" - end - end -end -sc.default = "simple.qos" -sc.rmempty = false -sc.description = qos_desc - -ad = s:taboption("tab_qdisc", Flag, "qdisc_advanced", translate("Show and Use Advanced Configuration. Advanced options will only be used as long as this box is checked.")) -ad.default = false -ad.rmempty = true - -squash_dscp = s:taboption("tab_qdisc", ListValue, "squash_dscp", translate("Squash DSCP on inbound packets (ingress):")) -squash_dscp:value("1", "SQUASH") -squash_dscp:value("0", "DO NOT SQUASH") -squash_dscp.default = "1" -squash_dscp.rmempty = true -squash_dscp:depends("qdisc_advanced", "1") - -squash_ingress = s:taboption("tab_qdisc", ListValue, "squash_ingress", translate("Ignore DSCP on ingress:")) -squash_ingress:value("1", "Ignore") -squash_ingress:value("0", "Allow") -squash_ingress.default = "1" -squash_ingress.rmempty = true -squash_ingress:depends("qdisc_advanced", "1") - -iecn = s:taboption("tab_qdisc", ListValue, "ingress_ecn", translate("Explicit congestion notification (ECN) status on inbound packets (ingress):")) -iecn:value("ECN", "ECN ("..translate("default")..")") -iecn:value("NOECN") -iecn.default = "ECN" -iecn.rmempty = true -iecn:depends("qdisc_advanced", "1") - -eecn = s:taboption("tab_qdisc", ListValue, "egress_ecn", translate("Explicit congestion notification (ECN) status on outbound packets (egress).")) -eecn:value("NOECN", "NOECN ("..translate("default")..")") -eecn:value("ECN") -eecn.default = "NOECN" -eecn.rmempty = true -eecn:depends("qdisc_advanced", "1") - -ad2 = s:taboption("tab_qdisc", Flag, "qdisc_really_really_advanced", translate("Show and Use Dangerous Configuration. Dangerous options will only be used as long as this box is checked.")) -ad2.default = false -ad2.rmempty = true -ad2:depends("qdisc_advanced", "1") - -ilim = s:taboption("tab_qdisc", Value, "ilimit", translate("Hard limit on ingress queues; leave empty for default.")) --- ilim.default = 1000 -ilim.isnumber = true -ilim.datatype = "and(uinteger,min(0))" -ilim.rmempty = true -ilim:depends("qdisc_really_really_advanced", "1") - -elim = s:taboption("tab_qdisc", Value, "elimit", translate("Hard limit on egress queues; leave empty for default.")) --- elim.default = 1000 -elim.datatype = "and(uinteger,min(0))" -elim.rmempty = true -elim:depends("qdisc_really_really_advanced", "1") - - -itarg = s:taboption("tab_qdisc", Value, "itarget", translate("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.")) -itarg.datatype = "string" -itarg.rmempty = true -itarg:depends("qdisc_really_really_advanced", "1") - -etarg = s:taboption("tab_qdisc", Value, "etarget", translate("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.")) -etarg.datatype = "string" -etarg.rmempty = true -etarg:depends("qdisc_really_really_advanced", "1") - - - -iqdisc_opts = s:taboption("tab_qdisc", Value, "iqdisc_opts", translate("Advanced option string to pass to the ingress queueing disciplines; no error checking, use very carefully.")) -iqdisc_opts.rmempty = true -iqdisc_opts:depends("qdisc_really_really_advanced", "1") - -eqdisc_opts = s:taboption("tab_qdisc", Value, "eqdisc_opts", translate("Advanced option string to pass to the egress queueing disciplines; no error checking, use very carefully.")) -eqdisc_opts.rmempty = true -eqdisc_opts:depends("qdisc_really_really_advanced", "1") - --- LINKLAYER -ll = s:taboption("tab_linklayer", ListValue, "linklayer", translate("Which link layer to account for:")) -ll:value("none", "none ("..translate("default")..")") -ll:value("ethernet", "Ethernet with overhead: select for e.g. VDSL2.") -ll:value("atm", "ATM: select for e.g. ADSL1, ADSL2, ADSL2+.") -ll.default = "none" - -po = s:taboption("tab_linklayer", Value, "overhead", translate("Per Packet Overhead (byte):")) -po.datatype = "and(integer,min(-1500))" -po.default = 0 -po.isnumber = true -po.rmempty = true -po:depends("linklayer", "ethernet") -po:depends("linklayer", "atm") - - -adll = s:taboption("tab_linklayer", Flag, "linklayer_advanced", translate("Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced options will only be used as long as this box is checked.")) -adll.rmempty = true -adll:depends("linklayer", "ethernet") -adll:depends("linklayer", "atm") - -smtu = s:taboption("tab_linklayer", Value, "tcMTU", translate("Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= interface MTU + overhead:")) -smtu.datatype = "and(uinteger,min(0))" -smtu.default = 2047 -smtu.isnumber = true -smtu.rmempty = true -smtu:depends("linklayer_advanced", "1") - -stsize = s:taboption("tab_linklayer", Value, "tcTSIZE", translate("Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU + 1) / 16:")) -stsize.datatype = "and(uinteger,min(0))" -stsize.default = 128 -stsize.isnumber = true -stsize.rmempty = true -stsize:depends("linklayer_advanced", "1") - -smpu = s:taboption("tab_linklayer", Value, "tcMPU", translate("Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:")) -smpu.datatype = "and(uinteger,min(0))" -smpu.default = 0 -smpu.isnumber = true -smpu.rmempty = true -smpu:depends("linklayer_advanced", "1") - -lla = s:taboption("tab_linklayer", ListValue, "linklayer_adaptation_mechanism", translate("Which linklayer adaptation mechanism to use; for testing only")) -lla:value("default", "default ("..translate("default")..")") -lla:value("cake") -lla:value("htb_private") -lla:value("tc_stab") -lla.default = "default" -lla.rmempty = true -lla:depends("linklayer_advanced", "1") - --- PRORITIES? - -return m diff --git a/applications/luci-app-sqm/po/ar/sqm.po b/applications/luci-app-sqm/po/ar/sqm.po index 895b73785..527d96cf7 100644 --- a/applications/luci-app-sqm/po/ar/sqm.po +++ b/applications/luci-app-sqm/po/ar/sqm.po @@ -1,47 +1,56 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-09-26 10:40+0000\n" +"Last-Translator: Marwan Amireh <amirehmarwan@gmail.com>\n" +"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssqm/ar/>\n" "Language: ar\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 4.3-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" +"سلسلة خيارات متقدمة لتمريرها إلى تخصصات الخروج قائمة انتظار; لا يوجد خطأ " +"التحقق، واستخدام بعناية فائقة." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +59,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/bg/sqm.po b/applications/luci-app-sqm/po/bg/sqm.po index 539bb37f3..30acd4eb7 100644 --- a/applications/luci-app-sqm/po/bg/sqm.po +++ b/applications/luci-app-sqm/po/bg/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/bn_BD/sqm.po b/applications/luci-app-sqm/po/bn_BD/sqm.po index 576bcbef9..95e2e3129 100644 --- a/applications/luci-app-sqm/po/bn_BD/sqm.po +++ b/applications/luci-app-sqm/po/bn_BD/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/ca/sqm.po b/applications/luci-app-sqm/po/ca/sqm.po index 589cf4178..e1eaec83b 100644 --- a/applications/luci-app-sqm/po/ca/sqm.po +++ b/applications/luci-app-sqm/po/ca/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/cs/sqm.po b/applications/luci-app-sqm/po/cs/sqm.po index 0be702342..3bb938a70 100644 --- a/applications/luci-app-sqm/po/cs/sqm.po +++ b/applications/luci-app-sqm/po/cs/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/de/sqm.po b/applications/luci-app-sqm/po/de/sqm.po index 5c2038dd2..4fd4b25b6 100644 --- a/applications/luci-app-sqm/po/de/sqm.po +++ b/applications/luci-app-sqm/po/de/sqm.po @@ -10,7 +10,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." @@ -18,7 +18,7 @@ msgstr "" "Erweiterte Optionszeichenkette zur Übergabe an die ausgangsseitigen " "Warteschlangendisziplinen; keine Fehlerprüfung, sehr vorsichtig verwenden." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." @@ -26,19 +26,19 @@ msgstr "" "Erweiterte Optionszeichenkette zur Übergabe an die in die Warteschlange " "einsteigenden Disziplinen; keine Fehlerprüfung, sehr vorsichtig verwenden." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "Grundlegende Einstellungen" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -"Logdatei für diese SQM-Instanz unter /var/run/sqm/" -"${Interface_name}.[start|stop]-sqm.log erstellen." +"Logdatei für diese SQM-Instanz unter /var/run/sqm/${Interface_name}.[start|" +"stop]-sqm.log erstellen." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" @@ -46,16 +46,16 @@ msgstr "" "Download-Geschwindigkeit (kbit/s) (Ingress) auf 0 setzen, um Ingress-Shaping " "selektiv zu deaktivieren:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "Diese SQM-Instanz aktivieren" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -64,88 +64,88 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "UCI-Zugriff für luci-app-sqm erlauben" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Schnittstellenname" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." @@ -153,57 +153,56 @@ msgstr "" "Erweiterte Konfiguration anzeigen und verwenden. Die erweiterten Optionen " "werden nur verwendet, wenn diese Option ausgewählt ist." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "Festlegen, wie ausführlich SQM ins Systemlog schreiben soll" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "Standardeinstellung" diff --git a/applications/luci-app-sqm/po/el/sqm.po b/applications/luci-app-sqm/po/el/sqm.po index 093583cdd..3b8007f10 100644 --- a/applications/luci-app-sqm/po/el/sqm.po +++ b/applications/luci-app-sqm/po/el/sqm.po @@ -10,44 +10,44 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0.2-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -56,144 +56,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Όνομα διεπαφής" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/en/sqm.po b/applications/luci-app-sqm/po/en/sqm.po index cdb76919d..b7a8c195f 100644 --- a/applications/luci-app-sqm/po/en/sqm.po +++ b/applications/luci-app-sqm/po/en/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/es/sqm.po b/applications/luci-app-sqm/po/es/sqm.po index 1489ae38b..542ca1ffa 100644 --- a/applications/luci-app-sqm/po/es/sqm.po +++ b/applications/luci-app-sqm/po/es/sqm.po @@ -10,7 +10,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." @@ -18,7 +18,7 @@ msgstr "" "Cadena de opciones avanzadas para pasar a las disciplinas de cola de salida; " "sin verificación de errores, use con mucho cuidado." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." @@ -26,11 +26,11 @@ 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/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "Configuración básica" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." @@ -38,7 +38,7 @@ 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/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" @@ -46,18 +46,18 @@ msgstr "" "La velocidad de descarga (kbit/s) (ingreso) se establece en 0 para " "desactivar selectivamente la configuración de ingreso:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "Activar esta instancia de SQM." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 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):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -68,23 +68,23 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "Conceder acceso UCI para luci-app-sqm" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "Límite estricto en las colas de salida; dejar en blanco por defecto." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 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/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "Ignorar DSCP en ingreso:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Nombre de interfaz" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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." @@ -93,7 +93,7 @@ msgstr "" "en blanco para la selección automática, ingrese la palabra default para el " "qdisc predeterminado." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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." @@ -102,11 +102,11 @@ msgstr "" "déjelo en blanco para la selección automática, ingrese la palabra default " "para el qdisc predeterminado." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "Adaptación de capa de enlace" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" @@ -114,14 +114,14 @@ msgstr "" "Tamaño máximo para cálculos de tamaño y velocidad, tcMTU (byte); necesita " "ser >= interfaz MTU + gastos generales:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" @@ -129,23 +129,23 @@ msgstr "" "Número de entradas en tablas de tamaño/tasa, TSIZE; para ATM, elija TSIZE = " "(tcMTU + 1) / 16:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "Por paquete de arriba (byte):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "Disciplina de cola" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "Script de configuración de cola" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "Colas" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 msgid "" "Queuing disciplines useable on this system. After installing a new qdisc, " "you need to restart the router to see updates!" @@ -153,11 +153,11 @@ 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/luasrc/controller/sqm.lua:24 +#: 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/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 msgid "" "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " "options will only be used as long as this box is checked." @@ -165,7 +165,7 @@ 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." @@ -173,7 +173,7 @@ msgstr "" "Mostrar y usar la Configuración avanzada. Las opciones avanzadas solo se " "utilizarán mientras esta casilla esté marcada." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." @@ -181,15 +181,15 @@ msgstr "" "Mostrar y usar la Configuración Peligrosa. Las opciones peligrosas sólo se " "utilizarán mientras esté marcada esta casilla." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "Gestión inteligente de colas" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "Aplastar DSCP en paquetes entrantes (ingreso):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 " @@ -199,7 +199,7 @@ msgstr "" "desactivar el initscript de sqm manualmente en el menú Inicio del sistema en " "caso de que no se desee este cambio." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" @@ -207,19 +207,19 @@ msgstr "" "Velocidad de carga (kbit/s) (salida) establecida en 0 para desactivar " "selectivamente la configuración de salida:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 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/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "Qué capa de enlace debe tener en cuenta:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "Qué mecanismo de adaptación de capa de enlace usar; solo para pruebas" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " @@ -229,11 +229,10 @@ msgstr "" "conformación del tráfico, una mejor mezcla (Fair Queuing), gestión activa de " "la longitud de la cola (AQM) y priorización en una interfaz de red." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "predeterminado" diff --git a/applications/luci-app-sqm/po/fi/sqm.po b/applications/luci-app-sqm/po/fi/sqm.po index a44334486..e809a96a7 100644 --- a/applications/luci-app-sqm/po/fi/sqm.po +++ b/applications/luci-app-sqm/po/fi/sqm.po @@ -10,31 +10,31 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "Perusasetukset" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -"Luo lokitiedosto tälle SQM-esiintymälle: /var/run/sqm/" -"${Interface_name}.[start|stop]-sqm.log." +"Luo lokitiedosto tälle SQM-esiintymälle: /var/run/sqm/${Interface_name}." +"[start|stop]-sqm.log." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" @@ -42,16 +42,16 @@ msgstr "" "Latausnopeus (kbit/s) (ingress). Aseta arvoksi 0 ottaaksesi latausnopeuden " "säädön pois päältä:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "Ota tämä SQM-esiintymä käyttöön." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -60,72 +60,72 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "Salli pääsy SQM-asetuksiin" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "Sivuuta DSCP saapuvalta liikenteeltä:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Sovittimen nimi" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "Linkkikerroksen sopeuttaminen" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "Lisäkuorma pakettia kohti (tavu):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "Jonomenetelmä (qdisc)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "Jonomenetelmän asetustiedosto" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "Jonot" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 msgid "" "Queuing disciplines useable on this system. After installing a new qdisc, " "you need to restart the router to see updates!" @@ -133,44 +133,44 @@ 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/luasrc/controller/sqm.lua:24 +#: 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/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "Älykäs jononhallinta" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" @@ -178,30 +178,29 @@ msgstr "" "Lähetysnopeus kilobitteinä sekunnissa (kbit/s). Aseta arvoksi 0 ottaaksesi " "lähetysnopeuden säädön pois päältä:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "SQM tapahtumien lokiinkirjaamisen tarkkuus." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "Mitä linkkerroksen sopeutumistapaa käytetään (vain testaamiseen)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "vakio" diff --git a/applications/luci-app-sqm/po/fr/sqm.po b/applications/luci-app-sqm/po/fr/sqm.po index e4f1103b6..9a9b696a1 100644 --- a/applications/luci-app-sqm/po/fr/sqm.po +++ b/applications/luci-app-sqm/po/fr/sqm.po @@ -10,7 +10,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." @@ -18,7 +18,7 @@ msgstr "" "Chaîne d'options avancées pour passer aux disciplines de file d'attente de " "sortie ; pas de vérification d'erreur, à utiliser avec précaution." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." @@ -27,11 +27,11 @@ msgstr "" "d'entrée ; pas de vérification d'erreur, à utiliser avec beaucoup de " "précaution." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "Paramètres de base" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." @@ -39,7 +39,7 @@ msgstr "" "Créer un fichier journal pour cette instance SQM sous /var/run/sqm/" "${nom_interface}. [start|stop]-sqm.log." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" @@ -47,18 +47,18 @@ 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/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "Activez cette instance SQM." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" "Statut de notification de congestion (ECN) sur les paquets entrants " "(ingress) :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -68,23 +68,23 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "Autoriser l'accès UCI pour luci-app-sqm" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "Limite des files d'attente pour la sortie ; laisser vide par défaut." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 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/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "Ignoré DSCP à l'entrée :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Nom de l’interface" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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." @@ -93,7 +93,7 @@ msgstr "" "laisser vide pour la sélection automatique, mettre Default pour la valeur " "par défaut du qdisc." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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." @@ -102,11 +102,11 @@ msgstr "" "vide pour la sélection automatique, mettre default pour la valeur par défaut " "du qdisc." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "Adaptation de liaison" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" @@ -114,14 +114,14 @@ msgstr "" "Taille maximale pour les calculs de taille et de taux, tcMTU (byte) ; doit " "être >= interface MTU + overhead :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" "Taille minimale des paquets, MPU (byte) ; doit être > 0 pour les tailes de " "tables ethernet :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" @@ -129,23 +129,23 @@ msgstr "" "Nombre d'entrées de taille/debit tables, TSIZE ; for ATM choose TSIZE = " "(tcMTU + 1) / 16 :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "Overhead par Packet(byte) :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "Queue Discipline" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "Script de file d'attente" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "Queues" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 msgid "" "Queuing disciplines useable on this system. After installing a new qdisc, " "you need to restart the router to see updates!" @@ -153,11 +153,11 @@ 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/luasrc/controller/sqm.lua:24 +#: 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/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 msgid "" "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " "options will only be used as long as this box is checked." @@ -165,7 +165,7 @@ 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." @@ -173,7 +173,7 @@ 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/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." @@ -181,15 +181,15 @@ msgstr "" "Afficher et utiliser une configuration dangereuse. Les options dangereuses " "ne seront utilisées que si cette case est cochée." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "Management File d'attente" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "Écraser le DSCP sur les paquets entrants (ingress) :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 " @@ -199,25 +199,25 @@ msgstr "" "N'oubliez pas de désactiver manuellement le sqm initscript dans le menu de " "démarrage du système au cas où ce changement ne serait pas souhaité." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 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 :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 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/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "Quelle couche liaison à prendre en compte :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "Mécanisme d'adaptation de la couche de liaison ; pour essai uniquement" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " @@ -228,11 +228,10 @@ msgstr "" "active de la longueur des files d'attente (AQM) et la priorisation sur une " "seule interface réseau." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "Par défaut" diff --git a/applications/luci-app-sqm/po/he/sqm.po b/applications/luci-app-sqm/po/he/sqm.po index 07a686bfd..f23331b2d 100644 --- a/applications/luci-app-sqm/po/he/sqm.po +++ b/applications/luci-app-sqm/po/he/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/hi/sqm.po b/applications/luci-app-sqm/po/hi/sqm.po index ce889bae1..944a138f0 100644 --- a/applications/luci-app-sqm/po/hi/sqm.po +++ b/applications/luci-app-sqm/po/hi/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/hu/sqm.po b/applications/luci-app-sqm/po/hu/sqm.po index a19dd067c..1aab7b671 100644 --- a/applications/luci-app-sqm/po/hu/sqm.po +++ b/applications/luci-app-sqm/po/hu/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/it/sqm.po b/applications/luci-app-sqm/po/it/sqm.po index a008a9821..a1581df07 100644 --- a/applications/luci-app-sqm/po/it/sqm.po +++ b/applications/luci-app-sqm/po/it/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/ja/sqm.po b/applications/luci-app-sqm/po/ja/sqm.po index a7dad2c4a..0cbdadbae 100644 --- a/applications/luci-app-sqm/po/ja/sqm.po +++ b/applications/luci-app-sqm/po/ja/sqm.po @@ -10,44 +10,44 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "基本設定" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "この SQM インスタンスを有効にします。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -56,144 +56,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "luci-app-sqm に UCI アクセスを許可" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "インターフェース名" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "キュー" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "スマート・キュー管理" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "デフォルト" diff --git a/applications/luci-app-sqm/po/ko/sqm.po b/applications/luci-app-sqm/po/ko/sqm.po index 18aad064f..16f12a94f 100644 --- a/applications/luci-app-sqm/po/ko/sqm.po +++ b/applications/luci-app-sqm/po/ko/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/mr/sqm.po b/applications/luci-app-sqm/po/mr/sqm.po index 75aebd9f2..56f2222b3 100644 --- a/applications/luci-app-sqm/po/mr/sqm.po +++ b/applications/luci-app-sqm/po/mr/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/ms/sqm.po b/applications/luci-app-sqm/po/ms/sqm.po index e7d07f752..0de315cb1 100644 --- a/applications/luci-app-sqm/po/ms/sqm.po +++ b/applications/luci-app-sqm/po/ms/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/nb_NO/sqm.po b/applications/luci-app-sqm/po/nb_NO/sqm.po index 9ad129b4a..fed8833c8 100644 --- a/applications/luci-app-sqm/po/nb_NO/sqm.po +++ b/applications/luci-app-sqm/po/nb_NO/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/pl/sqm.po b/applications/luci-app-sqm/po/pl/sqm.po index 19cd6e213..e44d0ea6c 100644 --- a/applications/luci-app-sqm/po/pl/sqm.po +++ b/applications/luci-app-sqm/po/pl/sqm.po @@ -11,7 +11,7 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.2.1-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." @@ -19,7 +19,7 @@ msgstr "" "Zaawansowany łańcuch opcji, aby przejść do dyscyplin kolejkowania egress; " "bez sprawdzania błędów, używaj bardzo ostrożnie." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." @@ -27,19 +27,19 @@ 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/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "Podstawowe ustawienia" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -"Utwórz plik dziennika dla tej instancji SQM w /var/run/sqm/" -"${Interface_name}.[start|stop]-sqm.log." +"Utwórz plik dziennika dla tej instancji SQM w /var/run/sqm/${Interface_name}." +"[start|stop]-sqm.log." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" @@ -47,18 +47,18 @@ msgstr "" "Prędkość pobierania (kbit/s) (ingress) ustawiona na 0, aby selektywnie " "wyłączyć kształtowanie ingress:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "Włącz tę instancję SQM." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" "Status jawnego powiadomienia o przeciążeniu (ECN) na pakietach " "przychodzących (ingress):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -69,23 +69,24 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "Udziel dostępu UCI do luci-app-sqm" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "Twardy limit kolejek egress; pozostawić puste dla ustawień domyślnych." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." -msgstr "Twardy limit kolejek ingress; pozostawić puste dla ustawień domyślnych." +msgstr "" +"Twardy limit kolejek ingress; pozostawić puste dla ustawień domyślnych." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "Ignoruj DSCP przy ingress:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Nazwa interfejsu" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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." @@ -93,7 +94,7 @@ msgstr "" "Cel opóźnienia dla egress, np. 5ms [jednostki: s, ms lub us]; pozostaw puste " "dla automatycznego wyboru, wpisz słowo default dla domyślnego qdisc." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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." @@ -101,50 +102,50 @@ msgstr "" "Cel opóźnienia dla ingress, np. 5ms [jednostki: s, ms lub us]; pozostaw " "puste dla automatycznego wyboru, wpisz słowo default dla domyślnego qdisc." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "Adaptacja warstwy połączenia" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 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:" +"Maksymalny rozmiar do obliczeń wielkości i szybkości, tcMTU (bajt); musi " +"być> = interfejs MTU + narzut:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 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:" +"Liczba wpisów w tabelach wielkości/szybkości, TSIZE; dla ATM wybrać TSIZE = " +"(tcMTU + 1) / 16:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "Narzut na pakiet (bajt):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "Dyscyplina kolejki" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "Skrypt konfiguracji kolejki" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "Kolejki" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 msgid "" "Queuing disciplines useable on this system. After installing a new qdisc, " "you need to restart the router to see updates!" @@ -152,11 +153,11 @@ msgstr "" "Dyscypliny kolejkowania przydatne w tym systemie. Po zainstalowaniu nowej " "qdisc musisz ponownie uruchomić router, aby zobaczyć aktualizacje!" -#: applications/luci-app-sqm/luasrc/controller/sqm.lua:24 +#: 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/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 msgid "" "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " "options will only be used as long as this box is checked." @@ -164,7 +165,7 @@ 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." @@ -172,7 +173,7 @@ 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/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." @@ -180,15 +181,15 @@ 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/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "Inteligentne zarządzanie kolejkami" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "Squash DSCP na pakietach przychodzących (ingress):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 " @@ -198,7 +199,7 @@ msgstr "" "ręcznie wyłączyć skrypt initscript sqm w menu autostart, jeśli ta zmiana nie " "była pożądana." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" @@ -206,21 +207,21 @@ msgstr "" "Prędkość wysyłania (kbit/s) (egress) ustawiona na 0, aby selektywnie " "wyłączyć kształtowanie egress:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "Szczegółowość danych wyjściowych SQM w dzienniku systemowym." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "Którą warstwę łącza należy uwzględnić:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" "Którego mechanizmu dostosowania odtwarzacza linków należy użyć; tylko do " "testowania" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " @@ -231,11 +232,10 @@ msgstr "" "długością kolejki (AQM) i ustalanie priorytetów na jednym interfejsie " "sieciowym." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "domyślna" diff --git a/applications/luci-app-sqm/po/pt/sqm.po b/applications/luci-app-sqm/po/pt/sqm.po index d2d66f28b..b68dfc9e2 100644 --- a/applications/luci-app-sqm/po/pt/sqm.po +++ b/applications/luci-app-sqm/po/pt/sqm.po @@ -10,7 +10,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." @@ -18,7 +18,7 @@ msgstr "" "Cadeia de opções avançada para passar para as disciplinas de enfileiramento " "de saída; sem verificação de erros, use com muito cuidado." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." @@ -26,11 +26,11 @@ 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/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "Configurações Básicas" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." @@ -38,7 +38,7 @@ 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/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" @@ -46,18 +46,18 @@ msgstr "" "Velocidade de descarrega (kbit/s) (ingresso) configurada a 0 para desativar " "seletivamente a forma de ingresso:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "Ativar esta instância do SQM." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 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):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -68,27 +68,27 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "Conceder acesso UCI ao luci-app-sqm" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" "Limite rígido nas filas de espera de saída; deixe em branco para utilizar " "valores predefinidos." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" "Limite rígido nas filas de espera de entrada; deixe em branco para utilizar " "valores predefinidos." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "Ignore o DSCP na entrada:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Nome da interface" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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." @@ -97,7 +97,7 @@ msgstr "" "para seleção automática, entre a palavra default para a predefinição do " "qdisc." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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." @@ -106,11 +106,11 @@ msgstr "" "vazio para seleção automática, entre a palavra default para a predefinição " "do qdisc." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "Adaptação da Camada de Ligação" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" @@ -118,14 +118,14 @@ msgstr "" "Tamanho máximo para cálculos de tamanho e taxa, tcMTU (byte); deve ser >= " "MTU da interface + sobrecarga:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" @@ -133,23 +133,23 @@ msgstr "" "Quantidade de entradas nas tabelas de tamanho/taxa, TSIZE; para ATM escolha " "TSIZE = (tcMTU + 1) / 16:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "Sobrecarga por Pacote (byte):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "Disciplina de Fila de Espera" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "Script de configuração da fila de espera" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "Filas de Espera" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 msgid "" "Queuing disciplines useable on this system. After installing a new qdisc, " "you need to restart the router to see updates!" @@ -157,11 +157,11 @@ 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/luasrc/controller/sqm.lua:24 +#: 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/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 msgid "" "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " "options will only be used as long as this box is checked." @@ -170,7 +170,7 @@ msgstr "" "1500). As opções avançadas só serão usadas enquanto esta caixa estiver " "marcada." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." @@ -178,7 +178,7 @@ 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/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." @@ -186,15 +186,15 @@ msgstr "" "Mostrar e Utilizar Configuração Perigosa. As opções perigosas só serão " "usadas enquanto esta caixa estiver marcada." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "Gestão Inteligente de Filas de Espera" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "Esmagar DSCP em pacotes de entrada (ingresso):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 " @@ -204,7 +204,7 @@ msgstr "" "desativar o initscript sqm manualmente no menu Início do Sistema no caso " "desta alteração não ter sido desejada." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" @@ -212,34 +212,33 @@ msgstr "" "Velocidade de envio (kbit/s) (saída) definida como 0 para desativar " "seletivamente a forma de saída:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 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/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "Que camada de ligação para a conta:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" "Utilizar qual mecanismo de adaptação da camada de ligação; apenas para testes" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "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 " +"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/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "padrão" diff --git a/applications/luci-app-sqm/po/pt_BR/sqm.po b/applications/luci-app-sqm/po/pt_BR/sqm.po index c6385aa58..63d544695 100644 --- a/applications/luci-app-sqm/po/pt_BR/sqm.po +++ b/applications/luci-app-sqm/po/pt_BR/sqm.po @@ -10,7 +10,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." @@ -18,7 +18,7 @@ msgstr "" "Cadeia de opções avançadas passada para as disciplinas de enfileiramento de " "saída; sem verificação de erros, use com muito cuidado." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." @@ -26,11 +26,11 @@ 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/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "Configurações Básicas" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." @@ -38,7 +38,7 @@ 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/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" @@ -46,18 +46,18 @@ msgstr "" "Velocidade de Download (kbits/s) (entrada), defina como 0 para desativar " "seletivamente a modelagem do tráfico de entrada:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "Ative esta instância do SQM." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 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):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -68,27 +68,27 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "Conceda acesso UCI ao luci-app-sqm" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" "Limite máximo nas filas de saída; deixe em branco para utilizar valores " "predefinidos." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" "Limite máximo nas filas de entrada; deixe em branco para utilizar valores " "predefinidos." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "Ignore o DSCP na entrada:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Nome da Interface" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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." @@ -97,7 +97,7 @@ msgstr "" "deixe vazio para usar a seleção automática, coloque a palavra default para " "utilizar os valores predefinidos do qdisc." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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." @@ -106,11 +106,11 @@ msgstr "" "deixe vazio para usar a seleção automática, coloque a palavra default para " "utilizar os valores predefinidos do qdisc." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "Adaptação da Camada do Link de Ligação" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" @@ -118,14 +118,14 @@ msgstr "" "Tamanho máximo para realizar os cálculos de tamanho e taxa, tcMTU (byte); " "precisa ser >= interface MTU + sobrecarga:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" @@ -133,23 +133,23 @@ msgstr "" "Quantidade de entradas de tamanho/taxa nas tabelas, TSIZE; para o ATM, " "escolha TSIZE = (tcMTU + 1) / 16:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "Por Sobrecarga de Pacote (byte):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "Disciplina da Fila" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "Script de configuração da fila" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "Filas de espera" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 msgid "" "Queuing disciplines useable on this system. After installing a new qdisc, " "you need to restart the router to see updates!" @@ -158,11 +158,11 @@ msgstr "" "instalar um novo qdisc, você precisa reiniciar o roteador para ver as " "atualizações!" -#: applications/luci-app-sqm/luasrc/controller/sqm.lua:24 +#: 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/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 msgid "" "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " "options will only be used as long as this box is checked." @@ -170,7 +170,7 @@ 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." @@ -178,7 +178,7 @@ 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/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." @@ -186,15 +186,15 @@ 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/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "Gestão Inteligente das Filas de Espera" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "Liquidar o DSCP durante a entrada dos pacotes (ingress):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 " @@ -204,7 +204,7 @@ msgstr "" "desativar o initscript sqm manualmente no menu Inicio do Sistema caso esta " "alteração não tenha sido requerida." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" @@ -212,21 +212,21 @@ msgstr "" "Velocidade de upload (kbit/s) (saída), defina como 0 para desativar " "seletivamente a modelagem do tráfico de saída:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 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/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "Qual camada de link deve ser considerada:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" "Qual o mecanismo de adaptação de camadas do link para usar; para testes " "apenas" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " @@ -237,11 +237,10 @@ msgstr "" "gerenciamento ativo de comprimento de fila (AQM) e priorização em uma " "interface de rede." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "Padrão" diff --git a/applications/luci-app-sqm/po/ro/sqm.po b/applications/luci-app-sqm/po/ro/sqm.po index 51f1b2bdf..a1f605177 100644 --- a/applications/luci-app-sqm/po/ro/sqm.po +++ b/applications/luci-app-sqm/po/ro/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/ru/sqm.po b/applications/luci-app-sqm/po/ru/sqm.po index 7014fde24..9211ace4d 100644 --- a/applications/luci-app-sqm/po/ru/sqm.po +++ b/applications/luci-app-sqm/po/ru/sqm.po @@ -11,44 +11,44 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "Основные настройки" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -57,144 +57,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "Предоставить UCI доступ для luci-app-sqm" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Имя интерфейса" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "по умолчанию" diff --git a/applications/luci-app-sqm/po/sk/sqm.po b/applications/luci-app-sqm/po/sk/sqm.po index 5de29a6aa..61042c48e 100644 --- a/applications/luci-app-sqm/po/sk/sqm.po +++ b/applications/luci-app-sqm/po/sk/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/sv/sqm.po b/applications/luci-app-sqm/po/sv/sqm.po index 9d6702189..405bd18cf 100644 --- a/applications/luci-app-sqm/po/sv/sqm.po +++ b/applications/luci-app-sqm/po/sv/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/templates/sqm.pot b/applications/luci-app-sqm/po/templates/sqm.pot index aa11c1aed..634d7143a 100644 --- a/applications/luci-app-sqm/po/templates/sqm.pot +++ b/applications/luci-app-sqm/po/templates/sqm.pot @@ -1,44 +1,44 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -47,144 +47,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/tr/sqm.po b/applications/luci-app-sqm/po/tr/sqm.po index f3b97ba81..94bb2fe10 100644 --- a/applications/luci-app-sqm/po/tr/sqm.po +++ b/applications/luci-app-sqm/po/tr/sqm.po @@ -1,193 +1,232 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-09-25 07:41+0000\n" +"Last-Translator: Mehmet Çetin <excom_zkko@hotmail.com>\n" +"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssqm/tr/>\n" "Language: tr\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.3-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" +"Çıkış kuyruğu denetimleri için gelişmiş seçenek satırı; hata kontrolü " +"yoktur, dikkatli kullanın." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" +"Giriş kuyruğu denetimleri için gelişmiş seçenek satırı; hata kontrolü " +"yoktur, dikkatli kullanın." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" -msgstr "" +msgstr "Temel Ayarlar" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." 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/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." -msgstr "" +msgstr "Bu SQM örneğini etkinleştirin." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "" +msgstr "Gelen paketlerde (giriş) açık tıkanıklık bildirimi (ECN) durumu:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "" +msgstr "Giden paketlerde (çıkış) açık tıkanıklık bildirimi (ECN) durumu." #: 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 tarafından luci-app-sqm'e erişilmesine izin ver" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." -msgstr "" +msgstr "Çıkış kuyrukları için kesin sınır; varsayılan ayar için boş bırakın." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." -msgstr "" +msgstr "Giriş kuyrukları için kesin sınır; varsayılan ayar için boş bırakın." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" -msgstr "" +msgstr "Giriş kuyruğunda DSCP'yi yoksay:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" -msgstr "" +msgstr "Arayüz ismi" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" +"Çıkış için gecikme hedefi, örn. 5ms [birimler: s, ms, ya da us]; otomatik " +"seçim için boş bırakın, qdisc'in varsayılan ayarı için \"default\" yazın." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" +"Giriş için gecikme hedefi, örn. 5ms [birimler: s, ms, ya da us]; otomatik " +"seçim için boş bırakın, qdisc'in varsayılan ayarı için \"default\" yazın." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" -msgstr "" +msgstr "Bağlantı Katmanı Uyarlaması" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" -msgstr "" +msgstr "Paket Başına Overhead (byte):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" -msgstr "" +msgstr "Kuyruk Denetimi" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" -msgstr "" +msgstr "Kuyruk kurulum betiği" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" -msgstr "" +msgstr "Kuyruklar" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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." -#: applications/luci-app-sqm/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" -msgstr "" +msgstr "SQM QoS" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 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/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 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/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" -msgstr "" +msgstr "Akıllı Kuyruk Yönetimi (SQM)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" -msgstr "" +msgstr "Gelen paketlerde (giriş) DSCP'yi sıkıştır:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 GUI, sizin adınıza sqm initscript'i etkinleştirdi. Bu değişikliğin " +"istenmemesi durumunda sqm initscript'i System Startup menüsünden manuel " +"olarak devre dışı bırakmayı unutmayın." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 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:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." -msgstr "" +msgstr "SQM çıktısının sistem günlüğü ayrıntısı." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" -msgstr "" +msgstr "Bağlantı katmanı seçimi:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" -msgstr "" +msgstr "Bağlantı katmanı uyarlama tekniği; yalnızca test için" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "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> ile; trafik şekillendirme, " +"daha iyi sıkıştırma (Adil Kuyruklama), aktif kuyruk uzunluğu yönetimi (AQM) " +"ve bir ağ arayüzünü önceliklendirme gibi işlemler yapabilirsiniz." -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" -msgstr "" +msgstr "varsayılan" diff --git a/applications/luci-app-sqm/po/uk/sqm.po b/applications/luci-app-sqm/po/uk/sqm.po index 7ac73aac9..81444b47a 100644 --- a/applications/luci-app-sqm/po/uk/sqm.po +++ b/applications/luci-app-sqm/po/uk/sqm.po @@ -11,44 +11,44 @@ msgstr "" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -57,144 +57,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "Назва інтерфейсу" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/vi/sqm.po b/applications/luci-app-sqm/po/vi/sqm.po index 339c1013c..14e07e035 100644 --- a/applications/luci-app-sqm/po/vi/sqm.po +++ b/applications/luci-app-sqm/po/vi/sqm.po @@ -4,44 +4,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -50,144 +50,143 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "" diff --git a/applications/luci-app-sqm/po/zh_Hans/sqm.po b/applications/luci-app-sqm/po/zh_Hans/sqm.po index 3ba05da9a..6ce2be3b9 100644 --- a/applications/luci-app-sqm/po/zh_Hans/sqm.po +++ b/applications/luci-app-sqm/po/zh_Hans/sqm.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-11 07:51+0000\n" +"PO-Revision-Date: 2020-10-23 20:50+0000\n" "Last-Translator: 01230 <4585006@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationssqm/zh_Hans/>\n" @@ -8,134 +8,134 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.3.1\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "传递到出站队列规则的高级选项字符串,没有错误检查,请谨慎使用。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "传递到入站队列规则的高级选项字符串,没有错误检查,请谨慎使用。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "基本设置" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." -msgstr "创建日志文件(/var/run/sqm/${Interface_name}.[start|stop]-sqm.log)。" +msgstr "创建日志文件(/var/run/sqm/${Interface_name}.[start|stop]-sqm.log)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" -msgstr "下载速度(kbit/s)(0-无限制):" +msgstr "下载速度(kbit/s)(0-无限制)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." -msgstr "启用SQM。" +msgstr "启用SQM" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" -msgstr "入站数据包的显式拥塞通知(ECN)状态:" +msgstr "入站数据包的显式拥塞通知(ECN)状态" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." -msgstr "出站数据包的显式拥塞通知(ECN)状态。" +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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." -msgstr "出站队列严格限制,默认留空。" +msgstr "出站队列严格限制(默认留空)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." -msgstr "入站队列严格限制,默认留空。" +msgstr "入站队列严格限制(默认留空)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" -msgstr "忽略入站DSCP:" +msgstr "忽略入站DSCP" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "接口名称" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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];留空为自动选择,默认为列队规则预" -"设值。" +"出站延迟目标(例如 5ms [单位: s, ms, 或 us];留空为自动选择,默认为列队规则预" +"设值)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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];留空为自动选择,默认为列队规则预" -"设值。" +"入站延迟目标(例如 5ms [单位: s, ms, 或 us];留空为自动选择,默认为列队规则预" +"设值)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "链路层适应" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" -msgstr "大小和速率计算的最大尺寸,tcMTU(byte); 需要 >= 接口MTU + 开销:" +msgstr "大小和速率计算的最大尺寸,tcMTU(byte); 需要 >= 接口MTU + 开销" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "最小数据包大小,MPU(byte); 在以太网中需要 >0 :" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" -msgstr "大小/速率表中的条目数,TSIZE; 对于ATM选择TSIZE =(tcMTU + 1 ) / 16:" +msgstr "大小/速率表中的条目数,TSIZE; 对于ATM选择TSIZE =(tcMTU + 1 ) / 16" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" -msgstr "数据包开销(byte):" +msgstr "数据包开销(byte)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "列队规则" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "队列设置脚本" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "队列" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 msgid "" "Queuing disciplines useable on this system. After installing a new qdisc, " "you need to restart the router to see updates!" -msgstr "安装新的队列规则后,需要重启路由器!" +msgstr "队列规则(需要重启路由器)" -#: applications/luci-app-sqm/luasrc/controller/sqm.lua:24 +#: 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/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 msgid "" "Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " "options will only be used as long as this box is checked." @@ -143,27 +143,27 @@ msgstr "" "显示高级链路选项,(仅在MTU> 1500时才需要)。 只有选中此框时,才会使用高级选" "项。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." -msgstr "显示使用高级链路选项,只有选中此框时,才会使用高级选项。" +msgstr "高级选项" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." -msgstr "选中该复选框显示危险配置。" +msgstr "危险配置" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "智能队列管理" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" -msgstr "入站数据包压缩DSCP:" +msgstr "入站数据包压缩DSCP" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 " @@ -172,38 +172,37 @@ msgstr "" "你刚刚开启了SQM随机启动功能,如果你不希望SQM随机启动,可以在系统启动菜单下手" "动禁用。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" -msgstr "上传速度(kbit/s)(0-无限制):" +msgstr "上传速度(kbit/s)(0-无限制)" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." -msgstr "日志等级。" +msgstr "日志等级" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "链路层:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "使用哪个链路适应机制; 仅用于测试" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "traffic shaping, better mixing (Fair Queueing), active queue length " "management (AQM) and prioritisation on one network interface." msgstr "" -"使用 <abbr title=\\\"智能列队管理\\\">SQM</abbr> 你可以启用流量整形,更好的混" -"合(公平列队)主动列队管理(AQM) 并设置网络接口优先级。" - -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +"使用 <abbr title=\"Smart Queue Management\">SQM</abbr> 你可以启用流量整形,更" +"好的混合(公平列队)主动列队管理(AQM) 并设置网络接口优先级。" + +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "默认" diff --git a/applications/luci-app-sqm/po/zh_Hant/sqm.po b/applications/luci-app-sqm/po/zh_Hant/sqm.po index 73b3f25f9..d1a694135 100644 --- a/applications/luci-app-sqm/po/zh_Hant/sqm.po +++ b/applications/luci-app-sqm/po/zh_Hant/sqm.po @@ -10,44 +10,44 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:165 msgid "" "Advanced option string to pass to the egress queueing disciplines; no error " "checking, use very carefully." msgstr "傳遞到出站佇列規則的進階選項字串,沒有錯誤檢查,請謹慎使用。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:202 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:162 msgid "" "Advanced option string to pass to the ingress queueing disciplines; no error " "checking, use very carefully." msgstr "傳遞到入站佇列規則的進階選項字串,沒有錯誤檢查,請謹慎使用。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:33 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:54 msgid "Basic Settings" msgstr "基本設定" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:82 msgid "" "Create log file for this SQM instance under /var/run/sqm/${Interface_name}." "[start|stop]-sqm.log." msgstr "建立日誌檔案 (/var/run/sqm/${Interface_name}.[start|stop]-sqm.log)。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:80 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74 msgid "" "Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " "shaping:" msgstr "下載速度 (kbit/s) (0-無限制):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:60 msgid "Enable this SQM instance." msgstr "啟用 SQM。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:130 msgid "" "Explicit congestion notification (ECN) status on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136 msgid "" "Explicit congestion notification (ECN) status on outbound packets (egress)." msgstr "" @@ -56,146 +56,145 @@ msgstr "" msgid "Grant UCI access for luci-app-sqm" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:150 msgid "Hard limit on egress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:146 msgid "Hard limit on ingress queues; leave empty for default." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:124 msgid "Ignore DSCP on ingress:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71 msgid "Interface name" msgstr "介面名稱" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:158 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:190 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:35 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:56 msgid "Link Layer Adaptation" msgstr "連結層適應" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:185 msgid "" "Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " "interface MTU + overhead:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:195 msgid "" "Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:238 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:190 msgid "" "Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " "+ 1) / 16:" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:175 msgid "Per Packet Overhead (byte):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:55 msgid "Queue Discipline" msgstr "佇列規則" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:102 msgid "Queue setup script" msgstr "佇列設定指令碼" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:53 msgid "Queues" msgstr "佇列" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:94 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/luasrc/controller/sqm.lua:24 +#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3 msgid "SQM QoS" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:181 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/luasrc/model/cbi/sqm.lua:139 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:115 msgid "" "Show and Use Advanced Configuration. Advanced options will only be used as " "long as this box is checked." msgstr "顯示使用進階選項,只有選取此選取框時,才會使用進階選項。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142 msgid "" "Show and Use Dangerous Configuration. Dangerous options will only be used as " "long as this box is checked." msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:46 msgid "Smart Queue Management" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:118 msgid "Squash DSCP on inbound packets (ingress):" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65 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 "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:84 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78 msgid "" "Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " "shaping:" msgstr "上傳速度 (kbit/s) (0-無限制):" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:85 msgid "Verbosity of SQM's output into the system log." msgstr "日誌等級。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:169 msgid "Which link layer to account for:" msgstr "連結層:" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:200 msgid "Which linklayer adaptation mechanism to use; for testing only" msgstr "" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:47 msgid "" "With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable " "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) 並設定網路介面優先順序。" +"使用 <abbr title=\"Smart Queue Management\">SQM</abbr> 您可以啟用流量整形,更" +"好的混合 (公平佇列),主動佇列管理 (AQM) 並設定網路介面優先順序。" -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:96 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:109 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:158 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:165 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:212 -#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:253 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:131 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:137 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:170 +#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:201 msgid "default" msgstr "預設" diff --git a/applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json b/applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json new file mode 100644 index 000000000..6c5ff4fa6 --- /dev/null +++ b/applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json @@ -0,0 +1,13 @@ +{ + "admin/network/sqm": { + "title": "SQM QoS", + "order": 59, + "action": { + "type": "view", + "path": "network/sqm" + }, + "depends": { + "acl": [ "luci-app-sqm" ] + } + } +} diff --git a/applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json b/applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json index 583a54ae5..2b56b1fc7 100644 --- a/applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json +++ b/applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json @@ -2,7 +2,15 @@ "luci-app-sqm": { "description": "Grant UCI access for luci-app-sqm", "read": { - "uci": [ "sqm" ] + "file": { + "/var/run/sqm/available_qdiscs": [ "list" ], + "/usr/lib/sqm/*.qos.help": [ "read" ] + }, + "uci": [ "sqm" ], + "ubus": { + "file": [ "read", "list" ], + "luci": [ "setInitAction" ] + } }, "write": { "uci": [ "sqm" ] |