luci-app-sqm: add from openwrt luci

* 03367675bf/applications/luci-app-sqm

Signed-off-by: sbwml <admin@cooluc.com>
This commit is contained in:
sbwml 2025-05-27 19:06:04 +08:00
commit 1f926d3e21
41 changed files with 11883 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
# This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
PKG_LICENSE:=Apache-2.0
LUCI_TITLE:=LuCI Support for SQM Scripts
LUCI_DESCRIPTION:=Luci interface for the SQM scripts queue management package
LUCI_DEPENDS:=+luci-base +sqm-scripts
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature

View File

@ -0,0 +1,228 @@
'use strict';
'require fs';
'require ui';
'require rpc';
'require uci';
'require view';
'require form';
'require tools.widgets as widgets';
return view.extend({
handleGetHelpText: function(script_name, tbl) {
return fs.read("/usr/lib/sqm/" + script_name + ".help").then(function (text) {
if (text)
return [script_name, text];
});
},
handleEnableSQM: rpc.declare({
object: 'luci',
method: 'setInitAction',
params: [ 'sqm', 'enable' ],
expect: { result: false }
}),
load: function() {
return Promise.all([
L.resolveDefault(fs.list('/var/run/sqm/available_qdiscs'), []),
L.resolveDefault(fs.list('/usr/lib/sqm'), []).then(L.bind(function(scripts) {
var tasks = [], scriptHelpTbl = {};
for (var i = 0; i < scripts.length; i++)
if (scripts[i].name.search(/\.qos$/) != -1)
tasks.push(L.resolveDefault(this.handleGetHelpText(scripts[i].name, scriptHelpTbl), [scripts[i].name, null]));
return Promise.all(tasks);
}, this)),
uci.load('sqm')
]);
},
render: function(data) {
var qdiscs = data[0],
scripts = data[1];
if (qdiscs.length === 0) {
ui.addNotification(null,
E('div', { 'class': 'left' }, [
E('p', _("The SQM service seems to be disabled. Please use the button below to activate this service.")),
E('button', {
'class': 'btn cbi-button-active',
'click': ui.createHandlerFn(this, function() {
return fs.exec('/etc/init.d/sqm', ['enable']).then(function() {
return fs.exec('/etc/init.d/sqm', ['start']);
}).then(function() {
location.reload();
});
})
}, _('Enable SQM'))
]));
}
let m, s, o;
m = new form.Map('sqm', _('Smart Queue Management'));
m.description = _("With <abbr title=\"Smart Queue Management\">SQM</abbr> you " +
"can enable traffic shaping, better mixing (Fair Queueing)," +
" active queue length management (AQM) " +
" and prioritisation on one " +
"network interface.");
s = m.section(form.TypedSection, 'queue', _('Queues'));
s.tab("tab_basic", _("Basic Settings"));
s.tab("tab_qdisc", _("Queue Discipline"));
s.tab("tab_linklayer", _("Link Layer Adaptation"));
s.anonymous = true;
s.addremove = true;
o = s.taboption("tab_basic", form.Flag, "enabled", _("Enable this SQM instance."));
o.rmempty = false;
o.write = L.bind(function(section, value) {
if (value == "1") {
this.handleEnableSQM();
ui.addNotification(null, E('p', _("The SQM GUI has just enabled the sqm initscript on your behalf. Remember to disable the sqm initscript manually under System Startup menu in case this change was not wished for.")));
}
return uci.set("sqm", section, "enabled", value);
}, this);
o = s.taboption("tab_basic", widgets.DeviceSelect, "interface", _("Interface name"));
o.rmempty = false;
o = s.taboption("tab_basic", form.Value, "download", _("Download speed (ingress)"), _("Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping selectively"));
o.datatype = "and(uinteger,min(0))";
o.rmempty = false;
o = s.taboption("tab_basic", form.Value, "upload", _("Upload speed (egress)"), _("Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"));
o.datatype = "and(uinteger,min(0))";
o.rmempty = false;
o = s.taboption("tab_basic", form.Flag, "debug_logging", _("Enable debug logging"), _("Create log file for this SQM instance under /var/run/sqm/${Interface_name}.[start|stop]-sqm.log."));
o.rmempty = false;
o = s.taboption("tab_basic", form.ListValue, "verbosity", _("Log verbosity"), _("Verbosity of SQM's output into the system log."));
o.value("0", "silent");
o.value("1", "error");
o.value("2", "warning");
o.value("5", "info ("+_("default")+")");
o.value("8", "debug");
o.value("10", "trace");
o.default = "5";
o = s.taboption("tab_qdisc", form.ListValue, "qdisc", _("Queueing discipline"), _("Lists queuing disciplines useable on this system. After installing a new qdisc, you need to restart the router to see updates!"));
for (var i=0; i < qdiscs.length; i++) {
o.value(qdiscs[i].name);
}
o.default = "cake";
o.rmempty = false;
var qos_desc = "";
o = s.taboption("tab_qdisc", form.ListValue, "script", _("Queue setup script"));
for (i = 0; i < scripts.length; i++) {
o.value(scripts[i][0]);
qos_desc += "<p><b>" + scripts[i][0] + ":</b><br />";
if (scripts[i][1])
qos_desc += scripts[i][1] + "</p>";
else
qos_desc += "No help text</p>";
}
o.default = "piece_of_cake.qos";
o.rmempty = false;
o.description = qos_desc;
o = s.taboption("tab_qdisc", form.Flag, "qdisc_advanced", _("Advanced Configuration"), _("Advanced options will only be used as long as this box is checked."));
o.default = false;
o = s.taboption("tab_qdisc", form.ListValue, "squash_dscp", _("Squash DSCP (ingress)"), _("Squash DSCP markings on inbound packets"));
o.value("1", "SQUASH");
o.value("0", "DO NOT SQUASH");
o.default = "1";
o.depends("qdisc_advanced", "1");
o = s.taboption("tab_qdisc", form.ListValue, "squash_ingress", _("Ignore DSCP (ingress)"), _("Ignore DSCP markings on inbound packets"));
o.value("1", "Ignore");
o.value("0", "Allow");
o.default = "1";
o.depends("qdisc_advanced", "1");
o = s.taboption("tab_qdisc", form.ListValue, "ingress_ecn", _("ECN (ingress)"), _("Explicit congestion notification (ECN) status on inbound packets"));
o.value("ECN", "ECN (" + _("default") + ")");
o.value("NOECN");
o.default = "ECN";
o.depends("qdisc_advanced", "1");
o = s.taboption("tab_qdisc", form.ListValue, "egress_ecn", _("ECN (egress)"), _("Explicit congestion notification (ECN) status on outbound packets"));
o.value("NOECN", "NOECN (" + _("default") + ")");
o.value("ECN");
o.default = "NOECN";
o.depends("qdisc_advanced", "1");
o = s.taboption("tab_qdisc", form.Flag, "qdisc_really_really_advanced", _("Dangerous Configuration"), _("Dangerous options will only be used as long as this box is checked."));
o.default = false
o.depends("qdisc_advanced", "1");
o = s.taboption("tab_qdisc", form.Value, "ilimit", _("Hard queue limit (ingress)"), _("Hard limit on ingress queues; leave empty for default."));
o.datatype = "and(uinteger,min(0))";
o.depends("qdisc_really_really_advanced", "1");
o = s.taboption("tab_qdisc", form.Value, "elimit", _("Hard queue limit (egress)"), _("Hard limit on egress queues; leave empty for default."));
o.datatype = "and(uinteger,min(0))";
o.depends("qdisc_really_really_advanced", "1");
o = s.taboption("tab_qdisc", form.Value, "itarget", _("Latency target (ingress)"), _("Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default."));
o.datatype = "string";
o.depends("qdisc_really_really_advanced", "1");
o = s.taboption("tab_qdisc", form.Value, "etarget", _("Latency target (egress)"), _("Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for automatic selection, put in the word default for the qdisc's default."));
o.datatype = "string";
o.depends("qdisc_really_really_advanced", "1");
o = s.taboption("tab_qdisc", form.Value, "iqdisc_opts", _("Qdisc options (ingress)"), _("Advanced option string to pass to the ingress queueing disciplines; no error checking, use very carefully."));
o.depends("qdisc_really_really_advanced", "1");
o = s.taboption("tab_qdisc", form.Value, "eqdisc_opts", _("Qdisc options (egress)"), _("Advanced option string to pass to the egress queueing disciplines; no error checking, use very carefully."));
o.depends("qdisc_really_really_advanced", "1");
// LINKLAYER
o = s.taboption("tab_linklayer", form.ListValue, "linklayer", _("Link layer"), _("Which link layer technology to account for"));
o.value("none", "none (" + _("default") + ")");
o.value("ethernet", "Ethernet with overhead: select for e.g. VDSL2.");
o.value("atm", "ATM: select for e.g. ADSL1, ADSL2, ADSL2+.");
o.default = "none";
o = s.taboption("tab_linklayer", form.Value, "overhead", _("Per Packet Overhead (bytes)"));
o.datatype = "and(integer,min(-1500))";
o.default = 0
o.depends("linklayer", "ethernet");
o.depends("linklayer", "atm");
o = s.taboption("tab_linklayer", form.Flag, "linklayer_advanced", _("Advanced Linklayer Options"), _("Advanced options will only be used as long as this box is checked (only needed if MTU > 1500)."));
o.depends("linklayer", "ethernet");
o.depends("linklayer", "atm");
o = s.taboption("tab_linklayer", form.Value, "tcMTU", _("Maximum packet size"), _("Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= interface MTU + overhead"));
o.datatype = "and(uinteger,min(0))";
o.default = 2047
o.depends("linklayer_advanced", "1");
o = s.taboption("tab_linklayer", form.Value, "tcTSIZE", _("Rate table size"), _("Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU + 1) / 16"));
o.datatype = "and(uinteger,min(0))";
o.default = 128
o.depends("linklayer_advanced", "1");
o = s.taboption("tab_linklayer", form.Value, "tcMPU", _("Minimum packet size"), _("Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"));
o.datatype = "and(uinteger,min(0))";
o.default = 0
o.depends("linklayer_advanced", "1");
o = s.taboption("tab_linklayer", form.ListValue, "linklayer_adaptation_mechanism", _("Linklayer adaptation mechanism"), _("Which linklayer adaptation mechanism to use; for testing only"));
o.value("default", "default (" + _("default") + ")");
o.value("cake");
o.value("htb_private");
o.value("tc_stab");
o.default = "default";
o.depends("linklayer_advanced", "1");
return m.render();
}
})

296
po/ar/sqm.po Normal file
View File

@ -0,0 +1,296 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-03-07 14:36+0000\n"
"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/ar/>\n"
"Language: ar\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 4.5.1\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"سلسلة خيارات متقدمة لتمريرها إلى تخصصات الخروج قائمة انتظار; لا يوجد خطأ "
"التحقق، واستخدام بعناية فائقة."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "الإعدادات الأساسية"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "اسم الواجهة"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

301
po/bg/sqm.po Normal file
View File

@ -0,0 +1,301 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-14 10:54+0000\n"
"Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n"
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/bg/>\n"
"Language: bg\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 5.4-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Разширени Конфигурация"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Основни настройки"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Създаване на журнален файл за тази инстанция на SQM под /var/run/sqm/$"
"{Interface_name}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Активиране на SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Активиране на тази SQM инстанция."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Предоставяне на достъп на UCI за luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Твърд лимит на изходните опашки; оставете празно по подразбиране."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "Твърд лимит на входящите опашки; оставете празно по подразбиране."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Име на интерфейса"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Целева латентност за изходящ трафик, напр. 5ms [единици: s, ms или us]; "
"оставете празно за автоматичен избор, поставете думата default за използване "
"стойности по подразбиране на qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Целева латентност за входящ трафик, например 5ms [единици: s, ms или us]; "
"оставете празно за автоматичен избор, поставете думата default за стойности "
"по подразбиране на qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "по подразбиране"

293
po/bn_BD/sqm.po Normal file
View File

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-12-10 19:29+0000\n"
"Last-Translator: Debashish Das <debashishdab@gmail.com>\n"
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationssqm/bn_BD/>\n"
"Language: bn_BD\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.4-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "সাধারন সেটিংস"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

287
po/ca/sqm.po Normal file
View File

@ -0,0 +1,287 @@
msgid ""
msgstr ""
"Language: ca\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

334
po/cs/sqm.po Normal file
View File

@ -0,0 +1,334 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-05-11 19:01+0000\n"
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/cs/>\n"
"Language: cs\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
"X-Generator: Weblate 5.12-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Pokročilé nastavení"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Pokročilé předvolby linkové vrstvy"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Řetězec pokročilé předvolby který předat egress disciplínám pro fronty "
"není kontrolováno na chyby, proto používejte velmi obezřetně."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Řetězec rozšířených možností pro předání do frontových disciplín; bez "
"kontroly chyb, používejte s opatrností."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Pokročilé předvolby budou použity pouze pokud je toto zašrtnuto (potřebné "
"pouze pokud MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr "Pokročilé předvolby budou použity pouze pokud je toto zaškrtnuto."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Základní nastavení"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Vytvořit soubor záznamu událostí pro tuto SQM instanci pod /var/run/sqm/$"
"{Interface_name}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Nebezpečné nastavení"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr "Nebezpečné předvolby je možné použít pouze pokud je toto zaškrtnuto."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Rychlost příjmu (příjem)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Rychlost stahování (kbit/s) (příjem) nastavte na 0 pro selektivní vypínání "
"omezování rychlosti příchozího provozu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (odchozí)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (příchozí)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Povolit SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Zapnout zaznamenávání ladících informací"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Povolit tuto SQM instanci."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Stav výslovného oznamování zácpy (ECN) na příchozích paketech"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Stav výslovného upozornění na zácpu (ECN) na odchozích paketech"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Udělit luci-app-sqm přístup do UCI nastavování"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"Nepřekročitelný limit na odchozích frontách (pro použití výchozího "
"nevyplňujte)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Nepřekročitelný limit na příchozích frontách (pro použití výchozího "
"nevyplňujte)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Nepřekročitelný limit fronty (výstup)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Nepřekročitelný limit fronty (vstup)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignorovat DSCP (vstup)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignorovat DSCP značkování na příchozích paketech"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Název rozhraní"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Cílová latence (odchozí)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Cílová latence (příchozí)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Cílová latence pro odchozí (např. 5 ms) [jednotky: s, ms nebo us]; nechte "
"prázdné pro automatický výběr, vložte slovo 'default' pro výchozí nastavení "
"qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Cílová latence pro příchozí (např. 5 ms) [jednotky: s, ms nebo us]; nechte "
"prázdné pro automatický výběr, vložte slovo 'default' pro výchozí nastavení "
"qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Přizpůsobování linkové vrstvy"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Linková vrstva"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Mechanizmus přizpůsobování linkové vrstvy"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Vypíše disciplíny řazení do front, použitelné na tomto systému. Po instalaci "
"nového qdisc je třeba směrovač restartovat, aby byly aktualizace vidět!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Podrobnost záznamu událostí"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Nejvyšší velikost pro výpočty velikosti a rychlosti, tcMTU (bajt); je třeba, "
"aby bylo >= MTU rozhraní + režie"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Nejvyšší umožněná velikost paketu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Je třeba, aby pro tabulky velikosti ethernetu byla nejnižší velikost paketu, "
"MPU (bajt), > 0"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Nejnižší umožněná velikost paketu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Počet položek v tabulkách velikost/rychlost, TSIZE; pro ATM zvolte TSIZE = "
"(tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Režie na jednotlivý paket (bajtů)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Předvolby Qdisc (ochozí)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Předvolby Qdisc (příchozí)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Způsob obsluhy fronty"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Skript nastavení fronty"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Způsob řazení do fronty"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Fronty"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Velikost tabulky rychlosti"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Inteligentní správa fronty"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (příchozí)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Sloučit DSCP označení na příchozích paketech"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"SQM GUI na vaši žádost právě zapnulo sqm inicializační skript. Pokud toto "
"nebyla změno, kterou jste chtěli, nezapomeňte sqm inicializační skript runě "
"v nabídce Spouštění systému."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Zdá se, že služba SQM je zakázaná. Prosím použijte níže uvedené tlačítko pro "
"aktivaci této služby."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Rychlost odesílání (odesílání)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Rychlost odesílání (kbit/s) (odchozí) nastavena na 0 pro selektivní vypínání "
"omezování rychlosti odchozího"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Výřečnost výstupu ze SQM do systémového záznamu událostí."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Pro kterou technologii linkové vrstvy účtovat"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Který mechanizmus přizpůsobování linkové vrstvy použít pouze pro testovací "
"účely"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Pomocí <abbr title=\"Inteligentní správy front\">SQM</abbr> je možné "
"omezovat rychlost provozu, lépe ho souběžně odbavovat (férové řazení do "
"fronty), aktivně spravovat délku fronty (AQM) a upřednostňovat na jednom "
"síťovém rozhraní."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "výchozí"

328
po/da/sqm.po Normal file
View File

@ -0,0 +1,328 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-02-05 16:57+0000\n"
"Last-Translator: drax red <drax@outlook.dk>\n"
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/da/>\n"
"Language: da\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.16-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Avancerede indstillinger for linklayer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Avanceret indstillingsstreng, der skal sendes til egress-kø-disciplinerne; "
"ingen fejlkontrol, brug den med stor forsigtighed."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Avanceret indstillingsstreng, der skal overføres til de indgående kø-"
"discipliner; ingen fejlkontrol, brug den med stor forsigtighed."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Avancerede indstillinger anvendes kun, så længe dette felt er markeret (kun "
"nødvendigt, hvis MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Avancerede indstillinger vil kun blive brugt, så længe dette felt er "
"markeret."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Grundlæggende indstillinger"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Opret logfil for denne SQM-instans under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Farlig konfiguration"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr "Farlige indstillinger anvendes kun, så længe dette felt er markeret."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Downloadhastighed (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Downloadhastighed (kbit/s) (ingress) indstilles til 0 for selektivt at "
"deaktivere ingress shaping"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Aktiver SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Aktivér debug logning"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Aktiver denne SQM-instans."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Eksplicit overbelastningsmeddelelse (ECN) status på indgående pakker"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Eksplicit overbelastningsmeddelelse (ECN) status på udgående pakker"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Giv UCI-adgang til luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Hård grænse for egress køer; lad den være tom som standard."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "Hård grænse for ingress køer; lad den være tom som standard."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Hård køgrænse (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Hård køgrænse (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignorer DSCP (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignorer DSCP-markeringer på indgående pakker"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Interface navn"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Latency-mål (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Latency mål (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Latency-mål for egress, f.eks. 5ms [enheder: s, ms eller os]; lad det være "
"tomt for automatisk valg, indsæt ordet standard for qdisc'ens standard."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Latency-mål for ingress, f.eks. 5ms [enheder: s, ms eller os]; lad det være "
"tomt for automatisk valg, indsæt ordet standard for qdisc'ens standard."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Tilpasning af linklag"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Link layer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Linklayer tilpasning mekanisme"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Lister kødiscipliner, der kan bruges på dette system. Når du har installeret "
"en ny qdisc, skal du genstarte routeren for at se opdateringer!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Log verbositet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Maksimal Størrelse for størrelse og rateberegninger, tcMTU (byte); skal være "
">= interface MTU + overhead"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Maksimal pakkestørrelse"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Minimal pakkestørrelse, MPU (byte); skal være > 0 for ethernet størrelse "
"tabeller"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Minimum pakkestørrelse"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Antallet af poster i størrelse/rate tabeller, TSIZE; for ATM vælges TSIZE = "
"(tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Overhead pr. pakke (bytes)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Qdisc muligheder (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Qdisc muligheder (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Kø Disciplin"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Køopsætningsscript"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Kødisciplin"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Køer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Rate tabel størrelse"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Smart køstyring"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Squash DSCP-markeringer på indgående pakker"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"SQM GUI har netop aktiveret sqm initscript på dine vegne. Husk at deaktivere "
"sqm initscript manuelt under System Startup menuen, hvis denne ændring ikke "
"var ønsket."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"SQM-tjenesten ser ud til at være deaktiveret. Brug venligst knappen nedenfor "
"for at aktivere denne tjeneste."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Upload hastighed (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Upload hastighed (kbit/s) (egress) sæt til 0 til selektivt deaktivere egress "
"shaping"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Verbosity af SQM's output i systemloggen."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Hvilken link layer teknologi til at tage højde for"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Hvilken forbindelseslag tilpasningsmekanisme der skal bruges; kun til test"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Med <abbr title=\"Smart Queue Management\">SQM</abbr> kan du aktivere "
"trafikformning, bedre blanding (Fair Queueing), aktiv kølængdestyring (AQM) "
"og prioritering på én netværksgrænseflade."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "Standard"

334
po/de/sqm.po Normal file
View File

@ -0,0 +1,334 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-02-07 23:08+0000\n"
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/de/>\n"
"Language: de\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 5.10-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Erweiterte Konfiguration"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Erweiterte Optionen Verbindungsschicht (Linklayer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Erweiterte Optionszeichenkette zur Übergabe an die ausgangsseitigen "
"Warteschlangendisziplinen; keine Fehlerprüfung, sehr vorsichtig verwenden."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Erweiterte Optionszeichenkette zur Übergabe an die Eingangs-"
"Warteschlangendisziplinen; keine Fehlerprüfung, sehr vorsichtig verwenden."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Die erweiterten Optionen werden nur verwendet, wenn dieses Kästchen "
"aktiviert ist (nur erforderlich, wenn MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Die erweiterten Optionen werden nur verwendet, wenn dieses Kästchen markiert "
"ist."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Logdatei für diese SQM-Instanz unter /var/run/sqm/${Interface_name}.[start|"
"stop]-sqm.log erstellen."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Gefährliche Konfiguration"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Gefährliche Optionen werden nur verwendet, wenn dieses Feld markiert ist."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Download-Geschwindigkeit (Eingang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Download-Geschwindigkeit (kbit/s) (Eingang) auf 0 setzen, um Eingang-Shaping "
"selektiv zu deaktivieren"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (ausgehend)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (Eingang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "SQM aktivieren"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Aktiviere Debug-Protokollierung"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Diese SQM-Instanz aktivieren."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Explizite Überlastungsanzeige (ECN) bei eingehenden Paketen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Explizite Überlastungsanzeige (ECN) bei ausgehenden Paketen"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "UCI-Zugriff für luci-app-sqm erlauben"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"Harte Begrenzung der Ausgangswarteschlangen; Standardmäßig leer lassen."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Harte Begrenzung der Eingangswarteschlangen; Standardmäßig leer lassen."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Harte Warteschlangenbegrenzung (Ausgang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Harte Warteschlangenbegrenzung (Eingang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "DSCP ignorieren (Eingang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "DSCP-Markierungen auf eingehenden Paketen ignorieren"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Schnittstellenname"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Latenzziel (Ausgang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Latenzziel (Eingang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Latenzziel für Ausgangswarteschlange, z.B. 5ms [Einheit: s, ms oder us]; "
"Leer lassen für automatische Auswahl, das Wort 'default' eintragen für qdisc "
"Standard."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Latenzziel für Eingangswarteschlange, z.B. 5ms [Einheit: s, ms oder us]; "
"Leer lassen für automatische Auswahl, das Wort 'default' eintragen für qdisc "
"Standard."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Anpassung der Verbindungsschicht"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Link-Layer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Linklayer-Anpassungsmechanismus"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Listet die Warteschlangendisziplinen auf, die auf diesem System verwendet "
"werden können. Nach der Installation einer neuen qdisc müssen Sie den Router "
"neu starten, um Updates zu sehen!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Ausführlichkeit des Protokolls"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Maximale Größe für Größen- und Ratenberechnungen, tcMTU (Byte); muss >= "
"Schnittstellen-MTU + Overhead sein"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Maximale Paketgröße"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Minimale Paketgröße, MPU (Byte); muss bei Ethernet-Größentabellen > 0 sein"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Minimale Paketgröße"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Anzahl der Einträge in Größen-/Raten-Tabellen, TSIZE; für ATM wählen Sie "
"TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Overhead pro Paket (Bytes)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Qdisc-Optionen (Ausgang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Qdisc-Optionen (Eingang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Queue Discipline"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Skript zum Aufsetzen der Warteschlange"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Warteschlangendisziplin"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Warteschlangen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Größe der Ratentabelle"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Smart Queue Management"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash-DSCP (Eingang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "DSCP-Markierungen auf eingehenden Paketen unterdrücken"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"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 ""
"Die SQM-GUI hat soeben das sqm-Initskript in Ihrem Namen aktiviert. Denken "
"Sie daran, das sqm-Initscript manuell im Systemstartmenü zu deaktivieren, "
"falls diese Änderung nicht gewünscht wurde."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Der SQM-Dienst scheint deaktiviert zu sein. Bitte verwenden Sie die "
"Schaltfläche unten, um diesen Dienst zu aktivieren."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Hochladegeschwindigkeit (Ausgang)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Upload-Geschwindigkeit (kbit/s) (Ausgang) auf 0 gesetzt, um Ausgang-Shaping "
"selektiv zu deaktivieren"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Festlegen, wie ausführlich SQM ins Systemlog schreiben soll."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Welche Link-Layer-Technologie zu berücksichtigen ist"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Welcher Verbindungsschicht-Anpassungsmechanismus verwendet werden soll; nur "
"zum Testen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Mit <abbr title=\"Smart Queue Management\">SQM</abbr> können Sie Traffic "
"Shaping, besseres Mischen (Fair Queueing), aktives Queue Length Management "
"(AQM) und Priorisierung auf einer Netzwerkschnittstelle aktivieren."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "Standard"

293
po/el/sqm.po Normal file
View File

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-06-06 14:38+0000\n"
"Last-Translator: Stefanos Batsios <bouzouste@hotmail.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/el/>\n"
"Language: el\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.7-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Βασικές Ρυθμίσεις"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Χορήγηση δικαιώματος χρήσης του UCI από το luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Όνομα διεπαφής (Interface)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

333
po/es/sqm.po Normal file
View File

@ -0,0 +1,333 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-10-08 22:24+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 5.8-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Configuración avanzada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Opciones avanzadas de capa de enlace"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:180
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/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Las opciones avanzadas solo se utilizarán mientras esta casilla esté marcada "
"(solo es necesario si MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Las opciones avanzadas solo se utilizarán mientras esta casilla esté marcada."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Ajustes básicos"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Cree un archivo de registro para esta instancia de SQM en /var/run/sqm/$"
"{Interface_name}.[start|stopfont>-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Configuración peligrosa"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Las opciones peligrosas sólo se utilizarán mientras esta casilla esté "
"marcada."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Velocidad de descarga (ingreso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Velocidad de descarga (kbit/s) (ingreso) establecida en 0 para desactivar "
"selectivamente el modelado de ingreso"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (salida)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (ingreso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Activar SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Activar el registro de depuración"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Activar esta instancia de SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
"Estado de notificación de congestión explícita (ECN) en paquetes entrantes"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
"Estado de notificación de congestión explícita (ECN) en paquetes salientes"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Conceder acceso UCI para luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Límite estricto en las colas de salida; dejar en blanco por defecto."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "Límite estricto en las colas de ingreso; dejar en blanco por defecto."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Límite duro de cola (salida)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Límite duro de cola (ingreso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignorar DSCP (ingreso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignorar las marcas DSCP en los paquetes entrantes"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Nombre de la interfaz"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Objetivo de latencia (salida)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Objetivo de latencia (ingreso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
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/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"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/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Adaptación de capa de enlace"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Capa de enlace"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Mecanismo de adaptación de capa de enlace"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Enumera las disciplinas de colas que se pueden utilizar en este sistema. "
"¡Después de instalar un nuevo qdisc, debe reiniciar el enrutador para ver "
"las actualizaciones!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Verbosidad del registro"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Tamaño máximo para calcular volumen y velocidad, tcMTU (bytes); debe ser >= "
"interfaz MTU + sobrecarga"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Tamaño máximo de paquete"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Tamaño mínimo de paquete, MPU (byte); debe ser > 0 para las tablas de tamaño "
"de ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Tamaño mínimo de paquete"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Número de entradas en tablas de tamaño/tasa, TSIZE; para ATM elija TSIZE = "
"(tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Sobrecarga por paquete (bytes)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Opciones de Qdisc (salida)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Opciones de Qdisc (ingreso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Disciplina de cola"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Script de configuración de cola"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Disciplina en las colas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Colas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Tamaño de la tabla de tasas"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "QoS inteligente"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Gestión inteligente de colas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Aplastar las marcas DSCP en los paquetes entrantes"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"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/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"El servicio SQM parece estar desactivado. Utilice el botón de abajo para "
"activar este servicio."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Velocidad de subida (salida)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Velocidad de carga (kbit/s) (salida) establecida en 0 para desactivar "
"selectivamente el modelado de salida"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Verbosidad de la salida de SQM en el registro del sistema."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Qué tecnología de capa de enlace se debe tener en cuenta"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr "Qué mecanismo de adaptación de capa de enlace usar; solo para pruebas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "por defecto"

295
po/fi/sqm.po Normal file
View File

@ -0,0 +1,295 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-06-30 13:42+0000\n"
"Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/fi/>\n"
"Language: fi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Perusasetukset"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Luo lokitiedosto tälle SQM-esiintymälle: /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Ota tämä SQM-esiintymä käyttöön."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Salli pääsy SQM-asetuksiin"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Sovittimen nimi"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Linkkikerroksen sopeuttaminen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Jonomenetelmä (qdisc)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Jonomenetelmän asetustiedosto"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Jonot"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Älykäs jononhallinta"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "SQM tapahtumien lokiinkirjaamisen tarkkuus."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr "Mitä linkkerroksen sopeutumistapaa käytetään (vain testaamiseen)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "vakio"

331
po/fr/sqm.po Normal file
View File

@ -0,0 +1,331 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-06-14 11:53+0000\n"
"Last-Translator: Samuel Krempp <samuel.krempp@gmail.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/fr/>\n"
"Language: fr\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.18-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Configuration avancée"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Options avancées de la couche Liaison"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Options avancées à passer aux disciplines de file d'attente de sortie ; "
"aucune vérification, à utiliser avec beaucoup de précaution."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Options avancées à passer aux disciplines de file d'attente d'entrée ; "
"aucune vérification, à utiliser avec beaucoup de précaution."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Les options avancées sont utilisées uniquement si cette case est cochée "
"(nécessaire uniquement si MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Les options avancées sont utilisées uniquement si cette case est cochée."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Paramètres de base"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Créer un fichier journal pour cette instance SQM sous /var/run/sqm/$"
"{nom_interface}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Configuration dangereuse"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Les options dangereuses sont utilisées uniquement si cette case est cochée."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Vitesse descendante (entrée)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr "Une vitesse définie à 0 désactive la régulation de flux en entrée"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (sortie)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (entrée)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Activer la gestion intelligente des files d'attentes (SQM)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Activer les logs de type debug"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Activez cette instance SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Notification Explicite de Congestion (ECN) sur les paquets entrants"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Notification Explicite de Congestion (ECN) sur les paquets sortants"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Autoriser l'accès UCI pour luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Limite des files d'attente pour la sortie ; laisser vide par défaut."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "Limite des files d'attente entrée ; laisser vide par défaut."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Limite absolue de la file d'attente (sortie)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Limite absolue de la file d'attente (entrée)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignorer DSCP (entrée)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignorer les champs DSCP sur les paquets entrants"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Nom de linterface"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Latence cible (sortie)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Latence cible (entrée)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Cible de latence pour la sortie, par exemple 5ms [unités : s, ms ou us] ; "
"laisser vide pour la sélection automatique, mettre le mot default pour la "
"valeur par défaut de la qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Cible de latence d'entrée, par exemple 5ms [unités : s, ms ou us] ; laisser "
"vide pour la sélection automatique, mettre default pour la valeur par défaut "
"du qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Adaptation de la couche de liaison"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "couche de liaison"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Mécanisme d'adaptation de la couche de liaison"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Liste des disciplines de file d'attente ('qdisc') disponibles. Après "
"installation d'une nouvelle qdisc, redémarrer le routeur pour voir les "
"modifications !"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Verbosité des logs"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Taille maximale pour les calculs de taille et de vitesses, tcMTU (octets) ; "
"doit être ≥ MTU de l'interface + données additionnelles"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Taille maximale des paquets"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Taille minimale des paquets, MPU (octets) ; doit être > 0 pour les tables de "
"tailles ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Taille minimale des paquets"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Nombre d'éléments dans les tables taille/vitesse, TSIZE ; pour ATM prendre "
"TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Données additionnelles par paquet (octets)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Options de la Qdisc (sortie)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Options de la Qdisc (entrée)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Discipline de la file d'attente"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Script de file d'attente"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Algorithem de discipline de file d'attente"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Files d'attente"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Taille de la table des vitesses"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "Qualité de service SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Gestion intelligente des files d'attente"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Écraser DSCP (entrée)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Écraser les valeurs DSCP dans les paquets entrants"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"L'interface graphique SQM vient d'activer l'initscript sqm en votre nom. "
"N'oubliez pas de désactiver manuellement le sqm initscript dans le menu de "
"démarrage du système au cas où ce changement ne serait pas souhaité."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Le service SQM semble être désactivé. Veuillez utiliser le bouton ci-dessous "
"pour activer ce service."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Vitesse montante (sortie)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr "Une vitesse définie à 0 désactive la régulation de flux en sortie"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Verbosité de la sortie de SQM dans le journal du système."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
"Quelle type de couche de liaison prendre en compte dans les calculs de "
"données additionnelles"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Quel mécanisme d'adaptation de la couche de liaison utiliser ; à des fins de "
"test uniquement"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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 ""
"Avec <abbr title=\"Smart Queue Management\">SQM</abbr> vous pouvez permettre "
"la régulation du trafic, un meilleur mélange (Fair Queueing), la gestion "
"active de la longueur des files d'attente (AQM) et la priorisation sur une "
"seule interface réseau."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "par défaut"

339
po/ga/sqm.po Normal file
View File

@ -0,0 +1,339 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-09-06 19:05+0000\n"
"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n"
"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/ga/>\n"
"Language: ga\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :"
"(n>6 && n<11) ? 3 : 4;\n"
"X-Generator: Weblate 5.8-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Cumraíocht Casta"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Ardroghanna Linklayer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Teaghrán roghanna chun cinn le dul ar aghaidh chuig na disciplíní scuaine as "
"bealach; gan seiceáil earráide, bain úsáid as go han-chúramach."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Teaghrán ardroghanna le dul ar aghaidh chuig na disciplíní scuaine chun dul "
"isteach; gan seiceáil earráide, bain úsáid as go han-chúramach."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Ní bhainfear úsáid as ardroghanna ach a fhad is atá an bosca seo ticte (ní "
"gá ach amháin má tá MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Ní bhainfear úsáid as ardroghanna ach a fhad agus a bheidh an bosca seo "
"ticte."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Socruithe Bunúsacha"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Cruthaigh logchomhad don ásc SQM seo faoi /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Cumraíocht Contúirteach"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Ní bhainfear úsáid as roghanna contúirteacha ach amháin a fhad agus a bheidh "
"an bosca seo á sheiceáil."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Luas íoslódála (dul isteach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Luas íoslódála (kbit/s) (dul isteach) socraithe go 0 chun múnlú iontrála a "
"dhíchumasú go roghnach"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (dul amach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (dul isteach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Cumasaigh SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Cumasaigh logáil dífhabhtaithe"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Cumasaigh an sampla SQM seo."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Stádas fógra plódaithe sainráite (ECN) ar phaicéid isteach"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Stádas fógra plódaithe sainráite (ECN) ar phaicéid amach"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Deonaigh rochtain UCI ar luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"Teorainn chrua ar scuainí bealach amach; fág folamh le haghaidh "
"réamhshocraithe."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Teorainn chrua ar scuainí dul isteach; fág folamh le haghaidh "
"réamhshocraithe."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Teorainn chrua scuaine (dul amach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Teorainn chrua scuaine (dul isteach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Déan neamhaird de DSCP (dul isteach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Déan neamhaird de mharcálacha DSCP ar phaicéid isteach"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Ainm an chomhéadain"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Sprioc folaigh (dul amach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Sprioc latency (teacht isteach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Sprioc latency le haghaidh imeacht, e.g. 5ms [aonaid: s, ms, nó us]; fág "
"folamh le haghaidh roghnú uathoibríoch, cuir isteach an focal "
"réamhshocraithe le haghaidh réamhshocraithe an qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Sprioc fholaigh le haghaidh dul isteach, m.sh. 5ms [aonaid: s, ms, nó "
"sinne]; fág folamh le haghaidh roghnú uathoibríoch, cuir isteach an focal "
"réamhshocraithe le haghaidh réamhshocraithe an qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Oiriúnú Ciseal Nasc"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Ciseal nasc"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Meicníocht oiriúnaithe Linklayer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Liostaítear disciplíní scuaine atá inúsáidte ar an gcóras seo. Tar éis duit "
"qdisc nua a shuiteáil, ní mór duit an ródaire a atosú chun nuashonruithe a "
"fheiceáil!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Log briathrachais"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Uasmhéid le haghaidh ríomh méid agus ráta, tcMTU (beart); ní mór é a bheith "
">= comhéadan MTU + lastuas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Uasmhéid paicéad"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Íosmhéid paicéad, MPU (beart); ní mór é a bheith > 0 le haghaidh táblaí méid "
"ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Íosmhéid paicéad"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Líon na n-iontrálacha i dtáblaí méideanna/rátaí, TSIZE; le haghaidh ATM "
"roghnaigh TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "In aghaidh an Phaicéad Lastuas (bearta)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Roghanna Qdisc (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Roghanna Qdisc (dul isteach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Disciplín scuaine"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Script socraithe scuaine"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Smacht scuaine"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Scuainí"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Ráta méid tábla"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Bainistíocht Chliste scuaine"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Scuais DSCP (dul isteach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Scuais marcanna DSCP ar phaicéid isteach"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"Tá an SQM GUI díreach tar éis an initscript sqm a chumasú ar do shon. Ná "
"déan dearmad an initscript méadar cearnach a dhíchumasú de láimh faoin "
"roghchlár Tosaithe an Chórais ar eagla nach dteastaíonn an t-athrú seo."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Is cosúil go bhfuil an tseirbhís SQM díchumasaithe. Úsáid an cnaipe thíos "
"chun an tseirbhís seo a ghníomhachtú."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Luas uaslódála (dul amach)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Luas uaslódála (kbit/s) (dul amach) socraithe go 0 chun múnlú an bealach "
"amach a dhíchumasú go roghnach"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Earráideacht aschur SQM isteach i loga an chórais."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Cén teicneolaíocht ciseal nasc le cuntas a thabhairt air"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Cén meicníocht oiriúnaithe linklayer a úsáid; le haghaidh tástála amháin"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Le <abbr title=\"Smart Queue Management\">SQM</abbr> is féidir leat múnlú "
"tráchta a chumasú, meascadh níos fearr (Scuaine Cothrom), bainistiú "
"gníomhach ar fhad na scuaine (AQM) agus tosaíocht a thabhairt do chomhéadan "
"líonra amháin."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "réamhshocraithe"

294
po/he/sqm.po Normal file
View File

@ -0,0 +1,294 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-09-07 08:58+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/he/>\n"
"Language: he\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
"n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 5.0.1-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "שם מנשק"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

287
po/hi/sqm.po Normal file
View File

@ -0,0 +1,287 @@
msgid ""
msgstr ""
"Language: hi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

293
po/hu/sqm.po Normal file
View File

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-05-08 13:02+0000\n"
"Last-Translator: hmzs <hmzs@1szer1.hu>\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/hu/>\n"
"Language: hu\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 5.12-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Alapszintű beállítások"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "SQM engedélyezése"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Hibakeresési naplózás engedélyezése"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "UCI hozzáférés engedélyezése a <em>luci-app-sqm</em> alkalmazásnak"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Csatoló neve"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "alapértelmezett"

339
po/it/sqm.po Normal file
View File

@ -0,0 +1,339 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-07-13 20:44+0000\n"
"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/it/>\n"
"Language: it\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.7-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Configurazione Avanzata"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Opzioni Avanzate Linklayer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Stringa di opzioni avanzata da passare alle discipline di accodamento in "
"uscita; nessun controllo di errore, usare con cautela."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Stringa di opzioni avanzata da passare alle discipline di accodamento in "
"ingresso; Nessun controllo degli errori, utilizzare con molta attenzione."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Le opzioni avanzate saranno disponibili solo se questa opzione è spuntata "
"(necessario solo se MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Le opzione avanzate verranno usate solo se questa casella è selezionata."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Impostazioni di base"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Crea un file di log per questa istanza SQM nel percorso /var/run/sqm/$"
"{Interface_name}. {start|stop}-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Configurazione pericolosa"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Opzioni pericolose saranno utilizzate solo fino a quando questa casella è "
"selezionata."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Scarica la velocità (ingresso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Velocità di download (kbit/s) (ingresso) impostata a 0 per disattivare "
"selettivamente l'ingresso"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (ingresso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Attiva SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Attiva i log di debug"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Attiva questa istanza SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Notifica di congestione esplicita (ECN) sui pacchetti in entrata"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Notifica di congestione esplicita (ECN) sui pacchetti in uscita"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Concedi l'accesso UCI per luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"Limite rigido sulle code di uscita; lasciare vuoto per impostazione "
"predefinita."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Limite rigido sulle code di ingresso; lascia vuoto per impostazione "
"predefinita."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Limite rigido della coda (uscita)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Limite rigido della coda (ingresso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignora DSCP (ingresso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignora marcature DSCP sui pacchetti in entrata"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Nome interfaccia"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Obiettivo di latenza (uscita)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Obiettivo di latenza (ingresso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Obiettivo di latenza per l'uscita, ad esempio 5ms [unità: s, ms o us]; "
"lascia vuoto per la selezione automatica, inserisci la parola \"default\" "
"per l'impostazione predefinita del qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Obiettivo di latenza per l'ingresso, ad esempio 5ms [unità: s, ms o us]; "
"lascia vuoto per la selezione automatica, inserisci la parola \"default\" "
"per l'impostazione predefinita del qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Adattamento al livello di collegamento"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Strato di collegamento"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Meccanismo di adattamento al livello di collegamento"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Elenca le discipline di accodamento utilizzabili su questo sistema. Dopo "
"aver installato una nuova disciplina di accodamento (qdisc), è necessario "
"riavviare il router per vedere gli aggiornamenti!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Verbosità dei log"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Dimensione massima per calcoli di dimensioni e velocità, tcMTU (byte); deve "
"essere >= MTU dell'interfaccia + overhead"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Dimensione massima del pacchetto"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Dimensione minima del pacchetto, MPU (byte); deve essere > 0 per tabelle di "
"dimensioni Ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Dimensione minima del pacchetto"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Numero di voci nelle tabelle di dimensioni/velocità, TSIZE; per ATM "
"scegliere TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Per Packet Overhead (bytes)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Opzioni Qdisc (uscita)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Opzioni Qdisc (ingresso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Disciplina di coda"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Script di configurazione della coda"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Disciplina di accodamento"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Code"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Dimensione della tabella delle velocità"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "QoS SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Gestione Intelligente delle Code"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (ingresso)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Rimuovi le marcature DSCP sui pacchetti in entrata"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"La GUI di SQM ha appena abilitato lo script di inizializzazione sqm per "
"conto tuo. Ricorda di disabilitare manualmente lo script di inizializzazione "
"sqm nel menu di Avvio di Sistema nel caso in cui questa modifica non fosse "
"desiderata."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Il servizio SQM sembra essere disabilitato. Usa il pulsante qui sotto per "
"attivare questo servizio."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Velocità di upload (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Velocità di upload (kbit/s) (egress) impostata su 0 per disabilitare "
"selettivamente la modellazione dell'egresso"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Dettaglio della stampa di output di SQM nel log di sistema."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Quale tecnologia del livello di collegamento considerare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Quale meccanismo di adattamento del livello di collegamento utilizzare; solo "
"per scopi di test"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable "
"traffic shaping, better mixing (Fair Queueing), active queue length "
"management (AQM) and prioritisation on one network interface."
msgstr ""
"<abbr title=\"Smart Queue Management\">Con SQM</abbr> puoi abilitare la "
"modellazione del traffico, una migliore miscelazione (Fair Queueing), la "
"gestione attiva della lunghezza della coda (AQM) e la prioritizzazione su "
"una singola interfaccia di rete."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "predefinito"

293
po/ja/sqm.po Normal file
View File

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-03-28 23:40+0000\n"
"Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/ja/>\n"
"Language: ja\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "高度な設定"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "高度なリンクレイヤー オプション"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "基本設定"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "この SQM インスタンスを有効にします。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "luci-app-sqmにUCIアクセスを許可"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "インターフェイス名"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "キュー"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "スマート・キュー管理"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "デフォルト"

293
po/ko/sqm.po Normal file
View File

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2022-12-27 13:49+0000\n"
"Last-Translator: somni <me@somni.one>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/ko/>\n"
"Language: ko\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.15.1-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "기본 설정"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "기본"

344
po/lt/sqm.po Normal file
View File

@ -0,0 +1,344 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2025-04-16 15:56+0000\n"
"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/lt/>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.11.1-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Pažengusi konfigūracija"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Pažangūs „Linklayer“ pasirinkimai"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Pažangios parinkties įvestis, norint praeiti į išėjimo eilių rikiavimo "
"disciplinos; be klaidų tikrinimo, naudokite atsargiai."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Pažangios parinkties įvestis, norint praeiti į įėjimo eilių rikiavimo "
"disciplinos; be klaidų tikrinimo, naudokite atsargiai."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Pažangios parinktys bus naudojamos tik tada, jeigu ši žymėjimo laukas bus "
"pažymėtas (reikalinga tik, jei „MTU“ > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Pažangios parinktys bus naudojamos tik tada, jeigu ši žymėjimo laukas bus "
"pažymėtas."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Paprasti nustatymai"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Sukurti žurnalo failą šiam „SQM“ egzemplioriui, kuris randasi „/var/run/sqm/$"
"{Interface_name}.[start|stop]-sqm.log“."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Pavojinga konfigūracija"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Pavojingos parinktys bus naudojamos tik tada, kai šis laukas bus pažymėtas."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Atsisiuntimo greitis (įėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Atsisiuntimo greitis (kbit/s) (įėjimas) nustatyti į 0-į, norint "
"pasirinktinai išjungti įėjimo formavimą"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "„ECN“ (išėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "„ECN“ (įėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Įjungti „SQM“"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Įjungti/Įgalinti derinimo/trukdžių šalinimo žurnalinimą"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Įjungti/Įgalinti šį „SQM“ egzempliorių."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
"Aiškios perkrovos pranešimo („ECN“) būklė/būsena, atvykstančiuose paketuose"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
"Aiškios perkrovos pranešimo („ECN“) būklė/būsena, išsiunčiamuose paketuose"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Suteikti „UCI“ prieigą „luci-app-sqm“"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"„Kietasis“ limitas, išėjimo eilėms; pagal numatytuosius nustatymus, palikite "
"tuščią."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"„Kietasis“ limitas, įėjimo eilėms; pagal numatytuosius nustatymus, palikite "
"tuščią."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "„Kietasis“ eilės limitas (išėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "„Kietasis“ eilės limitas (įėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignoruoti „DSCP“ (įėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignoruoti „DSCP“ žymėjimus, atvykstančiuose paketuose"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Sąsajos ir/arba Sietuvo pavadinimas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Delsos tikslas (išėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Delsos tikslas (įėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Delsos tikslas, skirtas išėjimui, (pvz: 5ms) [vienetai: sek., ms, ar us]; "
"palikite tuščią dėl automatinio pasirinkimo, įterpkite žodžio „default“ "
"skirta „qdisc's“ numatytajam."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Delsos tikslas, skirtas įėjimui, (pvz: 5ms) [vienetai: sek., ms, ar us]; "
"palikite tuščią dėl automatinio pasirinkimo, įterpkite žodžio „default“ "
"skirta „qdisc's“ numatytajam."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Sujungimo sluoksnio pritaikymas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Sujungimo sluoksnis"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Sujungimo sluoksnio pritaikymo mechanizmas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Pateikia eilių disciplinų sąrašą, naudojamų, šioje sistemoje. Įdiegę naują "
"„qdisc“, turite paleisti iš naujo maršrutizatorių, kad pamatytumėte/"
"peržiūrėtumėte naujinimus!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Žurnalo išsamumas/platumas/daugiažodiškumas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Maksimalus dydis, skirtas dydžiui ir spartos skaičiavimams, „tcMTU“ "
"(baitas); turi būti >= sąsaja ir/arba sietuvas „MTU“ + „overhead“"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Maksimalus paketo dydis"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Minimalus paketo dydis, „MPU“ (baitas); „eterneto“ dydžio lentelėse turi "
"būti > 0-is"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Minimalus paketo dydis"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Įrašų skaičius, dydžių/įvedimų/įvesčių lentelėse, „TSIZE“; skirtai „ATM“ "
"pasirinkite „„TSIZE“ = („tcMTU“ + 1) / 16“"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Vieno paketo pridėtinė suma (baitai/-ais)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "„Qdisc“ parinktys (išėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "„Qdisc“ parinktys (įėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Eilės disciplina"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Eilės sąrankos skriptas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Eilių disciplina"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Eilės"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Spartos lentelės dydis"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "„SQM QoS“"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Išmanusis eilės/-ių valdymas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "„Squash DSCP“ (įėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "„Squash DSCP“ žymėjimai, ant atvykstančių paketų"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"„SQM GUI“ ką tik įjungę/įgalino „sqm initscript“, Jūsų vardu. Nepamirškite "
"rankiniu būdu išjungti/įgalinti „sqm initscript“, randama už „Sistemos "
"paleidimo“ meniu, jei šio pakeitimo nenorėjote."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Panašu, kad „SQM“ tarnyba yra išjungta/išgalinta. Norėdami suaktyvinti šią "
"tarnybą, naudokite žemiau esantį mygtuką."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Įkėlimo greitis (išėjimas)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Įkėlimo greitis (kbit/s) (išėjimas) yra nustatytas į 0-į, kad būtų galima "
"pasirinktinai išjungti/išgalinti išėjimo formavimą"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Išsamumo/Platumo/Daugiažodiškumo „SQM“ išvestis, į sistemos žurnalą."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Kurią sujungimo sluoksnio technologiją, reikia atsižvelgti į"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Kurią sujungimo sluoksnio pritaikymo mechanizmą naudoti; skirtai tik "
"testavimams"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Su <abbr title=\"angl. Smart Queue Management | liet. Išmanusis eilių "
"valdymas\">„SQM“,</abbr> Jūs galite įjungti/įgalinti srauto formavimą, "
"geresnį maišymą („Fair Queueing“), aktyvų eilės ilgio valdymą („AQM“) ir "
"prioritetų nustatymą/prioretizavimą, vienoje tinklo sąsajoje ir arba/"
"sietuvoje."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "numatyta/-s"

287
po/mr/sqm.po Normal file
View File

@ -0,0 +1,287 @@
msgid ""
msgstr ""
"Language: mr\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

293
po/ms/sqm.po Normal file
View File

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-21 17:05+0000\n"
"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/ms/>\n"
"Language: ms\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "mungkir"

293
po/nb_NO/sqm.po Normal file
View File

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-12-25 10:11+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/nb_NO/>\n"
"Language: nb_NO\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 5.4-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Grensesnittsnavn"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

332
po/nl/sqm.po Normal file
View File

@ -0,0 +1,332 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-05-04 18:52+0000\n"
"Last-Translator: xtz1983 <xtz1983@gmail.com>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/nl/>\n"
"Language: nl\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.18-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Geavanceerde configuratie"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Geavanceerde Linklayer-opties"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Geavanceerde optietekenreeks om door te geven aan de wachtrijdisciplines "
"voor uitgaand verkeer; geen foutcontrole, zeer voorzichtig gebruiken."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Geavanceerde optietekenreeks om door te geven aan de wachtrijdisciplines "
"voor binnenkomend verkeer; geen foutcontrole, zeer voorzichtig gebruiken."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Geavanceerde opties worden alleen gebruikt zolang dit vakje is aangevinkt "
"(alleen nodig als MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Geavanceerde opties worden alleen gebruikt zolang dit vakje is aangevinkt."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Basisinstellingen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Maak een logbestand voor deze SQM-instantie onder /var/run/sqm/$"
"{Interface_name}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Gevaarlijke configuratie"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Gevaarlijke opties worden alleen gebruikt zolang dit vakje is aangevinkt."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Downloadsnelheid (inkomend verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Downloadsnelheid (kbit/s) (inkomend verkeer) ingesteld op 0 om selectief "
"inkomend shaping uit te schakelen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (uitgaand verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (inkomend verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "SQM inschakelen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Debug-logging inschakelen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Schakel deze SQM-instantie in."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Expliciete congestiemelding (ECN)-status op inkomende pakketten"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Expliciete congestiemelding (ECN)-status op uitgaande pakketten"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Verleen UCI-toegang voor luci-app-m²"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Harde limiet op uitgaande wachtrijen; leeg laten voor standaard."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "Harde limiet op inkomende wachtrijen; leeg laten voor standaard."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Harde wachtrijlimiet (uitgaand verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Harde wachtrijlimiet (inkomend verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Negeer DSCP (inkomend verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Negeer DSCP-markeringen op inkomende pakketten"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Interface naam"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Latentiedoel (uitgaand verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Latentiedoel (inkomend verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Latentiedoel voor uitgaand verkeer, b.v. 5 ms [eenheden: s, ms of us]; leeg "
"laten voor automatische selectie, vul het woord default in voor de standaard "
"van de qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Latentiedoel voor inkomend verkeer, bijv. 5 ms [eenheden: s, ms of us]; leeg "
"laten voor automatische selectie, vul het woord default in voor de standaard "
"van de qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Aanpassing van de koppelingslaag"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Koppelingslaag"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Koppelingslaag aanpassingsmechanisme"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Lijst met wachtrijdisciplines die op dit systeem kunnen worden gebruikt. Na "
"het installeren van een nieuwe qdisc, moet u de router opnieuw opstarten om "
"updates te zien!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "uitgebreid logboek"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Maximale grootte voor berekeningen van grootte en snelheid, tcMTU (byte); "
"moet >= interface MTU + overhead zijn"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Maximale pakketgrootte"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Minimale pakketgrootte, MPU (byte); moet > 0 zijn voor ethernet-"
"groottetabellen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Minimale pakketgrootte"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Aantal vermeldingen in maat-/tarieftabellen, TSIZE; voor ATM kiest u TSIZE = "
"(tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Per pakketoverhead (bytes)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Qdisc-opties (uitgaand verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Qdisc-opties (inkomend verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Wachtrij discipline"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Wachtrij setup script"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Discipline in de wachtrij"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Wachtrijen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Beoordeel de grootte van de tafel"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM-QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Slim wachtrijbeheer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (inkomend verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Squash DSCP-markeringen op inkomende pakketten"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"De SQM GUI heeft zojuist namens u het sqm initscript ingeschakeld. Vergeet "
"niet om het m² initscript handmatig uit te schakelen in het menu Systeem "
"opstarten voor het geval deze wijziging niet gewenst was."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"De SQM-service lijkt te zijn uitgeschakeld. Gebruik de onderstaande knop om "
"deze service te activeren."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Uploadsnelheid (uitgaand verkeer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Uploadsnelheid (kbit/s) (egress) ingesteld op 0 om egress shaping selectief "
"uit te schakelen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Uitgebreid van de uitvoer van SQM in het systeemlogboek."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Met welke koppingslaag-technologie rekening moet worden gehouden"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Welk aanpassingsmechanisme voor de koppelingslaag te gebruiken; alleen voor "
"testen"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Met <abbr title=\"Smart Queue Management\">SQM</abbr> kunt u traffic "
"shaping, beter mixen (Fair Queueing), active queue length management (AQM) "
"en prioritering op één netwerkinterface inschakelen."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "standaard"

335
po/pl/sqm.po Normal file
View File

@ -0,0 +1,335 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-04-07 22:45+0000\n"
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/pl/>\n"
"Language: pl\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.11-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Zaawansowana konfiguracja"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Zaawansowane opcje warstwy łączy"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Zaawansowany łańcuch opcji, aby przejść do dyscyplin kolejkowania egress; "
"bez sprawdzania błędów, używaj bardzo ostrożnie."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Zaawansowany łańcuch opcji, aby przejść do dyscyplin kolejkowania ingress; "
"bez sprawdzania błędów, używaj bardzo ostrożnie."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Opcje zaawansowane będą używane tylko wtedy, gdy to pole jest zaznaczone "
"(potrzebne tylko, jeśli MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Opcje zaawansowane będą używane tylko wtedy, gdy to pole jest zaznaczone."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Ustawienia podstawowe"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Utwórz plik dziennika dla tej instancji SQM w /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Niebezpieczna konfiguracja"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Niebezpieczne opcje będą używane tylko wtedy, gdy to pole jest zaznaczone."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Szybkość pobierania (wejście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Szybkość pobierania (kbit/s) (wejście) ustawione na 0, aby selektywnie "
"wyłączyć kształtowanie wejścia"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (wyjście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (wejście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Włącz SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Włącz rejestrowanie debugowania"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Włącz tę instancję SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
"Status jawnego powiadomienia o przeciążeniu (ECN) w pakietach przychodzących"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
"Status jawnego powiadomienia o przeciążeniu (ECN) w pakietach wychodzących"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Przyznaj luci-app-sqm dostęp do UCI"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Twardy limit kolejek egress; pozostawić puste dla ustawień domyślnych."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Twardy limit kolejek ingress; pozostawić puste dla ustawień domyślnych."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Twardy limit kolejki (wyjście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Twardy limit kolejki (wejście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignoruj DSCP (wejście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignoruj oznaczenia DSCP na pakietach przychodzących"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Nazwa interfejsu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Docelowe opóźnienie (wyjście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Docelowe opóźnienie (wejście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Cel opóźnienia dla egress, np. 5ms [jednostki: s, ms lub us]; pozostaw puste "
"dla automatycznego wyboru, wpisz słowo default dla domyślnego qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Cel opóźnienia dla ingress, np. 5ms [jednostki: s, ms lub us]; pozostaw "
"puste dla automatycznego wyboru, wpisz słowo default dla domyślnego qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Adaptacja warstwy połączenia"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Warstwa łącza"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Mechanizm adaptacji warstwy łącza"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Wyświetla listę dyscyplin kolejkowania przydatnych w tym systemie. Po "
"zainstalowaniu nowej qdisc musisz ponownie uruchomić router, aby zobaczyć "
"aktualizacje!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Szczegółowość dziennika"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Maksymalny rozmiar do obliczeń rozmiaru i szybkości, tcMTU (bajty); musi być "
">= interfejs MTU + narzut"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Maksymalny rozmiar pakietu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Minimalny rozmiar pakietu, MPU (bajty); musi być > 0 dla tabel rozmiarów "
"Ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Minimalny rozmiar pakietu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Liczba wpisów w tabelach wielkości/szybkości, TSIZE; dla ATM wybrać TSIZE = "
"(tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Narzut na pakiet (bajty)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Opcje qdisc (wyjście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Opcje qdisc (wejście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Dyscyplina kolejki"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Skrypt konfiguracji kolejki"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Dyscyplina kolejkowania"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Kolejki"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Rozmiar tabeli szybkości"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Inteligentne zarządzanie kolejkami"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Zduś DSCP (wejście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Zduś oznaczenia DSCP na pakietach przychodzących"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"SQM GUI właśnie włączył w Twoim imieniu initscript sqm. Pamiętaj, aby "
"ręcznie wyłączyć skrypt initscript sqm w menu autostart, jeśli ta zmiana nie "
"była pożądana."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Usługa SQM wydaje się wyłączona. Proszę użyć przycisku poniżej, aby "
"aktywować tę usługę."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Prędkość wysyłania (wyjście)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Prędkość wysyłania (kbit/s) (wyjście) ustawione na 0, aby selektywnie "
"wyłączyć kształtowanie wyjścia"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Szczegółowość danych wyjściowych SQM w dzienniku systemowym."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Którą technikę warstwy łącza należy uwzględnić"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Którego mechanizmu dostosowania odtwarzacza linków należy użyć; tylko do "
"testowania"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Z <abbr title=\"Smart Queue Management\">SQM</abbr> można włączyć "
"kształtowanie ruchu, lepsze mieszanie (Fair Queueing), aktywne zarządzanie "
"długością kolejki (AQM) i ustalanie priorytetów na jednym interfejsie "
"sieciowym."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "domyślna"

334
po/pt/sqm.po Normal file
View File

@ -0,0 +1,334 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-03-03 00:12+0000\n"
"Last-Translator: Tiago Gaspar <tiagogaspar8@gmail.com>\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 5.10.3-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Configurações Avançadas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Opções avançadas do Linklayer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Cadeia de opções avançada para passar para as disciplinas de enfileiramento "
"de saída; sem verificação de erros, use com muito cuidado."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Cadeia de opções avançada para passar para as disciplinas de enfileiramento "
"de entrada; sem verificação de erros, use com muito cuidado."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"As opções avançadas serão usadas apenas enquanto esta caixa estiver marcada "
"(é necessário apenas caso o MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"As opções avançadas só serão usadas enquanto esta caixa estiver marcada."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Configurações Básicas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Criar ficheiro de log para esta instância de SQM em /var/run/sqm/$"
"{Nome_da_Interface}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Configurações perigosas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr "Opções perigosas só serão usadas enquanto esta caixa estiver marcada."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Velocidade de descarga (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Velocidade de descarga (kbits/s) (entrada), defina como 0 para desativar "
"seletivamente o tráfico de entrada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Ativar o SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Ativar o registo de depuração"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Ativar esta instância do SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Notificação explícita do congestionamento (ECN) nos pacotes da entrada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Notificação explícita do congestionamento (ECN) nos pacotes da saída"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Conceder UCI acesso ao luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"Limite rígido nas filas de espera de saída; deixe em branco para utilizar "
"valores predefinidos."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Limite rígido nas filas de espera de entrada; deixe em branco para utilizar "
"valores predefinidos."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Limite da fila rígida (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Limite da fila rígida (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignore o DSCP (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignore as marcações DSCP nos pacotes da entrada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Nome da interface"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Meta de latência (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Meta de latência (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Meta de latência para saída, p.ex. 5ms [unidades: s, ms, ou us]; deixe vazio "
"para seleção automática, entre a palavra default para a predefinição do "
"qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Meta de latência para entrada, p.ex. 5ms [unidades: s, ms, ou us]; deixe "
"vazio para seleção automática, entre a palavra default para a predefinição "
"do qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Adaptação da Camada de Ligação"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Camada do enlace"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Mecanismo de adaptação da camada de enlace"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Lista as disciplinas da filas que são utilizáveis neste sistema. Depois de "
"instalar um novo qdisc, é preciso reiniciar o router para ver as "
"atualizações!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Loquacidade do registo"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Tamanho máximo para realizar os cálculos de tamanho e taxa, tcMTU (byte); "
"precisa ser >= interface MTU + sobrecarga"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Tamanho máximo do pacote"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Tamanho mínimo do pacote, MPU (byte); precisa ser > 0 para as tabelas de "
"tamanho ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Tamanho mínimo do pacote"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Quantidade das entradas com tamanho/taxa nas tabelas, TSIZE; para o ATM, "
"escolha TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Por sobrecarga do pacote (byte)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Opções Qdisc (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Opções Qdisc (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Disciplina de Fila de Espera"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Script de configuração da fila de espera"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Disciplina da fila"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Filas de Espera"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Tamanho da tabela das taxas"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Gestão Inteligente de Filas de Espera"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Marcações squash DSCP nos pacotes da entrada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"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 Início do Sistema no caso "
"desta alteração não ter sido desejada."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"O serviço SQM parece estar desativado. Use o botão abaixo para ativar este "
"serviço."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Velocidade de upload (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Velocidade de upload (kbit/s) (saída), defina como 0 para desativar "
"seletivamente o tráfico de saída"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Verbosidade da saída do SQM no log do sistema."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Qual tecnologia de camada do enlace deve ser considerada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Utilizar qual mecanismo de adaptação da camada de ligação; apenas para testes"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable "
"traffic shaping, better mixing (Fair Queueing), active queue length "
"management (AQM) and prioritisation on one network interface."
msgstr ""
"Pode ativar a formação de tráfego com <abbr title=\"Smart Queue "
"Management\">SQM</abbr>, para melhor mistura (Fair Queueing), gestão ativa "
"do comprimento da fila de espera (AQM) e priorização numa interface de rede."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "padrão"

336
po/pt_BR/sqm.po Normal file
View File

@ -0,0 +1,336 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-11-22 00:07+0000\n"
"Last-Translator: Edison F Carbol <edisonfc@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 5.2\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Configuração Avançada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Opções avançadas do Linklayer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:180
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/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"As opções avançadas serão usadas apenas enquanto esta caixa estiver marcada "
"(é necessário apenas caso o MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"As opções avançadas só serão usadas enquanto esta caixa estiver marcada."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Configurações Básicas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Criar um arquivo de registro log para esta instância SQM em /var/run/sqm/$"
"{Interface_name}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Configurações perigosas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr "Opções perigosas só serão usadas enquanto esta caixa estiver marcada."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Velocidade de download (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Velocidade de Download (kbits/s) (entrada), defina como 0 para desativar "
"seletivamente o tráfico de entrada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Ative o SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Ativar o registro de depuração"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Ative esta instância do SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Notificação explícita do congestionamento (ECN) nos pacotes da entrada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Notificação explícita do congestionamento (ECN) nos pacotes da saída"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Conceda acesso UCI ao luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"Limite máximo nas filas de saída; deixe em branco para utilizar valores "
"predefinidos."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
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/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Limite da fila rígida (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Limite da fila rígida (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignore o DSCP (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignore as marcações DSCP nos pacotes da entrada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Nome da Interface"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Meta de latência (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Meta de latência (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
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/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"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/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Adaptação da Camada do Link de Ligação"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Camada do enlace"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Mecanismo de adaptação da camada de enlace"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Lista as disciplinas da filas que são utilizáveis neste sistema. Depois de "
"instalar um novo qdisc, é preciso reiniciar o roteador para ver as "
"atualizações!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Loquacidade do registro"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Tamanho máximo para realizar os cálculos de tamanho e taxa, tcMTU (byte); "
"precisa ser >= interface MTU + sobrecarga"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Tamanho máximo do pacote"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Tamanho mínimo do pacote, MPU (byte); precisa ser > 0 para as tabelas de "
"tamanho ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Tamanho mínimo do pacote"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Quantidade das entradas com tamanho/taxa nas tabelas, TSIZE; para o ATM, "
"escolha TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Por sobrecarga do pacote (byte)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Opções Qdisc (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Opções Qdisc (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Disciplina da Fila"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Script de configuração da fila"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Disciplina da fila"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Filas de espera"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Tamanho da tabela das taxas"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Gestão Inteligente das Filas de Espera"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (entrada)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Marcações squash DSCP nos pacotes da entrada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"O serviço SQM parece estar desativado. Use o botão abaixo para ativar este "
"serviço."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Velocidade de upload (saída)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Velocidade de upload (kbit/s) (saída), defina como 0 para desativar "
"seletivamente o tráfico de saída"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Prolixidade da saída do SQM's nos arquivos de registro log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Qual tecnologia de camada do enlace deve ser considerada"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Qual o mecanismo de adaptação de camadas do link para usar; para testes "
"apenas"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "padrão"

341
po/ro/sqm.po Normal file
View File

@ -0,0 +1,341 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-02-07 13:05+0000\n"
"Last-Translator: Simona Iacob <s@zp1.net>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/ro/>\n"
"Language: ro\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.16-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Configurație avansată"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Opțiuni avansate pentru Linklayer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Șir de opțiuni avansate care trebuie transmise disciplinelor de coadă de "
"ieșire; nu se verifică erorile, se utilizează cu mare atenție."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Șir de opțiuni avansate care trebuie transmise disciplinelor de intrare în "
"coada de așteptare; fără verificare a erorilor, utilizați cu mare atenție."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Opțiunile avansate vor fi utilizate numai atât timp cât această casetă este "
"bifată (necesară numai dacă MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Opțiunile avansate vor fi utilizate numai atâta timp cât această casetă este "
"bifată."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Setări de bază"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Creați un fișier jurnal pentru această instanță SQM în /var/run/sqm/$"
"{Interface_name}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Configurație periculoasă"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Opțiunile periculoase vor fi utilizate numai atâta timp cât această casetă "
"este bifată."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Viteza de descărcare (intrare)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Viteza de descărcare (kbit/s) (intrare) setată la 0 pentru a dezactiva "
"selectiv modelarea la intrare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (ieșire)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (intrare)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Activați SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Activați jurnalizarea de depanare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Activează această instanță SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
"Starea ECN (Explicit congestion notification (notificare explicită de "
"congestie) pe pachetele de intrare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
"Starea ECN (Explicit congestion notification (notificare explicită de "
"congestie) pe pachetele de ieșire"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Acordă acces UCI pentru luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Limita dură a cozilor de ieșire; lăsați gol pentru valoarea implicită."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Limita dură a cozilor de intrare; lăsați gol pentru valoarea implicită."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Limita de coadă dură (ieșire)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Limita cozii de așteptare dură (intrare)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignoră DSCP (intrare)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ignoră marcajele DSCP pe pachetele de intrare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Numele interfeței"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Țintă de latență (ieșire)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Țintă de latență (intrare)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Obiectivul de latență pentru ieșire, de exemplu, 5ms [unități: s, ms sau "
"us]; lăsați gol pentru selecția automată, introduceți cuvântul default "
"pentru valoarea implicită a qdiscului."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Obiectivul de latență pentru intrare, de exemplu, 5ms [unități: s, ms sau "
"us]; lăsați gol pentru selecția automată, introduceți cuvântul default "
"pentru valoarea implicită a qdiscului."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Adaptarea nivelului de legătură"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Stratul de legătură"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Mecanismul de adaptare Linklayer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Listează disciplinele de coadă de așteptare care pot fi utilizate pe acest "
"sistem. După instalarea unui nou qdisc, trebuie să reporniți routerul pentru "
"a vedea actualizările!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Verbozitatea jurnalului"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Dimensiunea maximă pentru calculele de mărime și viteză, tcMTU (byte); "
"trebuie să fie >= MTU interfață + overhead"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Dimensiunea maximă a pachetului"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Dimensiunea minimă a pachetului, MPU (byte); trebuie să fie > 0 pentru "
"tabelele de dimensiuni ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Dimensiunea minimă a pachetului"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Numărul de intrări în tabelele de mărime/tarif, TSIZE; pentru ATM se alege "
"TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Pe pachet Overhead (bytes)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Opțiuni Qdisc (ieșire)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Opțiuni Qdisc (intrare)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Disciplina cozii"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Script de configurare a cozilor de așteptare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Disciplina cozilor de așteptare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Cozi de așteptare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Dimensiunea tabelului de rate"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Gestionarea inteligentă a cozilor de așteptare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (intrare)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Eliminarea marcajelor DSCP pe pachetele de intrare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"Interfața grafică SQM tocmai a activat initscriptul sqm în numele "
"dumneavoastră. Nu uitați să dezactivați manual sqm initscript în meniul "
"Pornire sistem în cazul în care această modificare nu a fost dorită."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Serviciul SQM pare să fie dezactivat. Vă rugăm să utilizați butonul de mai "
"jos pentru a activa acest serviciu."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Viteza de încărcare (ieșire)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Viteza de încărcare (kbit/s) (ieșire) setată la 0 pentru a dezactiva "
"selectiv modelarea ieșirii"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Verbalitatea ieșirii SQM în jurnalul sistemului."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Ce tehnologie de nivel de legătură trebuie să ia în considerare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Ce mecanism de adaptare a linklayer-ului trebuie utilizat; numai pentru "
"testare"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Cu <abbr title=\"Smart Queue Management\">SQM</abbr> puteți activa modelarea "
"traficului, o mai bună amestecare (Fair Queueing), gestionarea activă a "
"lungimii cozilor de așteptare (AQM) și prioritizarea pe o singură interfață "
"de rețea."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "implicit"

339
po/ru/sqm.po Normal file
View File

@ -0,0 +1,339 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-05-17 10:22+0000\n"
"Last-Translator: SnIPeRSnIPeR <feoktistovk@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/ru/>\n"
"Language: ru\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.12-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Расширенные настройки"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Расширенные параметры связующего слоя"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Строка расширенных параметров для перехода к дисциплинам исходящей очереди; "
"нет проверки ошибок, используйте очень осторожно."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Строка расширенных параметров для перехода к входящим дисциплинам очередей; "
"нет проверки ошибок, используйте очень осторожно."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Расширенные параметры будут использоваться только до тех пор, пока "
"установлен этот флажок (требуется только в том случае, если MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Расширенные параметры будут использоваться только до тех пор, пока "
"установлен этот флажок."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Основные настройки"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Создать файл журнала для этого экземпляра SQM в папке /var/run/sqm/$"
"{Interface_name}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Опасная конфигурация"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Опасные параметры будут использоваться только до тех пор, пока установлен "
"этот флажок."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Скорость загрузки (вход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Скорость загрузки (кбит/с) (вход) установлена на 0, чтобы выборочно "
"отключить формирование входящего трафика"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (выход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (вход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Включить SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Записывать в журнал данные для отладки"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Включите этот экземпляр SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Статус явного уведомления о перегрузке (ECN) для входящих пакетов"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Статус явного уведомления о перегрузке (ECN) для исходящих пакетов"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Предоставить UCI доступ для luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"Жесткое ограничение на исходящие очереди; оставьте пустым для значения по "
"умолчанию."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Жесткое ограничение на входящие очереди; оставьте пустым для значения по "
"умолчанию."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Ограничение жесткой очереди (выход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Ограничение жесткой очереди (вход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Игнорировать DSCP (вход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Игнорировать маркировку DSCP на входящих пакетах"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Имя интерфейса"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Целевая задержка (выход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Целевая задержка (вход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Целевая задержка для выхода, например 5 мс [единицы: с, мс или мкс]; "
"оставьте пустым для автоматического выбора, введите слово по умолчанию для "
"значения qdisc's default."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Целевая задержка для входа, например 5 мс [единицы: с, мс или мкс]; оставьте "
"пустым для автоматического выбора, введите слово по умолчанию для значения "
"qdisc's default."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Адаптация канального уровня"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Канальный уровень"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Механизм адаптации канального уровня"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Список дисциплин очередей, используемых в этой системе. После установки "
"нового qdisc необходимо перезагрузить роутер, чтобы увидеть обновления!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Детализация журнала"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Максимальный размер для расчёта объёма и скорости, tcMTU (байт); должно быть "
">= MTU интерфейса + служебные данные"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Максимальный размер пакета"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Минимальный размер пакета, MPU (байт); должно быть > 0 для таблиц размеров "
"Ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Минимальный размер пакета"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Количество записей в таблицах размеров/скорости, TSIZE; для ATM выберите "
"TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Накладные расходы на пакет (байт)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Qdisc параметры (выход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Qdisc параметры (вход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Дисциплина очереди"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Скрипт настройки очереди"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Дисциплина очереди"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Очереди"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Размер таблицы скорости"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "Умное управление очередью"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Умное управление очередью"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP (вход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Squash DSCP маркировка входящих пакетов"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"Графический интерфейс SQM только что активировал сценарий инициализации sqm "
"от вашего имени. Не забудьте отключить сценарий инициализации sqm вручную в "
"меню 'Запуск системы', если это изменение нежелательно."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Служба SQM, похоже, отключена. Пожалуйста, используйте кнопку ниже, чтобы "
"активировать службу."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Скорость загрузки (выход)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Скорость загрузки (кбит/с) (выход) установлена на 0, чтобы выборочно "
"отключить формирование исходящего трафика"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Детальность вывода SQM в системный журнал."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Какую технологию канального уровня учитывать"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Какой механизм адаптации канального уровня использовать; только для "
"тестирования"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable "
"traffic shaping, better mixing (Fair Queueing), active queue length "
"management (AQM) and prioritisation on one network interface."
msgstr ""
"С помощью <abbr title=\"Smart Queue Management\">SQM</abbr> вы можете "
"включить формирование трафика, лучшее смешивание (Fair Queueing), активное "
"управление длиной очереди (AQM) и расстановку приоритетов на одном сетевом "
"интерфейсе."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "по умолчанию"

293
po/sk/sqm.po Normal file
View File

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-07-10 15:50+0000\n"
"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/sk/>\n"
"Language: sk\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Základné nastavenia"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Názov rozhrania"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

305
po/sv/sqm.po Normal file
View File

@ -0,0 +1,305 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-10-16 19:05+0000\n"
"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/sv/>\n"
"Language: sv\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 5.8-rc\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Avancerad konfiguration"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Avancerad alternativsträng för att överföra till utgångskö-disciplinerna; "
"inga felkontroller, använd mycket försiktigt."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Avancerad alternativsträng för att överföra till inträde till utgångskö-"
"disciplinerna; inga felkontroller, använd mycket försiktigt."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Avancerade alternativ kommer endast att användas så länge den här rutan är "
"ikryssad (behövs endast om MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Avancerade alternativ kommer endast att användas så länge som den här rutan "
"är ikryssad."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Grundläggande inställningar"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Skapa loggfil för denna SQM-instans under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Farlig konfiguration"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Farlig konfiguration kommer endast att användas så länge den här rutan är "
"ikryssad."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Hämtningshastighet (inkommande)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (utmatning)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (inkommande)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Aktivera SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Aktivera logg för avlusning"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Aktivera denna SQM-instans."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Godkänn UCI-åtkomst för luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignorera DSCP (inkommande)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Namn på gränssnittet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "standard"

323
po/ta/sqm.po Normal file
View File

@ -0,0 +1,323 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-26 03:26+0000\n"
"Last-Translator: தமிழ்நேரம் <anishprabu.t@gmail.com>\n"
"Language-Team: Tamil <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/ta/>\n"
"Language: ta\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 5.10-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "மேம்பட்ட உள்ளமைவு"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "மேம்பட்ட லிங்க்லேயர் விருப்பங்கள்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"முன்னேற்றப் பணி சரம் முன்னேற்ற வரிசைப்படுத்தும் துறைகளுக்கு அனுப்ப; பிழை சரிபார்ப்பு "
"இல்லை, மிகவும் கவனமாக பயன்படுத்தவும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"மேம்பட்ட விருப்ப சரம் நுழைவு வரிசை பிரிவுகளுக்கு அனுப்ப; பிழை சரிபார்ப்பு இல்லை, "
"மிகவும் கவனமாக பயன்படுத்தவும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"இந்த பெட்டி சரிபார்க்கப்படும் வரை மட்டுமே மேம்பட்ட விருப்பங்கள் பயன்படுத்தப்படும் (MTU> 1500 "
"என்றால் மட்டுமே தேவைப்படுகிறது)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr "இந்த பெட்டி சரிபார்க்கப்படும் வரை மட்டுமே மேம்பட்ட விருப்பங்கள் பயன்படுத்தப்படும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "அடிப்படை அமைப்புகள்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"இந்த SQM உதாரணத்திற்கு பதிவு கோப்பை உருவாக்கவும்/run/sqm/$ {Interface_name}. "
"LeisureStart|stop] sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "ஆபத்தான உள்ளமைவு"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr "இந்த பெட்டி சரிபார்க்கப்படும் வரை மட்டுமே ஆபத்தான விருப்பங்கள் பயன்படுத்தப்படும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "பதிவிறக்க விரைவு (நுழைவு)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr "பதிவிறக்க விரைவு (kbit/s) (ingress) 0 ஆக அமைக்கவும்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ஈ.சி.என் (முன்னேற்றம்)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ஈ.சி.என் (நுழைவு)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "SQM ஐ இயக்கவும்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "பிழைத்திருத்த பதிவை இயக்கவும்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "இந்த SQM உதாரணத்தை இயக்கவும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "உள்வரும் பாக்கெட்டுகளில் வெளிப்படையான நெரிசல் அறிவிப்பு (ஈ.சி.என்) நிலை"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "வெளிச்செல்லும் பாக்கெட்டுகளில் வெளிப்படையான நெரிசல் அறிவிப்பு (ஈ.சி.என்) நிலை"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "லூசி-ஆப்-சதுரத்திற்கு யுசிஐ அணுகல் வழங்கவும்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "முன்னேற்ற வரிசைகளில் கடினமான வரம்பு; இயல்புநிலைக்கு காலியாக விடவும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "நுழைவு வரிசைகளில் கடினமான வரம்பு; இயல்புநிலைக்கு காலியாக விடவும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "கடின வரிசை வரம்பு (முன்னேற்றம்)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "கடின வரிசை வரம்பு (நுழைவு)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "டி.எச்.சி.பி (நுழைவு) புறக்கணிக்கவும்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "உள்வரும் பாக்கெட்டுகளில் டி.எச்.சி.பி அடையாளங்களை புறக்கணிக்கவும்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "இடைமுக பெயர்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "தாமத இலக்கு (முன்னேற்றம்)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "தாமத இலக்கு (நுழைவு)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"முன்னேற்றத்திற்கான தாமத இலக்கு, எ.கா. 5 எம்எச் [அலகுகள்: எச், எம்எச், அல்லது யுஎச்]; "
"தானியங்கி தேர்வுக்கு காலியாக விடவும், QDISC இன் இயல்புநிலைக்கு இயல்புநிலை என்ற "
"வார்த்தையில் வைக்கவும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"நுழைவுக்கான தாமத இலக்கு, எ.கா. 5 எம்எச் [அலகுகள்: எச், எம்எச், அல்லது யுஎச்]; தானியங்கி "
"தேர்வுக்கு காலியாக விடவும், QDISC இன் இயல்புநிலைக்கு இயல்புநிலை என்ற வார்த்தையில் "
"வைக்கவும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "இணைப்பு அடுக்கு தழுவல்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "இணைப்பு அடுக்கு"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "லிங்க்லேயர் தழுவல் வழிமுறை"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"இந்த அமைப்பில் பயன்படுத்தக்கூடிய வரிசைகளை வரிசைப்படுத்தும் பட்டியல்கள். புதிய QDISC ஐ "
"நிறுவிய பிறகு, புதுப்பிப்புகளைக் காண நீங்கள் திசைவியை மறுதொடக்கம் செய்ய வேண்டும்!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "பதிவு சொற்களஞ்சியம்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"அளவு மற்றும் வீத கணக்கீட்டிற்கான அதிகபட்ச அளவு, MTU (BYTE); இருக்க வேண்டும்> = இடைமுகம் "
"MTU + மேல்நிலை"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "அதிகபட்ச பாக்கெட் அளவு"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"குறைந்தபட்ச பாக்கெட் அளவு, MPU (பைட்); ஈத்தர்நெட் அளவு அட்டவணைகளுக்கு> 0 இருக்க வேண்டும்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "குறைந்தபட்ச பாக்கெட் அளவு"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"அளவு/வீத அட்டவணை, அளவு உள்ளீடுகளின் எண்ணிக்கை; ஏடிஎம் அளவு = (MTU + 1) / 16 ஐத் "
"தேர்வுசெய்க"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "ஒரு பாக்கெட் மேல்நிலைக்கு (பைட்டுகள்)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "QDISC விருப்பங்கள் (முன்னேற்றம்)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "QDISC விருப்பங்கள் (நுழைவு)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "வரிசை ஒழுக்கம்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "வரிசை அமைவு ச்கிரிப்ட்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "வரிசை ஒழுக்கம்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "வால்கள்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "வீத அட்டவணை அளவு"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "அறிவுள்ள வரிசை மேலாண்மை"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "ச்குவாச் டி.எச்.சி.பி (நுழைவு)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "உள்வரும் பாக்கெட்டுகளில் ச்குவாச் டி.எச்.சி.பி அடையாளங்கள்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"SQM GUI உங்கள் சார்பாக SQM Initscript ஐ இயக்கியுள்ளது. இந்த மாற்றம் தேவையில்லை என்றால் "
"கணினி தொடக்க மெனுவின் கீழ் கைமுறையாக SQM INITSCRIPT ஐ முடக்க நினைவில் கொள்ளுங்கள்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"SQM பணி முடக்கப்பட்டதாகத் தெரிகிறது. இந்த சேவையை செயல்படுத்த கீழே உள்ள பொத்தானைப் "
"பயன்படுத்தவும்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "பதிவேற்றும் விரைவு (முன்னேற்றம்)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"பதிவேற்றும் விரைவு (kbit/s) (முன்னேற்றம்) 0 ஆக அமைக்கவும் முன்னேற்ற வடிவத்தை "
"தேர்ந்தெடுக்கவும்"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "கணினி பதிவில் SQM இன் வெளியீட்டின் சொற்களஞ்சியம்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "எந்த இணைப்பு அடுக்கு தொழில்நுட்பத்தை கணக்கிட"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr "பயன்படுத்த எந்த இணைப்பு லேயர் தழுவல் வழிமுறை; சோதனைக்கு மட்டுமே"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable "
"traffic shaping, better mixing (Fair Queueing), active queue length "
"management (AQM) and prioritisation on one network interface."
msgstr ""
"<ABBR தலைப்பு = \"அறிவுள்ள க்யூ மேனேச்மென்ட்\"> SQM </abbr> உடன் போக்குவரத்து "
"வடிவமைத்தல், சிறந்த கலவை (நியாயமான வரிசை), செயலில் வரிசை நீள மேலாண்மை (AQM) மற்றும் "
"ஒரு பிணைய இடைமுகத்தில் முன்னுரிமை அளிக்கலாம்."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "இயல்புநிலை"

284
po/templates/sqm.pot Normal file
View File

@ -0,0 +1,284 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr ""
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"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/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr ""

328
po/tr/sqm.po Normal file
View File

@ -0,0 +1,328 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-10-29 19:41+0000\n"
"Last-Translator: semih <semiht@gmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/tr/>\n"
"Language: tr\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.2-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Gelişmiş Yapılandırma"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Gelişmiş Linklayer Seçenekleri"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
ıkış kuyruğu denetimleri için gelişmiş seçenek satırı; hata kontrolü "
"yoktur, dikkatli kullanın."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Giriş kuyruğu denetimleri için gelişmiş seçenek satırı; hata kontrolü "
"yoktur, dikkatli kullanın."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Gelişmiş seçenekler yalnızca bu kutu işaretli olduğu sürece kullanılacaktır "
"(yalnızca MTU > 1500 ise gereklidir)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Gelişmiş seçenekler yalnızca bu kutu işaretli olduğu sürece kullanılacaktır."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Temel Ayarlar"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Bu SQM örneği için /var/run/sqm/${Interface_name}.[start|stop]-sqm.log "
"konumda günlük dosyası oluşturun."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Tehlikeli Yapılandırma"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Tehlikeli seçenekler yalnızca bu kutu işaretli olduğu sürece kullanılacaktır."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "İndirme hızı (giriş)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Giriş şekillendirmeyi seçici olarak devre dışı bırakmak için indirme hızı "
"(kbit/s) (giriş) 0 olarak ayarlandı"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (çıkış)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (giriş)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "SQM'i etkinleştir"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Hata ayıklama günlüğünü etkinleştir"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Bu SQM örneğini etkinleştirin."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Gelen paketlerde açık tıkanıklık bildirimi (ECN) durumu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Giden paketlerde açık tıkanıklık bildirimi (ECN) durumu"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "luci-app-sqm için UCI erişimi verin"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Çıkış kuyrukları için kesin sınır; varsayılan ayar için boş bırakın."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "Giriş kuyrukları için kesin sınır; varsayılan ayar için boş bırakın."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Sabit kuyruk limiti (çıkış)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Sabit kuyruk limiti (giriş)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "DSCP'yi yoksay (giriş)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Gelen paketlerdeki DSCP işaretlerini yoksay"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Arayüz ismi"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Gecikme hedefi (çıkış)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Gecikme hedefi (giriş)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
ıkış için gecikme hedefi, örn. 5ms [birimler: s, ms, ya da us]; otomatik "
"seçim için boş bırakın, qdisc'in varsayılan ayarı için \"default\" yazın."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Giriş için gecikme hedefi, örn. 5ms [birimler: s, ms, ya da us]; otomatik "
"seçim için boş bırakın, qdisc'in varsayılan ayarı için \"default\" yazın."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Bağlantı Katmanı Uyarlaması"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Bağlantı katmanı"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Bağlantı katmanı adaptasyon mekanizması"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Bu sistemde kullanılabilen kuyruk disiplinlerini listeler. Yeni bir qdisc "
"yükledikten sonra, güncellemeleri görmek için yönlendiriciyi yeniden "
"başlatmanız gerekir!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Günlük ayrıntı düzeyi"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Boyut ve hız hesaplamaları için Maksimum Boyut, tcMTU (bayt); >= arayüz MTU "
"+ ek yük olması gerekir"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Maksimum paket boyutu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Minimum paket boyutu, MPU (bayt); ethernet boyut tablosu için sıfırdan (0) "
"büyük olmalıdır"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Minimum paket boyutu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Boyut/hız tabloları için girdi sayıları, TSIZE; ATM için TSIZE = (tcMTU + "
"1) / 16'yı seçin"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Paket Başına Ek Yük (bayt)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Qdisc seçenekleri (çıkış)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Qdisc seçenekleri (giriş)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Kuyruk Denetimi"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Kuyruk kurulum betiği"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Kuyruklama disiplini"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Kuyruklar"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Hız tablosu boyutu"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Akıllı Kuyruk Yönetimi (SQM)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "DSCP'yi sıkıştır (giriş)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Gelen paketlerdeki DSCP işaretlerini sıkıştır"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"SQM GUI, sizin adınıza sqm initscript'i etkinleştirdi. Bu değişikliğin "
"istenmemesi durumunda sqm initscript'i System Startup menüsünden manuel "
"olarak devre dışı bırakmayı unutmayın."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Bu SQM servisi devre dışı görünüyor. Servisi aktif etmek için lütfen alttaki "
"butonu kullanın."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Yükleme hızııkış)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Yükleme hızı (kbit/s) (çıkış) şekillendirmeyi seçici olarak devre dışı "
"bırakmak için 0 olarak ayarlanır"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "SQM çıktısının sistem günlüğü ayrıntısı."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Hangi bağlantı katmanı teknolojisinin hesaba katılacağı"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr "Bağlantı katmanı uyarlama tekniği; yalnızca test için"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable "
"traffic shaping, better mixing (Fair Queueing), active queue length "
"management (AQM) and prioritisation on one network interface."
msgstr ""
"<abbr title=\"Smart Queue Management\">SQM</abbr> ile; trafik şekillendirme, "
"daha iyi sıkıştırma (Adil Kuyruklama), etkin kuyruk uzunluğu yönetimi (AQM) "
"ve bir ağ arayüzünü önceliklendirme gibi işlemler yapabilirsiniz."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "varsayılan"

340
po/uk/sqm.po Normal file
View File

@ -0,0 +1,340 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-13 06:59+0000\n"
"Last-Translator: Максим Горпиніч <maksimgorpinic2005a@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/uk/>\n"
"Language: uk\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.10-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Розширена Конфігурація"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Розширені параметри канального рівня"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Рядок розширеного параметра для передачі до застосування без перевірки "
"помилок, використовуйте дуже обережно."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Розширений рядок параметрів, що передається до дисциплін запасної черги "
"вхідного потоку; без перевірки помилок, використовуйте дуже обережно."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Розширені параметри використовуватимуться лише до тих пір, поки цей "
"прапорець позначено (потрібно, лише якщо MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr ""
"Розширені параметри будуть використані тільки тоді, коли цей пункт вімкнено."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Базові налаштування"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Створіти журнальний файл для цього екземпляру SQM в каталозі /var/run/sqm/$"
"{Interface_name}.[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Небезпечна конфігурація"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr ""
"Небезпечні параметри будуть використовуватися тільки тоді, коли цей пункт "
"відмічено."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Швидкість завантаження (вхідна)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Швидкість завантаження (кбіт/с) (вхідна) встановлена в 0, щоб селективно "
"вимкнути вхідне вирівнювання"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (вихідна)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (вхідна)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Увімкнути SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Увімкнути системний журнал"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Увімкнути цей екземпляр SQM."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Статус явного сповіщення про завантаженість (ECN) на вхідних пакетах"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Статус явного сповіщення про завантаженість (ECN) на вихідних пакетах"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Надати доступ UCI для luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr ""
"Жорстке обмеження на вихідні черги; залиште порожнім для значення за "
"замовчуванням."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr ""
"Жорстке обмеження на вхідні черги; залиште порожнім для значення за "
"замовчуванням."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Жорстке обмеження черги (вихід)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Жорстке обмеження черги (вхід)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ігнорувати DSCP (вхід)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Ігнорувати маркування DSCP на вхідних пакетах"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Назва інтерфейсу"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Ціль затримки (вихiд)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Ціль затримки (вхiд)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Ціль затримки для вихідного трафіку, наприклад, 5 мс [одиниці: с, мс, або "
"ус]; залиште порожнім, щоб автоматично вибрати значення, або введіть слово "
"\"default\" для значення за замовчуванням qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Ціль затримки для вхідного трафіку, наприклад, 5 мс [одиниці: с, мс, або "
"ус]; залиште порожнім, щоб автоматично вибрати значення, або введіть слово "
"\"default\" для значення за замовчуванням qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr ""
"Адаптація протоколу передачі даних у рівні протоколу з'єднання (Link Layer "
"Adaptation)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Протокол з'єднання (Link Layer)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Механізм адаптації протоколу з'єднання"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Список чергувань, які можуть бути використані на цій системі. Після "
"установки нового qdisc вам необхідно перезапустити роутер, щоб побачити "
"оновлення!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Рівень деталізації журналу"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Максимальний розмір для розрахунків розміру і швидкості, tcMTU (в байтах); "
"має бути >= MTU інтерфейсу + навантаження"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Максимальний розмір пакету"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Мінімальний розмір пакету, MPU (у байтах); має бути > 0 для таблиць розмірів "
"Ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Мінімальний розмір пакету"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Кількість записів у таблицях розміру/швидкості, TSIZE; для ATM виберіть "
"TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Навантаження на кожен пакет (у байтах)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Опції qdisc (для вихідного трафіку)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Опції qdisc (для вхідного трафіку)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Чергування"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Скрипт налаштування черги"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Дисципліна черги"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Черги"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Розмір таблиці швидкості"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Інтелектуальне керування чергою (Smart Queue Management)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Схоплення DSCP (для вхідного трафіку)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Схоплення позначок DSCP на вхідних пакетах"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"Графічний інтерфейс SQM тільки що включив скрипт sqm initscript за ваш "
"запит. Пам'ятайте, що в разі, якщо ця зміна була небажаною, вам потрібно "
"вручну вимкнути скрипт sqm initscript в меню «Початок системи»."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Сервіс SQM, схоже, вимкнено. Будь ласка, використовуйте кнопку нижче, щоб "
"активувати його."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Швидкість вивантаження (для вихідного трафіку)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Швидкість вивантаження (у кбіт/с) (для вихідного трафіку) встановіть "
"значення в 0, щоб селективно вимкнути формування вихідного трафіку"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Рівень деталізації виведення SQM у системний журнал."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Яку технологію протоколу з'єднання враховувати"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr ""
"Який механізм адаптації протоколу з'єднання використовувати; тільки для "
"тестування"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable "
"traffic shaping, better mixing (Fair Queueing), active queue length "
"management (AQM) and prioritisation on one network interface."
msgstr ""
"З допомогою <abbr title=\"Smart Queue Management\">SQM</abbr> ви можете "
"включити формування трафіку, краще змішування (чесне чергування), керування "
"довжиною активної черги (AQM) та пріоритезацію на одному інтерфейсі мережі."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "за замовчуванням"

326
po/vi/sqm.po Normal file
View File

@ -0,0 +1,326 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-06-20 13:52+0000\n"
"Last-Translator: Quy <haonguyen93056@gmail.com>\n"
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssqm/vi/>\n"
"Language: vi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.18.1\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "Cấu hình nâng cao"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "Tùy chọn trình liên kết nâng cao"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr ""
"Các tùy chọn nâng cao sẽ chỉ được sử dụng khi hộp này được chọn (chỉ cần "
"thiết nếu MTU > 1500)."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr "Các tùy chọn nâng cao sẽ chỉ được sử dụng khi hộp này được chọn."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "Cài đặt cơ bản"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"Tạo tệp nhật ký cho phiên bản SQM này trong /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "Dangerous Configuration"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr "Các tùy chọn nguy hiểm sẽ chỉ được sử dụng khi hộp này được chọn."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "Tốc độ tải xuống"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr ""
"Tốc độ tải xuống (kbit/s) (xâm nhập) được đặt thành 0 để vô hiệu hóa có chọn "
"lọc tính năng"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN (egress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "Bật SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "Kích hoạt nhật ký bug"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "Bật phiên bản SQM này."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "Trạng thái thông báo tắc nghẽn rõ ràng (ECN) trên các gói gửi đến"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "Trạng thái thông báo tắc nghẽn rõ ràng (ECN) trên các gói gửi đi"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "Cấp quyền truy cập UCI cho luci-app-sqm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "Giới hạn cứng đối với hàng đợi đi ra; để trống cho mặc định."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "Giới hạn cứng đối với hàng đợi vào; để trống cho mặc định."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "Giới hạn hàng đợi cứng (ra)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "Giới hạn hàng đợi cứng"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "Ignore DSCP (ingress)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "Bỏ qua đánh dấu DSCP trên các gói gửi đến"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "Tên giao diện"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "Mục tiêu độ trễ (đầu ra)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "Mục tiêu độ trễ"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Mục tiêu độ trễ cho đầu ra, ví dụ: 5ms [đơn vị: s, ms, hoặc us]; để trống để "
"chọn tự động, đặt từ mặc định cho mặc định của qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"Mục tiêu độ trễ cho quá trình xâm nhập, ví dụ: 5ms [đơn vị: s, ms hoặc us]; "
"để trống để chọn tự động, đặt từ mặc định cho mặc định của qdisc."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "Link Layer Adaptation"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "Link layer"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "Linklayer adaptation mechanism"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"Liệt kê các nguyên tắc xếp hàng có thể sử dụng trên hệ thống này. Sau khi "
"cài đặt qdisc mới, bạn cần khởi động lại bộ định tuyến để xem các bản cập "
"nhật!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "Log verbosity"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr ""
"Kích thước tối đa để tính toán kích thước và tốc độ, tcMTU (byte); cần phải "
">= MTU giao diện + chi phí"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "Kích thước gói tối đa"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr ""
"Kích thước gói tối thiểu, MPU (byte); cần phải> 0 cho các bảng kích thước "
"ethernet"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "Kích thước gói tối thiểu"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"Số mục nhập trong bảng kích thước/tỷ lệ, TSIZE; đối với ATM chọn TSIZE = "
"(tcMTU + 1)/16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "Per Packet Overhead (bytes)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Tùy chọn Qdisc (đầu ra)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Tùy chọn Qdisc (xâm nhập)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "Queue Discipline"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "Queue setup script"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "Queueing discipline"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "Hàng đợi"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "Kích thước bảng rate"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "Quản lý hàng đợi thông minh"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "Squash DSCP"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "Loại bỏ các đánh dấu DSCP trên các gói gửi đến"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"SQM GUI vừa kích hoạt initscript sqm thay cho bạn. Hãy nhớ vô hiệu hóa "
"initscript sqm theo cách thủ công trong menu Khởi động hệ thống trong trường "
"hợp thay đổi này không được mong muốn."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr ""
"Dịch vụ SQM dường như bị vô hiệu hóa. Vui lòng sử dụng nút bên dưới để kích "
"hoạt dịch vụ này."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "Tốc độ tải lên"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr ""
"Tốc độ tải lên (kbit/s) (đầu ra) được đặt thành 0 để vô hiệu hóa có chọn lọc "
"định hình đầu ra"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "Độ chi tiết của đầu ra của SQM vào nhật ký hệ thống."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "Which link layer technology to account for"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr "Sử dụng cơ chế thích ứng lớp liên kết nào; chỉ để thử nghiệm"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
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 ""
"Với <abbr title=\"Smart Queue Management\">SQM</abbr> bạn có thể cho phép "
"định hình lưu lượng, trộn tốt hơn (Xếp hàng công bằng), quản lý độ dài hàng "
"đợi đang hoạt động (AQM) và ưu tiên trên một giao diện mạng."
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "default (Mặc định)"

306
po/zh_Hans/sqm.po Normal file
View File

@ -0,0 +1,306 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-05-13 22:00+0000\n"
"Last-Translator: 大王叫我来巡山 "
"<hamburger2048@users.noreply.hosted.weblate.org>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationssqm/zh_Hans/>\n"
"Language: zh_Hans\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5.5\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "高级配置"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "高级链路层选项"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr "传递到出站队列规则的高级选项字符串;不会进行错误检查,请谨慎使用。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr "传递到入站队列规则的高级选项字符串;不会进行错误检查,请谨慎使用。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr "选中此框时,才使用高级选项(仅当 MTU > 1500 时才需要)。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr "勾选后才使用高级选项。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "基本设置"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr ""
"为此 SQM 实例创建日志文件 /var/run/sqm/${Interface_name}.[start|stop]-"
"sqm.log。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "风险配置"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr "仅当勾选后才使用这些有风险的配置。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "下载速度(入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr "下载速度kbit/s入口设为 0 时,将有选择地禁用入口整形"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN上行"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN下行"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "启用 SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "启用调试日志"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "启用此 SQM 实例。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "入站数据包的显式拥塞通知ECN状态"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "出站数据包的显式拥塞通知ECN状态"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "授予 UCI 访问 luci-app-sqm 的权限"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "出口队列的硬限制; 默认留空。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "入口队列的硬限制; 默认留空。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "硬队列限制(出口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "硬队列限制(入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "忽略 DSCP入口"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "忽略入站数据包的 DSCP 标记"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "接口名称"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "延迟目标(出口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "延迟目标(入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"出口的延迟目标,例如 5ms [单位s、ms 或 us];留空为自动选择,输入 default 为"
"队列规则的默认值。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"入口的延迟目标,例如 5ms [单位s、ms 或 us];留空为自动选择,输入 default 为"
"队列规则的默认值。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "链路层适应"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "链路层"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "链路层适应机制"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"列出本系统上可用的队列规则。安装新的队列规则后,您需要重启路由器才能看到更"
"新!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "日志等级"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr "大小和速率计算的最大大小tcMTU字节 需要 >= 接口 MTU + 开销"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "最大数据包大小"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr "最小数据包大小MPU (byte);在以太网中需要大于 0"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "最小数据包大小"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr "大小/费率表中的条目数TSIZE对于 ATM选择 TSIZE = (tcMTU + 1) / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "单个数据包开销bytes"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "队列规则选项(出口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "队列规则选项(入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "队列规则"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "队列设置脚本"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "队列规则"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "队列"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "速率表大小"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM 队列管理"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "智能队列管理"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "压缩 DSCP入口"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "压缩入站数据包的 DSCP 标记"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"你刚刚通过图形界面开启了 SQM 随机启动功能,如果你不希望 SQM 随机启动,请在系"
"统启动项菜单下手动禁用。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr "SQM 服务似乎已被禁用。请使用下面的按钮激活此服务。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "上传速度(出口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr "上传速度kbit/s出口设为 0 时,将有选择地禁用出口整形"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "SQM 输出到系统日志的详细程度。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "要考虑哪种链路层技术"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr "使用哪个链路适应机制;仅用于测试"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable "
"traffic shaping, better mixing (Fair Queueing), active queue length "
"management (AQM) and prioritisation on one network interface."
msgstr ""
"使用 <abbr title=\"智能列队管理\">SQM</abbr> ,你可以在指定网络接口上启用流量"
"整形、更好的混合公平队列、主动列队管理AQM以及优先级排序。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "默认"

304
po/zh_Hant/sqm.po Normal file
View File

@ -0,0 +1,304 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-04-04 10:24+0000\n"
"Last-Translator: 翻譯得真好下次別翻了 <x86_64-pc-linux-gnu@proton.me>\n"
"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/"
"projects/openwrt/luciapplicationssqm/zh_Hant/>\n"
"Language: zh_Hant\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.11-dev\n"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced Configuration"
msgstr "高級配置"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid "Advanced Linklayer Options"
msgstr "高級連結層選項"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid ""
"Advanced option string to pass to the egress queueing disciplines; no error "
"checking, use very carefully."
msgstr "傳遞到出站佇列規則的進階選項字串,沒有錯誤檢查,請謹慎使用。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid ""
"Advanced option string to pass to the ingress queueing disciplines; no error "
"checking, use very carefully."
msgstr "傳遞到入站佇列規則的進階選項字串,沒有錯誤檢查,請謹慎使用。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:199
msgid ""
"Advanced options will only be used as long as this box is checked (only "
"needed if MTU > 1500)."
msgstr "僅當選中此框時,才會使用高級選項(僅當 MTU > 1500 時才需要)。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:133
msgid "Advanced options will only be used as long as this box is checked."
msgstr "僅選取此框,才會使用高級選項。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:72
msgid "Basic Settings"
msgstr "基本設定"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid ""
"Create log file for this SQM instance under /var/run/sqm/${Interface_name}."
"[start|stop]-sqm.log."
msgstr "建立日誌檔案 (/var/run/sqm/${Interface_name}.[start|stop]-sqm.log)。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous Configuration"
msgstr "危險設定"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:160
msgid "Dangerous options will only be used as long as this box is checked."
msgstr "只有在選取此框時才會使用危險選項。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid "Download speed (ingress)"
msgstr "下載速度(入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:92
msgid ""
"Download speed (kbit/s) (ingress) set to 0 to disable ingress shaping "
"selectively"
msgstr "下載速度kbit/s入口設定為0以選擇性停用入口整形"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "ECN (egress)"
msgstr "ECN出口"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "ECN (ingress)"
msgstr "ECN入口"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:58
msgid "Enable SQM"
msgstr "啟用 SQM"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:100
msgid "Enable debug logging"
msgstr "啟用除錯日誌"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:78
msgid "Enable this SQM instance."
msgstr "啟用 SQM。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:148
msgid "Explicit congestion notification (ECN) status on inbound packets"
msgstr "傳入封包上的顯式擁塞通知 (ECN) 狀態"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:154
msgid "Explicit congestion notification (ECN) status on outbound packets"
msgstr "傳出封包上的顯式擁塞通知 (ECN) 狀態"
#: applications/luci-app-sqm/root/usr/share/rpcd/acl.d/luci-app-sqm.json:3
msgid "Grant UCI access for luci-app-sqm"
msgstr "授予luci-app-sqm存取UCI的權限"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard limit on egress queues; leave empty for default."
msgstr "嚴格限制出口佇列;預設保留為空。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard limit on ingress queues; leave empty for default."
msgstr "對入口佇列的硬限制;預設保留為空。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:168
msgid "Hard queue limit (egress)"
msgstr "硬佇列限制(出口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:164
msgid "Hard queue limit (ingress)"
msgstr "硬佇列限制(入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP (ingress)"
msgstr "忽略 DSCP入口"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:142
msgid "Ignore DSCP markings on inbound packets"
msgstr "忽略傳入封包的DSCP標記"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:89
msgid "Interface name"
msgstr "介面名稱"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid "Latency target (egress)"
msgstr "延遲目標(出口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid "Latency target (ingress)"
msgstr "延遲目標(入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:176
msgid ""
"Latency target for egress, e.g. 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"出口的延遲目標例如5ms [單位: s、ms、或us]留空以進行自動選擇在qdisc的預"
"設值中輸入default。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:172
msgid ""
"Latency target for ingress, e.g 5ms [units: s, ms, or us]; leave empty for "
"automatic selection, put in the word default for the qdisc's default."
msgstr ""
"進入的延遲目標例如5ms [單位: s、ms、或us]留空以進行自動選擇在qdisc的預"
"設值中輸入default。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:74
msgid "Link Layer Adaptation"
msgstr "連結層適應"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Link layer"
msgstr "連結層"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Linklayer adaptation mechanism"
msgstr "連結層適應機制"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid ""
"Lists queuing disciplines useable on this system. After installing a new "
"qdisc, you need to restart the router to see updates!"
msgstr ""
"列出此系統上可用的排隊規則。安裝新的qdisc后您需要重新啟動路由器才能看到更"
"新!"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Log verbosity"
msgstr "日誌詳細程度"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid ""
"Maximal Size for size and rate calculations, tcMTU (byte); needs to be >= "
"interface MTU + overhead"
msgstr "用於大小和速率計算的最大大小tcMTU位元組;需要>= 介面 MTU + 開銷"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:203
msgid "Maximum packet size"
msgstr "最大封包大小"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid ""
"Minimal packet size, MPU (byte); needs to be > 0 for ethernet size tables"
msgstr "最小封包大小MPU (位元組);乙太網大小表需要> 0"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:213
msgid "Minimum packet size"
msgstr "最小封包大小"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid ""
"Number of entries in size/rate tables, TSIZE; for ATM choose TSIZE = (tcMTU "
"+ 1) / 16"
msgstr ""
"大小/費率表中的條目數TSIZE;對於自動櫃員機,選擇 TSIZE = tcMTU + 1 / 16"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:193
msgid "Per Packet Overhead (bytes)"
msgstr "每個封包開銷 (bytes)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:183
msgid "Qdisc options (egress)"
msgstr "Qdisc 選項(出口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:180
msgid "Qdisc options (ingress)"
msgstr "Qdisc 選項(入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:73
msgid "Queue Discipline"
msgstr "佇列規則"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:120
msgid "Queue setup script"
msgstr "佇列設定指令碼"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:112
msgid "Queueing discipline"
msgstr "排隊規則"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:71
msgid "Queues"
msgstr "佇列"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:208
msgid "Rate table size"
msgstr "費率表大小"
#: applications/luci-app-sqm/root/usr/share/luci/menu.d/luci-app-sqm.json:3
msgid "SQM QoS"
msgstr "SQM QoS頻寬管理"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:64
msgid "Smart Queue Management"
msgstr "智慧佇列管理"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP (ingress)"
msgstr "壁球 DSCP (入口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:136
msgid "Squash DSCP markings on inbound packets"
msgstr "壓縮傳入封包上的DSCP標記"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:83
msgid ""
"The SQM GUI has just enabled the sqm initscript on your behalf. Remember to "
"disable the sqm initscript manually under System Startup menu in case this "
"change was not wished for."
msgstr ""
"此 SQM GUI 剛剛代表您啟用了sqm初始化指令碼。切記在「系統啟動」選單下手動停"
"用sqm初始化指令碼以防意外變更。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:48
msgid ""
"The SQM service seems to be disabled. Please use the button below to "
"activate this service."
msgstr "SQM 服務似乎已被停用。請使用下面的按鈕來啟動這項服務。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid "Upload speed (egress)"
msgstr "上傳速度(出口)"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:96
msgid ""
"Upload speed (kbit/s) (egress) set to 0 to selectively disable egress shaping"
msgstr "上傳速度 kbit/s出口設置為 0 以有選擇地禁用出口整形"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:103
msgid "Verbosity of SQM's output into the system log."
msgstr "日誌等級。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:187
msgid "Which link layer technology to account for"
msgstr "要考慮哪種連結層技術"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:218
msgid "Which linklayer adaptation mechanism to use; for testing only"
msgstr "使用哪種連接層適配機制;僅用於測試"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:65
msgid ""
"With <abbr title=\"Smart Queue Management\">SQM</abbr> you can enable "
"traffic shaping, better mixing (Fair Queueing), active queue length "
"management (AQM) and prioritisation on one network interface."
msgstr ""
"使用 <abbr title=\"Smart Queue Management\">SQM</abbr> 您可以啟用流量整形,更"
"好的混合 (公平佇列),主動佇列管理 (AQM) 並設定網路介面優先順序。"
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:107
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:149
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:155
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:188
#: applications/luci-app-sqm/htdocs/luci-static/resources/view/network/sqm.js:219
msgid "default"
msgstr "預設"

View File

@ -0,0 +1,13 @@
{
"admin/network/sqm": {
"title": "SQM QoS",
"order": 59,
"action": {
"type": "view",
"path": "network/sqm"
},
"depends": {
"acl": [ "luci-app-sqm" ]
}
}
}

View File

@ -0,0 +1,21 @@
{
"luci-app-sqm": {
"description": "Grant UCI access for luci-app-sqm",
"read": {
"file": {
"/var/run/sqm/available_qdiscs": [ "list" ],
"/usr/lib/sqm/*.qos.help": [ "read" ],
"/etc/init.d/sqm enable" : [ "exec" ],
"/etc/init.d/sqm start" : [ "exec" ]
},
"uci": [ "sqm" ],
"ubus": {
"file": [ "read", "list" ],
"luci": [ "setInitAction" ]
}
},
"write": {
"uci": [ "sqm" ]
}
}
}