diff options
Diffstat (limited to 'applications/luci-app-sqm')
34 files changed, 6094 insertions, 0 deletions
diff --git a/applications/luci-app-sqm/Makefile b/applications/luci-app-sqm/Makefile new file mode 100644 index 0000000000..77c0f8d2e5 --- /dev/null +++ b/applications/luci-app-sqm/Makefile @@ -0,0 +1,19 @@ +# This is free software, licensed under the Apache License, Version 2.0 . +# + +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:=7 + +PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk> + +LUCI_DEPENDS:=+luci-compat +sqm-scripts +LUCI_PKGARCH:=all + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-sqm/luasrc/controller/sqm.lua b/applications/luci-app-sqm/luasrc/controller/sqm.lua new file mode 100644 index 0000000000..10e5fdbe6e --- /dev/null +++ b/applications/luci-app-sqm/luasrc/controller/sqm.lua @@ -0,0 +1,26 @@ +--[[ +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 +end diff --git a/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua b/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua new file mode 100644 index 0000000000..f16b4e6ab3 --- /dev/null +++ b/applications/luci-app-sqm/luasrc/model/cbi/sqm.lua @@ -0,0 +1,263 @@ +--[[ +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 = "/tmp/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/bg/sqm.po b/applications/luci-app-sqm/po/bg/sqm.po new file mode 100644 index 0000000000..b68744c5f4 --- /dev/null +++ b/applications/luci-app-sqm/po/bg/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: bg\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/ca/sqm.po b/applications/luci-app-sqm/po/ca/sqm.po new file mode 100644 index 0000000000..23644a46f8 --- /dev/null +++ b/applications/luci-app-sqm/po/ca/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: ca\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/cs/sqm.po b/applications/luci-app-sqm/po/cs/sqm.po new file mode 100644 index 0000000000..2995aba0ef --- /dev/null +++ b/applications/luci-app-sqm/po/cs/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: cs\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/de/sqm.po b/applications/luci-app-sqm/po/de/sqm.po new file mode 100644 index 0000000000..8044485dd4 --- /dev/null +++ b/applications/luci-app-sqm/po/de/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: de\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/el/sqm.po b/applications/luci-app-sqm/po/el/sqm.po new file mode 100644 index 0000000000..0753926ab9 --- /dev/null +++ b/applications/luci-app-sqm/po/el/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: el\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/en/sqm.po b/applications/luci-app-sqm/po/en/sqm.po new file mode 100644 index 0000000000..4190d1d98d --- /dev/null +++ b/applications/luci-app-sqm/po/en/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: en\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/es/sqm.po b/applications/luci-app-sqm/po/es/sqm.po new file mode 100644 index 0000000000..e97825cc5e --- /dev/null +++ b/applications/luci-app-sqm/po/es/sqm.po @@ -0,0 +1,235 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-05 00:47+0000\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssqm/es/>\n" +"Language: es\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.0-dev\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +msgid "" +"Advanced option string to pass to the egress queueing disciplines; no error " +"checking, use very carefully." +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 +msgid "" +"Advanced option string to pass to the ingress queueing disciplines; no error " +"checking, use very carefully." +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 +msgid "Basic Settings" +msgstr "Configuración básica" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +msgid "" +"Create log file for this SQM instance under /var/run/sqm/${Interface_name}." +"[start|stop]-sqm.log." +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 +msgid "" +"Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +"shaping:" +msgstr "" +"La velocidad de descarga (kbit/s) (ingreso) se establece en 0 para " +"desactivar selectivamente la configuración de ingreso:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +msgid "Enable this SQM instance." +msgstr "Activar esta instancia de SQM." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +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 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" +"Estado explícito de notificación de congestión (ECN) en paquetes salientes " +"(salida)." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +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 +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 +msgid "Ignore DSCP on ingress:" +msgstr "Ignorar DSCP en ingreso:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "Nombre de interfaz" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 "" +"Objetivo de latencia para la salida, p.e. 5ms [unidades: s, ms o us]; 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:190 +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 "" +"Objetivo de latencia para la entrada, p.e. 5 ms [unidades: s, ms o us]; " +"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 +msgid "Link Layer Adaptation" +msgstr "Adaptación de capa de enlace" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +msgid "" +"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +"interface MTU + overhead:" +msgstr "" +"Tamaño máximo para cálculos de tamaño y velocidad, tcMTU (byte); necesita " +"ser >= interfaz MTU + gastos generales:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +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 +msgid "" +"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " +"+ 1) / 16:" +msgstr "" +"Número de entradas en tablas de tamaño/tasa, TSIZE; para ATM, elija TSIZE = (" +"tcMTU + 1) / 16:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +msgid "Per Packet Overhead (byte):" +msgstr "Por paquete de arriba (byte):" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "Disciplina de cola" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "Script de configuración de cola" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "Colas" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +msgid "" +"Queuing disciplines useable on this system. After installing a new qdisc, " +"you need to restart the router to see updates!" +msgstr "" +"Disciplinas de colas utilizables en este sistema. Después de instalar un " +"nuevo qdisc, ¡debe reiniciar el enrutador para ver las actualizaciones!" + +#: applications/luci-app-sqm/luasrc/controller/sqm.lua:24 +msgid "SQM QoS" +msgstr "SQM QoS" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +msgid "" +"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +"options will only be used as long as this box is checked." +msgstr "" +"Mostrar opciones avanzadas de Linklayer (solo es necesario si MTU > 1500). " +"Las opciones avanzadas solo se utilizarán mientras esta casilla esté marcada." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:139 +msgid "" +"Show and Use Advanced Configuration. Advanced options will only be used as " +"long as this box is checked." +msgstr "" +"Mostrar y usar la Configuración avanzada. Las opciones avanzadas solo se " +"utilizarán mientras esta casilla esté marcada." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +msgid "" +"Show and Use Dangerous Configuration. Dangerous options will only be used as " +"long as this box is checked." +msgstr "" +"Mostrar y usar la Configuración Peligrosa. Las opciones peligrosas sólo se " +"utilizarán mientras esté marcada esta casilla." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +msgid "Smart Queue Management" +msgstr "Gestión inteligente de colas" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "Aplastar DSCP en paquetes entrantes (ingreso):" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 "" +"La GUI de SQM acaba de activar el initscript de sqm en su nombre. Recuerde " +"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 +msgid "" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +"shaping:" +msgstr "" +"Velocidad de carga (kbit/s) (salida) establecida en 0 para desactivar " +"selectivamente la configuración de salida:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +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 +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 +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 +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 "" +"Con <abbr title=\"Smart Queue Management\">SQM</abbr> puede activar la " +"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 +msgid "default" +msgstr "predeterminado" diff --git a/applications/luci-app-sqm/po/fr/sqm.po b/applications/luci-app-sqm/po/fr/sqm.po new file mode 100644 index 0000000000..8690254bf4 --- /dev/null +++ b/applications/luci-app-sqm/po/fr/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: fr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/he/sqm.po b/applications/luci-app-sqm/po/he/sqm.po new file mode 100644 index 0000000000..f3b9ebfe8e --- /dev/null +++ b/applications/luci-app-sqm/po/he/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: he\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/hi/sqm.po b/applications/luci-app-sqm/po/hi/sqm.po new file mode 100644 index 0000000000..8352680042 --- /dev/null +++ b/applications/luci-app-sqm/po/hi/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: hi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/hu/sqm.po b/applications/luci-app-sqm/po/hu/sqm.po new file mode 100644 index 0000000000..119873bbe0 --- /dev/null +++ b/applications/luci-app-sqm/po/hu/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: hu\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/it/sqm.po b/applications/luci-app-sqm/po/it/sqm.po new file mode 100644 index 0000000000..bec9864481 --- /dev/null +++ b/applications/luci-app-sqm/po/it/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: it\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/ja/sqm.po b/applications/luci-app-sqm/po/ja/sqm.po new file mode 100644 index 0000000000..1de2f4c75d --- /dev/null +++ b/applications/luci-app-sqm/po/ja/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: ja\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/ko/sqm.po b/applications/luci-app-sqm/po/ko/sqm.po new file mode 100644 index 0000000000..cff35780bd --- /dev/null +++ b/applications/luci-app-sqm/po/ko/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: ko\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/mr/sqm.po b/applications/luci-app-sqm/po/mr/sqm.po new file mode 100644 index 0000000000..38e21ef319 --- /dev/null +++ b/applications/luci-app-sqm/po/mr/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: mr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/ms/sqm.po b/applications/luci-app-sqm/po/ms/sqm.po new file mode 100644 index 0000000000..62659cf56a --- /dev/null +++ b/applications/luci-app-sqm/po/ms/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: ms\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +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 new file mode 100644 index 0000000000..612818af7c --- /dev/null +++ b/applications/luci-app-sqm/po/nb_NO/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: nb_NO\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/pl/sqm.po b/applications/luci-app-sqm/po/pl/sqm.po new file mode 100644 index 0000000000..da03c57ba3 --- /dev/null +++ b/applications/luci-app-sqm/po/pl/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: pl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/pt/sqm.po b/applications/luci-app-sqm/po/pt/sqm.po new file mode 100644 index 0000000000..e014485664 --- /dev/null +++ b/applications/luci-app-sqm/po/pt/sqm.po @@ -0,0 +1,195 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-05 16:31+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssqm/pt/>\n" +"Language: pt\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.0-dev\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "Configurações Básicas" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/pt_BR/sqm.po b/applications/luci-app-sqm/po/pt_BR/sqm.po new file mode 100644 index 0000000000..0d3650e904 --- /dev/null +++ b/applications/luci-app-sqm/po/pt_BR/sqm.po @@ -0,0 +1,243 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-05 16:31+0000\n" +"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" +"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationssqm/pt_BR/>\n" +"Language: pt_BR\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.0-dev\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +msgid "" +"Advanced option string to pass to the egress queueing disciplines; no error " +"checking, use very carefully." +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 +msgid "" +"Advanced option string to pass to the ingress queueing disciplines; no error " +"checking, use very carefully." +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 +msgid "Basic Settings" +msgstr "Configurações Básicas" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +msgid "" +"Create log file for this SQM instance under /var/run/sqm/${Interface_name}." +"[start|stop]-sqm.log." +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 +msgid "" +"Download speed (kbit/s) (ingress) set to 0 to selectively disable ingress " +"shaping:" +msgstr "" +"Velocidade de Download (kbits/s) (entrada), defina como 0 para desativar " +"seletivamente a modelagem do tráfico de entrada:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:40 +msgid "Enable this SQM instance." +msgstr "Ative esta instância do SQM." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +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 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" +"Status de notificação explicita de congestionamento (ECN) durante a saída de " +"pacotes (egress)." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +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 +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 +msgid "Ignore DSCP on ingress:" +msgstr "Ignore o DSCP na entrada:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "Nome da Interface" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 "" +"Meta de latência para saída, por exemplo, 5ms [unidades: s, ms ou nós]; " +"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 +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 "" +"Meta de latência para entrada, por exemplo, 5ms [unidades: s, ms ou nós]; " +"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 +msgid "Link Layer Adaptation" +msgstr "Adaptação da Camada do Link de Ligação" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +msgid "" +"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= " +"interface MTU + overhead:" +msgstr "" +"Tamanho máximo para realizar os cálculos de tamanho e taxa, tcMTU (byte); " +"precisa ser >= interface MTU + sobrecarga:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:245 +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 +msgid "" +"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU " +"+ 1) / 16:" +msgstr "" +"Quantidade de entradas de tamanho/taxa nas tabelas, TSIZE; para o ATM, " +"escolha TSIZE = (tcMTU + 1) / 16:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:217 +msgid "Per Packet Overhead (byte):" +msgstr "Por Sobrecarga de Pacote (byte):" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "Disciplina da Fila" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "Script de configuração da fila" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "Filas de espera" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +msgid "" +"Queuing disciplines useable on this system. After installing a new qdisc, " +"you need to restart the router to see updates!" +msgstr "" +"As disciplinas de enfileiramento utilizáveis neste sistema. Depois de " +"instalar um novo qdisc, você precisa reiniciar o roteador para ver as " +"atualizações!" + +#: applications/luci-app-sqm/luasrc/controller/sqm.lua:24 +msgid "SQM QoS" +msgstr "SQM QoS" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +msgid "" +"Show Advanced Linklayer Options, (only needed if MTU > 1500). Advanced " +"options will only be used as long as this box is checked." +msgstr "" +"Mostrar as Opções Avançadas da Camada do Link ( só é necessário caso MTU > " +"1500). As opções avançadas só serão usadas quando esta caixa for selecionada." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:139 +msgid "" +"Show and Use Advanced Configuration. Advanced options will only be used as " +"long as this box is checked." +msgstr "" +"Exibir e Usar a Configuração Avançada. As opções avançadas só serão usadas " +"quando esta caixa for selecionada." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:171 +msgid "" +"Show and Use Dangerous Configuration. Dangerous options will only be used as " +"long as this box is checked." +msgstr "" +"Mostrar e Usar as Configurações Perigosas. As opções perigosas só serão " +"usadas quando esta caixa for selecionada." + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:25 +msgid "Smart Queue Management" +msgstr "Gestão Inteligente das Filas de Espera" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +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 +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 "" +"O GUI SQM acabou de ativar o initscript sqm em seu nome. Lembre-se de " +"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 +msgid "" +"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress " +"shaping:" +msgstr "" +"Velocidade de upload (kbit/s) (saída), defina como 0 para desativar " +"seletivamente a modelagem do tráfico de saída:" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:92 +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 +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 +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 +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 "" +"Com a <abbr title=\"Gestão Inteligente das Filas de Espera\">SQM</abbr> você " +"pode habilitar a modelagem de tráfego, ter uma melhor mistura (Fila Justa), " +"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 +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 new file mode 100644 index 0000000000..cf73e40937 --- /dev/null +++ b/applications/luci-app-sqm/po/ro/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: ro\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/ru/sqm.po b/applications/luci-app-sqm/po/ru/sqm.po new file mode 100644 index 0000000000..a89f6b34cd --- /dev/null +++ b/applications/luci-app-sqm/po/ru/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: ru\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/sk/sqm.po b/applications/luci-app-sqm/po/sk/sqm.po new file mode 100644 index 0000000000..e1bed03772 --- /dev/null +++ b/applications/luci-app-sqm/po/sk/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: sk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/sv/sqm.po b/applications/luci-app-sqm/po/sv/sqm.po new file mode 100644 index 0000000000..7b8873490b --- /dev/null +++ b/applications/luci-app-sqm/po/sv/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: sv\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/templates/sqm.pot b/applications/luci-app-sqm/po/templates/sqm.pot new file mode 100644 index 0000000000..e00337d2f4 --- /dev/null +++ b/applications/luci-app-sqm/po/templates/sqm.pot @@ -0,0 +1,186 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/tr/sqm.po b/applications/luci-app-sqm/po/tr/sqm.po new file mode 100644 index 0000000000..77e92129ab --- /dev/null +++ b/applications/luci-app-sqm/po/tr/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: tr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/uk/sqm.po b/applications/luci-app-sqm/po/uk/sqm.po new file mode 100644 index 0000000000..d907edde84 --- /dev/null +++ b/applications/luci-app-sqm/po/uk/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: uk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/po/vi/sqm.po b/applications/luci-app-sqm/po/vi/sqm.po new file mode 100644 index 0000000000..ad592abff8 --- /dev/null +++ b/applications/luci-app-sqm/po/vi/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: vi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +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 new file mode 100644 index 0000000000..3d1b80472c --- /dev/null +++ b/applications/luci-app-sqm/po/zh_Hans/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: zh_Hans\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +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 new file mode 100644 index 0000000000..7d961e1b29 --- /dev/null +++ b/applications/luci-app-sqm/po/zh_Hant/sqm.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Language: zh_Hant\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:206 +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 +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 +msgid "Basic Settings" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:88 +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 +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 +msgid "Enable this SQM instance." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:157 +msgid "" +"Explicit congestion notification (ECN) status on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:164 +msgid "" +"Explicit congestion notification (ECN) status on outbound packets (egress)." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:183 +msgid "Hard limit on egress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:176 +msgid "Hard limit on ingress queues; leave empty for default." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:150 +msgid "Ignore DSCP on ingress:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:64 +msgid "Interface name" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:195 +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 +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 +msgid "Link Layer Adaptation" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:231 +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 +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 +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 +msgid "Per Packet Overhead (byte):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:34 +msgid "Queue Discipline" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:122 +msgid "Queue setup script" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:32 +msgid "Queues" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:108 +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 +msgid "SQM QoS" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:226 +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 +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 +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 +msgid "Smart Queue Management" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:143 +msgid "Squash DSCP on inbound packets (ingress):" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:54 +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 +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 +msgid "Verbosity of SQM's output into the system log." +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:211 +msgid "Which link layer to account for:" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:252 +msgid "Which linklayer adaptation mechanism to use; for testing only" +msgstr "" + +#: applications/luci-app-sqm/luasrc/model/cbi/sqm.lua:26 +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 +msgid "default" +msgstr "" diff --git a/applications/luci-app-sqm/root/etc/uci-defaults/50-luci-sqm b/applications/luci-app-sqm/root/etc/uci-defaults/50-luci-sqm new file mode 100755 index 0000000000..a3046b2a0f --- /dev/null +++ b/applications/luci-app-sqm/root/etc/uci-defaults/50-luci-sqm @@ -0,0 +1,13 @@ +#!/bin/sh + +uci -q batch <<-EOF >/dev/null + delete ucitrack.@sqm[-1] + add ucitrack sqm + set ucitrack.@sqm[-1].init=sqm + del_list ucitrack.@firewall[0].affects=sqm + add_list ucitrack.@firewall[0].affects=sqm + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 |