diff options
Diffstat (limited to 'applications/luci-app-nft-qos')
34 files changed, 2322 insertions, 1799 deletions
diff --git a/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua b/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua index 6f67a6110b..b089433d9b 100644 --- a/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua +++ b/applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua @@ -15,6 +15,7 @@ local def_up = uci:get("nft-qos", "default", "dynamic_bw_up") local def_down = uci:get("nft-qos", "default", "dynamic_bw_down") local limit_enable = uci:get("nft-qos", "default", "limit_enable") +local limit_mac_enable = uci:get("nft-qos", "default", "limit_mac_enable") local limit_type = uci:get("nft-qos", "default", "limit_type") local enable_priority = uci:get("nft-qos", "default", "priority_enable") @@ -29,7 +30,8 @@ s = m:section(TypedSection, "default", translate("NFT-QoS Settings")) s.addremove = false s.anonymous = true -s:tab("limit", "Limit Rate") +s:tab("limit", "Limit Rate by IP Address") +s:tab("limitmac", "Limit Rate by Mac Address") s:tab("priority", "Traffic Priority") -- @@ -113,116 +115,161 @@ wa.cbi_add_networks(o) -- if limit_enable == "1" and limit_type == "static" then -x = m:section(TypedSection, "download", translate("Static QoS-Download Rate")) -x.anonymous = true -x.addremove = true -x.template = "cbi/tblsection" - -o = x:option(Value, "hostname", translate("Hostname")) -o.datatype = "hostname" -o.default = 'undefined' - -if has_ipv6 then - o = x:option(Value, "ipaddr", translate("IP Address (v4 / v6)")) -else - o = x:option(Value, "ipaddr", translate("IP Address (v4 Only)")) -end -o.datatype = "ipaddr" -if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") then - o.titleref = luci.dispatcher.build_url("admin", "status", "overview") -end - -o = x:option(Value, "macaddr", translate("MAC (optional)")) -o.rmempty = true -o.datatype = "macaddr" - -o = x:option(Value, "rate", translate("Rate")) -o.default = def_rate_dl or '50' -o.size = 4 -o.datatype = "uinteger" - -o = x:option(ListValue, "unit", translate("Unit")) -o.default = def_unit_dl or "kbytes" -o:value("bytes", "Bytes/s") -o:value("kbytes", "KBytes/s") -o:value("mbytes", "MBytes/s") + x = m:section(TypedSection, "download", translate("Static QoS-Download Rate")) + x.anonymous = true + x.addremove = true + x.template = "cbi/tblsection" + + o = x:option(Value, "hostname", translate("Hostname")) + o.datatype = "hostname" + o.default = 'undefined' + + if has_ipv6 then + o = x:option(Value, "ipaddr", translate("IP Address (v4 / v6)")) + else + o = x:option(Value, "ipaddr", translate("IP Address (v4 Only)")) + end + o.datatype = "ipaddr" + if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") then + o.titleref = luci.dispatcher.build_url("admin", "status", "overview") + end + + o = x:option(Value, "rate", translate("Rate")) + o.default = def_rate_dl or '50' + o.size = 4 + o.datatype = "uinteger" + + o = x:option(ListValue, "unit", translate("Unit")) + o.default = def_unit_dl or "kbytes" + o:value("bytes", "Bytes/s") + o:value("kbytes", "KBytes/s") + o:value("mbytes", "MBytes/s") -- -- Static Limit Rate - Upload Rate -- -y = m:section(TypedSection, "upload", translate("Static QoS-Upload Rate")) -y.anonymous = true -y.addremove = true -y.template = "cbi/tblsection" - -o = y:option(Value, "hostname", translate("Hostname")) -o.datatype = "hostname" -o.default = 'undefined' + y = m:section(TypedSection, "upload", translate("Static QoS-Upload Rate")) + y.anonymous = true + y.addremove = true + y.template = "cbi/tblsection" + + o = y:option(Value, "hostname", translate("Hostname")) + o.datatype = "hostname" + o.default = 'undefined' + + if has_ipv6 then + o = y:option(Value, "ipaddr", translate("IP Address (v4 / v6)")) + else + o = y:option(Value, "ipaddr", translate("IP Address (v4 Only)")) + end + o.datatype = "ipaddr" + if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") then + o.titleref = luci.dispatcher.build_url("admin", "status", "overview") + end + + o = y:option(Value, "macaddr", translate("MAC (optional)")) + o.rmempty = true + o.datatype = "macaddr" + + o = y:option(Value, "rate", translate("Rate")) + o.default = def_rate_ul or '50' + o.size = 4 + o.datatype = "uinteger" + + o = y:option(ListValue, "unit", translate("Unit")) + o.default = def_unit_ul or "kbytes" + o:value("bytes", "Bytes/s") + o:value("kbytes", "KBytes/s") + o:value("mbytes", "MBytes/s") -if has_ipv6 then - o = y:option(Value, "ipaddr", translate("IP Address (v4 / v6)")) -else - o = y:option(Value, "ipaddr", translate("IP Address (v4 Only)")) -end -o.datatype = "ipaddr" -if nixio.fs.access("/tmp/dhcp.leases") or nixio.fs.access("/var/dhcp6.leases") then - o.titleref = luci.dispatcher.build_url("admin", "status", "overview") end -o = y:option(Value, "macaddr", translate("MAC (optional)")) -o.rmempty = true -o.datatype = "macaddr" - -o = y:option(Value, "rate", translate("Rate")) -o.default = def_rate_ul or '50' -o.size = 4 -o.datatype = "uinteger" +-- +-- Traffic Priority Settings +-- +if enable_priority == "1" then -o = y:option(ListValue, "unit", translate("Unit")) -o.default = def_unit_ul or "kbytes" -o:value("bytes", "Bytes/s") -o:value("kbytes", "KBytes/s") -o:value("mbytes", "MBytes/s") + s = m:section(TypedSection, "priority", translate("Traffic Priority Settings")) + s.anonymous = true + s.addremove = true + s.template = "cbi/tblsection" + + o = s:option(ListValue, "protocol", translate("Protocol")) + o.default = "tcp" + o:value("tcp", "TCP") + o:value("udp", "UDP") + o:value("udplite", "UDP-Lite") + o:value("sctp", "SCTP") + o:value("dccp", "DCCP") + + o = s:option(ListValue, "priority", translate("Priority")) + o.default = "1" + o:value("-400", "1") + o:value("-300", "2") + o:value("-225", "3") + o:value("-200", "4") + o:value("-150", "5") + o:value("-100", "6") + o:value("0", "7") + o:value("50", "8") + o:value("100", "9") + o:value("225", "10") + o:value("300", "11") + + o = s:option(Value, "service", translate("Service"), translate("e.g. https, 23, (separator is comma)")) + o.default = '?' + + o = s:option(Value, "comment", translate("Comment")) + o.default = '?' end -- --- Traffic Priority Settings +-- limit speed by mac address -- -if enable_priority == "1" then +o = s:taboption("limitmac", Flag, "limit_mac_enable", translate("Limit Enable"), translate("Enable Limit Rate Feature")) +o.default = limit_mac_enable or o.enabled +o.rmempty = false -s = m:section(TypedSection, "priority", translate("Traffic Priority Settings")) -s.anonymous = true -s.addremove = true -s.template = "cbi/tblsection" - -o = s:option(ListValue, "protocol", translate("Protocol")) -o.default = "tcp" -o:value("tcp", "TCP") -o:value("udp", "UDP") -o:value("udplite", "UDP-Lite") -o:value("sctp", "SCTP") -o:value("dccp", "DCCP") - -o = s:option(ListValue, "priority", translate("Priority")) -o.default = "1" -o:value("-400", "1") -o:value("-300", "2") -o:value("-225", "3") -o:value("-200", "4") -o:value("-150", "5") -o:value("-100", "6") -o:value("0", "7") -o:value("50", "8") -o:value("100", "9") -o:value("225", "10") -o:value("300", "11") - -o = s:option(Value, "service", translate("Service"), translate("e.g. https, 23, (separator is comma)")) -o.default = '?' - -o = s:option(Value, "comment", translate("Comment")) -o.default = '?' +-- +-- Static By Mac Address +-- +if limit_mac_enable == "1" then + + x = m:section(TypedSection, "client", translate("Limit Traffic Rate By Mac Address")) + x.anonymous = true + x.addremove = true + x.template = "cbi/tblsection" + + o = x:option(Value, "hostname", translate("Hostname")) + o.datatype = "hostname" + o.default = '' + + o = x:option(Value, "macaddr", translate("MAC Address")) + o.rmempty = true + o.datatype = "macaddr" + + o = x:option(Value, "drate", translate("Download Rate")) + o.default = def_rate_dl or '50' + o.size = 4 + o.datatype = "uinteger" + + o = x:option(ListValue, "drunit", translate("Unit")) + o.default = def_unit_dl or "kbytes" + o:value("bytes", "Bytes/s") + o:value("kbytes", "KBytes/s") + o:value("mbytes", "MBytes/s") + + o = x:option(Value, "urate", translate("Upload Rate")) + o.default = def_rate_ul or '50' + o.size = 4 + o.datatype = "uinteger" + + o = x:option(ListValue, "urunit", translate("Unit")) + o.default = def_unit_ul or "kbytes" + o:value("bytes", "Bytes/s") + o:value("kbytes", "KBytes/s") + o:value("mbytes", "MBytes/s") end diff --git a/applications/luci-app-nft-qos/po/ar/nft-qos.po b/applications/luci-app-nft-qos/po/ar/nft-qos.po index 633d24b546..a8e56edd85 100644 --- a/applications/luci-app-nft-qos/po/ar/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ar/nft-qos.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-03 12:10+0000\n" -"Last-Translator: Marwan Amireh <amirehmarwan@gmail.com>\n" +"PO-Revision-Date: 2021-03-04 13:50+0000\n" +"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/ar/>\n" "Language: ar\n" @@ -9,7 +9,7 @@ msgstr "" "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.1-dev\n" +"X-Generator: Weblate 4.5.1-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -21,71 +21,73 @@ msgstr "" msgid "Collecting data..." msgstr "جمع البيانات..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" -msgstr "" +msgstr "تعليق" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -93,84 +95,93 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" -msgstr "" +msgstr "اسم المضيف" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" -msgstr "" +msgstr "لا توجد معلومات متاحة" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" -msgstr "" +msgstr "بروتوكول" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -186,23 +197,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -210,32 +221,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/bg/nft-qos.po b/applications/luci-app-nft-qos/po/bg/nft-qos.po index cf0979b0d5..aa30db5804 100644 --- a/applications/luci-app-nft-qos/po/bg/nft-qos.po +++ b/applications/luci-app-nft-qos/po/bg/nft-qos.po @@ -14,71 +14,73 @@ msgstr "" msgid "Collecting data..." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -86,8 +88,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "" @@ -96,46 +99,54 @@ msgstr "" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -148,22 +159,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -179,23 +190,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -203,32 +214,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/bn_BD/nft-qos.po b/applications/luci-app-nft-qos/po/bn_BD/nft-qos.po index 9560b7a0f9..8e9adf37d5 100644 --- a/applications/luci-app-nft-qos/po/bn_BD/nft-qos.po +++ b/applications/luci-app-nft-qos/po/bn_BD/nft-qos.po @@ -14,71 +14,73 @@ msgstr "" msgid "Collecting data..." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -86,8 +88,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "" @@ -96,46 +99,54 @@ msgstr "" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -148,22 +159,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -179,23 +190,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -203,32 +214,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/ca/nft-qos.po b/applications/luci-app-nft-qos/po/ca/nft-qos.po index f8d98dc77d..a26e661b47 100644 --- a/applications/luci-app-nft-qos/po/ca/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ca/nft-qos.po @@ -20,71 +20,73 @@ msgstr "" msgid "Collecting data..." msgstr "S’estan recollint dades…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,8 +94,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Nom de l’amfitrió" @@ -102,46 +105,54 @@ msgstr "Nom de l’amfitrió" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "Unitat" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/cs/nft-qos.po b/applications/luci-app-nft-qos/po/cs/nft-qos.po index 59525013a8..504fa3e396 100644 --- a/applications/luci-app-nft-qos/po/cs/nft-qos.po +++ b/applications/luci-app-nft-qos/po/cs/nft-qos.po @@ -1,90 +1,92 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-04 05:03+0000\n" -"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Adam Salač <adam@salac.me>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/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 3.11-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 msgid "Bytes Total" -msgstr "" +msgstr "Celkově bajtů" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 msgid "Collecting data..." msgstr "Shromažďování údajů…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Komentář" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,8 +94,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Název počítače" @@ -102,46 +105,55 @@ msgstr "Název počítače" msgid "IP Address" msgstr "IP adresa" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +#, fuzzy +msgid "MAC Address" +msgstr "MAC adresa" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +166,22 @@ msgstr "Údaje nejsou k dispozici" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protokol" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +197,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +221,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/de/nft-qos.po b/applications/luci-app-nft-qos/po/de/nft-qos.po index b021f2f76a..9764c2c3ed 100644 --- a/applications/luci-app-nft-qos/po/de/nft-qos.po +++ b/applications/luci-app-nft-qos/po/de/nft-qos.po @@ -1,14 +1,14 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-11 21:29+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2021-02-08 04:46+0000\n" +"Last-Translator: Zocker1012 <julian.schoemer.1997@gmail.com>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/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 4.2-dev\n" +"X-Generator: Weblate 4.5-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -20,80 +20,83 @@ msgstr "Bytes Gesamt" msgid "Collecting data..." msgstr "Sammle Daten..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Kommentar" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "Standard-Downloadrate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "Standard-Download-Einheit" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "Standard-Netzwerkschnittstelle" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "Standard-Uploadrate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "Standard-Upload-Einheit" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "Standardeinheit für Downloadrate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "Standardeinheit für Upload-Rate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "Standardwert für Download-Bandbreite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "Standardwert für Downloadrate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "Standardwert für Upload-Bandbreite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "Standardwert für Upload-Rate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "Download-Bandbreite (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "Download-Rate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "Aktiviere die Limit-Rate-Funktion" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "Aktiviere Traffic-Priorisierung" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "Diese Funktion aktivieren" #: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 msgid "Grant UCI access for luci-app-nft-qos" -msgstr "Gewähre UCI Zugriff auf luci-app-nft-qos" +msgstr "UCI-Zugriff für luci-app-nft-qos erlauben" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Hostname" @@ -102,49 +105,57 @@ msgstr "Hostname" msgid "IP Address" msgstr "IP-Adresse" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "IP-Adresse (v4 / v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "IP-Adresse (nur v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "Limit aktivieren" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "Limit-Typ" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "MAC (optional)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "NFT-QoS-Einstellungen" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Netzwerkschnittstelle für Traffic Shaping, z.B. br-lan, eth0.1, eth0, etc." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" "Netzwerk, auf das angewandt werden soll, z.B. 192.168.1.0/24, 10.2.0.0/16, " "etc." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" "Netzwerk, auf das angewandt werden soll, z.B. AAAA::BBBB/64, CCCC::1/128, " @@ -159,22 +170,22 @@ msgstr "Keine Informationen verfügbar" msgid "Packets Total" msgstr "Pakete Gesamt" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "Priorität" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protokoll" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "QoS via Nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "Rate" @@ -190,23 +201,23 @@ msgstr "Echtzeit-Rate" msgid "Realtime Upload Rate" msgstr "Echtzeit-Uploadrate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "Service" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "Statische QoS-Download-Rate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "Statische QoS-Upload-Rate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "Zielnetzwerk (IPv4/MASK)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "Zielnetzwerk6 (IPv6/MASK)" @@ -215,32 +226,35 @@ msgid "This page gives an overview over currently download/upload rate." msgstr "" "Diese Seite gibt einen Überblick über die aktuelle Download-/Uploadrate." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "Einstellungen für Traffic-Priorität" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "Typ der Limit-Rate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "Einheit" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "Upload-Bandbreite (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "Uploadrate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "Whitelist für die Limit-Rate" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "z.B. https, 23, (Trennzeichen ist Komma)" diff --git a/applications/luci-app-nft-qos/po/el/nft-qos.po b/applications/luci-app-nft-qos/po/el/nft-qos.po index 29531c9906..154c8138da 100644 --- a/applications/luci-app-nft-qos/po/el/nft-qos.po +++ b/applications/luci-app-nft-qos/po/el/nft-qos.po @@ -1,14 +1,14 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-11-23 18:06+0000\n" -"Last-Translator: lamprakis <lamprakisa@yahoo.gr>\n" +"PO-Revision-Date: 2020-12-01 16:16+0000\n" +"Last-Translator: Marios Koutsoukis <marioskoutsoukis2006@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/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 3.10-dev\n" +"X-Generator: Weblate 4.4-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -20,71 +20,73 @@ msgstr "" msgid "Collecting data..." msgstr "Συλλογή δεδομένων..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,56 +94,65 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" -msgstr "" +msgstr "Όνομα κεντρικού υπολογιστή" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/en/nft-qos.po b/applications/luci-app-nft-qos/po/en/nft-qos.po index 1da86e6c5f..930a145f4c 100644 --- a/applications/luci-app-nft-qos/po/en/nft-qos.po +++ b/applications/luci-app-nft-qos/po/en/nft-qos.po @@ -14,71 +14,73 @@ msgstr "" msgid "Collecting data..." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -86,8 +88,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "" @@ -96,46 +99,54 @@ msgstr "" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -148,22 +159,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -179,23 +190,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -203,32 +214,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/es/nft-qos.po b/applications/luci-app-nft-qos/po/es/nft-qos.po index 41dfeb7ab9..5edd09bb0c 100644 --- a/applications/luci-app-nft-qos/po/es/nft-qos.po +++ b/applications/luci-app-nft-qos/po/es/nft-qos.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-05-02 10:21+0000\n" +"PO-Revision-Date: 2021-04-01 17:26+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/es/>\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -23,71 +23,73 @@ msgstr "Total de bytes" msgid "Collecting data..." msgstr "Recolectando datos…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Comentario" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "Velocidad de descarga predeterminada" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "Unidad de descarga predeterminada" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "Interfaz de red predeterminada" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "Velocidad de carga predeterminada" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "Unidad de carga predeterminada" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "Unidad predeterminada para la velocidad de descarga" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "Unidad predeterminada para la velocidad de carga" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "Valor predeterminado para el ancho de banda de descarga" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "Valor predeterminado para la velocidad de descarga" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "Valor predeterminado para el ancho de banda de carga" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "Valor predeterminado para la velocidad de carga" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "Ancho de banda de descarga (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "Velocidad de descarga" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "Activar función de límite de velocidad" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "Activar prioridad de tráfico" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "Activar esta característica" @@ -95,58 +97,67 @@ msgstr "Activar esta característica" msgid "Grant UCI access for luci-app-nft-qos" msgstr "Conceder acceso UCI para luci-app-nft-qos" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" -msgstr "Nombre del host" +msgstr "Nombre de host" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" msgstr "Dirección IP" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "Dirección IP (v4/v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "Dirección IP (sólo v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "Activar límite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "Limitar la tasa de tráfico por dirección Mac" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "Tipo de límite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "MAC (opcional)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "Dirección MAC" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "Configuración de NFT-QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Interfaz de red para configuración de tráfico, por ejemplo, br-lan, eth0.1, " "eth0, etc." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "Red a aplicar, por ejemplo. 192.168.1.0/24, 10.2.0.0/16, etc." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "Red a aplicar, por ejemplo. AAAA::BBBB/64, CCCC::1/128, etc." @@ -159,22 +170,22 @@ msgstr "No hay información disponible" msgid "Packets Total" msgstr "Paquetes totales" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "Prioridad" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protocolo" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "Qos sobre Nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "Velocidad" @@ -190,23 +201,23 @@ msgstr "Velocidad en tiempo real" msgid "Realtime Upload Rate" msgstr "Velocidad de carga en tiempo real" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "Servicio" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "Velocidad de descarga de QoS estática" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "Velocidad de carga de QoS estática" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "Red de destino (IPv4 / MASK)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "Red de destino 6 (IPv6/MÁSCARA)" @@ -216,32 +227,35 @@ msgstr "" "Esta página ofrece una vista general sobre la velocidad de descarga/carga " "actual." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "Ajustes de prioridad de tráfico" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "Tipo de límite de velocidad" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "Unidad" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "Ancho de banda de carga (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "Velocidad de carga" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "Lista blanca para el límite de velocidad" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "p.ej. https, 23, (el separador es una coma)" diff --git a/applications/luci-app-nft-qos/po/fi/nft-qos.po b/applications/luci-app-nft-qos/po/fi/nft-qos.po index 1491577d5e..ed476f5787 100644 --- a/applications/luci-app-nft-qos/po/fi/nft-qos.po +++ b/applications/luci-app-nft-qos/po/fi/nft-qos.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-23 07:41+0000\n" +"PO-Revision-Date: 2021-04-05 07:56+0000\n" "Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/fi/>\n" @@ -8,7 +8,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -20,71 +20,73 @@ msgstr "" msgid "Collecting data..." msgstr "Kerätään tietoja..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Kommentti" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,56 +94,65 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" -msgstr "Palvelinnimi" +msgstr "Nimi" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "Ei tietoja saatavilla" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protokolla" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/fr/nft-qos.po b/applications/luci-app-nft-qos/po/fr/nft-qos.po index 58e6ad6e3e..4aece3d762 100644 --- a/applications/luci-app-nft-qos/po/fr/nft-qos.po +++ b/applications/luci-app-nft-qos/po/fr/nft-qos.po @@ -1,14 +1,14 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-08 23:37+0000\n" -"Last-Translator: Florian L. <florian.ligneul@gmail.com>\n" +"PO-Revision-Date: 2020-10-24 08:56+0000\n" +"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/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.0-dev\n" +"X-Generator: Weblate 4.3.1\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -20,71 +20,73 @@ msgstr "Total octets" msgid "Collecting data..." msgstr "Récupération des données…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Commentaire" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,8 +94,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Nom d'hôte" @@ -102,46 +105,54 @@ msgstr "Nom d'hôte" msgid "IP Address" msgstr "Adresse IP" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "Adresse MAC" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "Information indisponible" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protocole" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "Service" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/he/nft-qos.po b/applications/luci-app-nft-qos/po/he/nft-qos.po index 2ba5175208..fc157fb4a1 100644 --- a/applications/luci-app-nft-qos/po/he/nft-qos.po +++ b/applications/luci-app-nft-qos/po/he/nft-qos.po @@ -1,8 +1,15 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-01-15 22:31+0000\n" +"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsnft-qos/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 4.5-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -12,73 +19,75 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 msgid "Collecting data..." -msgstr "" +msgstr "נאספים נתונים…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -86,8 +95,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "" @@ -96,74 +106,82 @@ msgstr "" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" -msgstr "" +msgstr "אין פרטים זמינים" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -179,23 +197,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -203,32 +221,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/hi/nft-qos.po b/applications/luci-app-nft-qos/po/hi/nft-qos.po index 64dc53de2e..c850440c15 100644 --- a/applications/luci-app-nft-qos/po/hi/nft-qos.po +++ b/applications/luci-app-nft-qos/po/hi/nft-qos.po @@ -14,71 +14,73 @@ msgstr "" msgid "Collecting data..." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -86,8 +88,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "" @@ -96,46 +99,54 @@ msgstr "" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -148,22 +159,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -179,23 +190,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -203,32 +214,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/hu/nft-qos.po b/applications/luci-app-nft-qos/po/hu/nft-qos.po index 5965d7d693..c8d7835bc0 100644 --- a/applications/luci-app-nft-qos/po/hu/nft-qos.po +++ b/applications/luci-app-nft-qos/po/hu/nft-qos.po @@ -20,71 +20,73 @@ msgstr "Bájt összesen" msgid "Collecting data..." msgstr "Adatok összegyűjtése…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Megjegyzés" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "Alapértelmezett letöltési arány" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "Alapértelmezett letöltési mértékegység" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "Alapértelmezett hálózati csatoló" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "Alapértelmezett feltöltési arány" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "Alapértelmezett feltöltési mértékegység" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "Alapértelmezett mértékegység a letöltési aránynál" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "Alapértelmezett mértékegység a feltöltési aránynál" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "Alapértelmezett érték a letöltési sávszélességnél" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "Alapértelmezett érték a letöltési aránynál" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "Alapértelmezett érték a feltöltési sávszélességnél" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "Alapértelmezett érték a feltöltési aránynál" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "Letöltési sávszélesség (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "Letöltési arány" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "Arány korlátozása funkció engedélyezése" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "Forgalomprioritás engedélyezése" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "A funkció engedélyezése" @@ -92,8 +94,9 @@ msgstr "A funkció engedélyezése" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Gépnév" @@ -102,47 +105,55 @@ msgstr "Gépnév" msgid "IP Address" msgstr "IP-cím" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "IP-cím (v4/v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "IP-cím (csak v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "Korlátozás engedélyezése" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "Korlát típusa" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "MAC (elhagyható)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "NFT-QoS beállítások" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Hálózati csatoló a forgalom formálásához, például br-lan, eth0.1, eth0, stb." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "Alkalmazandó hálózat, például 192.168.1.0/24, 10.2.0.0/16, stb." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "Alkalmazandó hálózat, például AAAA::BBBB/64, CCCC::1/128, stb." @@ -155,22 +166,22 @@ msgstr "Nincs elérhető információ" msgid "Packets Total" msgstr "Csomagok összesen" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "Prioritás" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protokoll" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "QoS Nftables fölött" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "Arány" @@ -186,23 +197,23 @@ msgstr "Valós idejű arány" msgid "Realtime Upload Rate" msgstr "Valós idejű feltöltési arány" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "Szolgáltatás" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "Statikus QoS-letöltési arány" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "Statikus QoS feltöltési arány" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "Célhálózat (IPv4/MASZK)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "Célhálózat 6 (IPv6/MASZK)" @@ -211,32 +222,35 @@ msgid "This page gives an overview over currently download/upload rate." msgstr "" "Ez az oldal áttekintést ad a jelenlegi letöltési és feltöltési arányról." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "Forgalomprioritás beállításai" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "Arány korlátozásának típusa" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "Mértékegység" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "Feltöltési sávszélesség (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "Feltöltési arány" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "Fehérlista az arány korlátázásához" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "például https, 23, (vesszővel elválasztva)" diff --git a/applications/luci-app-nft-qos/po/it/nft-qos.po b/applications/luci-app-nft-qos/po/it/nft-qos.po index 31e46c7ad0..7f41284bef 100644 --- a/applications/luci-app-nft-qos/po/it/nft-qos.po +++ b/applications/luci-app-nft-qos/po/it/nft-qos.po @@ -1,90 +1,92 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-03-04 04:29+0000\n" -"Last-Translator: TuxAlex0 <alex.skatingcassano@gmail.com>\n" +"PO-Revision-Date: 2021-05-15 14:32+0000\n" +"Last-Translator: Marco Mihai Condrache <marcomihaicondrache@gmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/it/>\n" "Language: it\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 msgid "Bytes Total" -msgstr "" +msgstr "Bytes totali" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 msgid "Collecting data..." msgstr "Raccolta dati..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Commento" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,56 +94,65 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Hostname" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" -msgstr "" +msgstr "Indirizzo IP" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "Nessuna informazione disponibile" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protocollo" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/ja/nft-qos.po b/applications/luci-app-nft-qos/po/ja/nft-qos.po index 0558379505..6c0e346ed5 100644 --- a/applications/luci-app-nft-qos/po/ja/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ja/nft-qos.po @@ -1,14 +1,14 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-16 16:09+0000\n" -"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" +"PO-Revision-Date: 2020-12-10 19:29+0000\n" +"Last-Translator: Ryota <21ryotagamer@gmail.com>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/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 4.1.1-dev\n" +"X-Generator: Weblate 4.4-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -20,80 +20,83 @@ msgstr "" msgid "Collecting data..." msgstr "データを収集中..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "コメント" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" -msgstr "" +msgstr "ダウンロード帯域幅のデフォルト値" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" -msgstr "" +msgstr "アップロード帯域幅のデフォルト値" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" -msgstr "" +msgstr "ダウンロード帯域幅 (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" #: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" +msgstr "luci-app-nft-qosにUCIアクセスを許可" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "ホスト名" @@ -102,74 +105,82 @@ msgstr "ホスト名" msgid "IP Address" msgstr "IP アドレス" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" -msgstr "" +msgstr "IP アドレス (v4 / v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" -msgstr "" +msgstr "IP アドレス (v4 のみ)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "MAC アドレス" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" -msgstr "" +msgstr "NFT-QoS 設定" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" -msgstr "情報がありません" +msgstr "情報なし" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" -msgstr "" +msgstr "優先度" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "プロトコル" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "サービス" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" -msgstr "" +msgstr "アップロード帯域幅 (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/ko/nft-qos.po b/applications/luci-app-nft-qos/po/ko/nft-qos.po index b94a4d96a2..4c41bf86d9 100644 --- a/applications/luci-app-nft-qos/po/ko/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ko/nft-qos.po @@ -1,8 +1,14 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-01-17 20:54+0000\n" +"Last-Translator: ANTEGRAL <antegral@antegral.net>\n" +"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsnft-qos/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.5-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -12,73 +18,75 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 msgid "Collecting data..." -msgstr "" +msgstr "데이터 수집 중..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -86,56 +94,65 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" -msgstr "" +msgstr "호스트 이름" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -148,22 +165,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -179,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -203,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/mr/nft-qos.po b/applications/luci-app-nft-qos/po/mr/nft-qos.po index a776a6be6a..65d88b3de2 100644 --- a/applications/luci-app-nft-qos/po/mr/nft-qos.po +++ b/applications/luci-app-nft-qos/po/mr/nft-qos.po @@ -20,71 +20,73 @@ msgstr "" msgid "Collecting data..." msgstr "डेटा संकलित करीत आहे ..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "टिप्पणी" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,8 +94,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "होस्टनाव" @@ -102,46 +105,54 @@ msgstr "होस्टनाव" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "प्रोटोकॉल" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "युनिट" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/ms/nft-qos.po b/applications/luci-app-nft-qos/po/ms/nft-qos.po index 2f4635008a..0a09f65845 100644 --- a/applications/luci-app-nft-qos/po/ms/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ms/nft-qos.po @@ -20,71 +20,73 @@ msgstr "" msgid "Collecting data..." msgstr "Mengumpul data..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,8 +94,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "" @@ -102,46 +105,54 @@ msgstr "" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po b/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po index 224a8bfccd..b6664bd581 100644 --- a/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po +++ b/applications/luci-app-nft-qos/po/nb_NO/nft-qos.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-10-30 03:21+0000\n" +"PO-Revision-Date: 2021-04-04 07:26+0000\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/nb_NO/>\n" @@ -8,7 +8,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -20,71 +20,73 @@ msgstr "" msgid "Collecting data..." msgstr "Samler inn data…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" -msgstr "" +msgstr "Kommentar" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,56 +94,65 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" -msgstr "" +msgstr "Vertsnavn" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" -msgstr "" +msgstr "IP-adresse" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" -msgstr "" +msgstr "Protokoll" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/pl/nft-qos.po b/applications/luci-app-nft-qos/po/pl/nft-qos.po index 42a259661c..83ee13c298 100644 --- a/applications/luci-app-nft-qos/po/pl/nft-qos.po +++ b/applications/luci-app-nft-qos/po/pl/nft-qos.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-02 15:56+0000\n" +"PO-Revision-Date: 2020-09-19 18:03+0000\n" "Last-Translator: Marcin Net <marcin.net@linux.pl>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/pl/>\n" @@ -9,7 +9,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -21,71 +21,73 @@ msgstr "Bajty ogółem" msgid "Collecting data..." msgstr "Trwa zbieranie danych..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Komentarz" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "Domyślna szybkość pobierania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "Domyślna jednostka pobierania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "Domyślny interfejs sieciowy" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "Domyślna szybkość przesyłania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "Domyślna jednostka przesyłania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "Domyślna jednostka dla szybkości pobierania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "Domyślna jednostka szybkości wysyłania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "Wartość domyślna dla przepustowości pobierania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "Wartość domyślna dla szybkości pobierania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "Wartość domyślna dla przepustowości wysyłania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "Wartość domyślna szybkości wysyłania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "Przepustowość pobierania (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "Szybkość pobierania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" -msgstr "Włączyć funkcję limitu prędkości" +msgstr "Włącz funkcję limitu prędkości" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "Włącz priorytet ruchu" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "Włącz tę funkcję" @@ -93,8 +95,9 @@ msgstr "Włącz tę funkcję" msgid "Grant UCI access for luci-app-nft-qos" msgstr "Udziel dostępu UCI do luci-app-nft-qos" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Nazwa hosta" @@ -103,47 +106,55 @@ msgstr "Nazwa hosta" msgid "IP Address" msgstr "Adres IP" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "Adres IP (v4/v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "Adres IP (tylko v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "Włącz limit" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "Ogranicz natężenie ruchu według adresu Mac" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "Typ limitu" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "MAC (opcjonalnie)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "Adres MAC" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "Ustawienia NFT-QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Interfejs sieciowy dla kształtowania ruchu, np. br-lan, eth0.1, eth0 itp." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "Sieć do zastosowania, np. 192.168.1.0/24, 10.2.0.0/16, itp." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "Sieć do zastosowania, np. AAAA::BBBB/64, CCCC::1/128, itp." @@ -156,22 +167,22 @@ msgstr "Brak dostępnych informacji" msgid "Packets Total" msgstr "Suma pakietów" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "Priorytet" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protokół" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "QoS przez Nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "Tempo" @@ -187,23 +198,23 @@ msgstr "Szybkość w czasie rzeczywistym" msgid "Realtime Upload Rate" msgstr "Szybkość wysyłania w czasie rzeczywistym" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "Usługa" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "Statyczna prędkość pobierania QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "Statyczna prędkość wysyłania QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "Sieć docelowa (IPv4/Maska)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "Sieć docelowa (IPv6/Maska)" @@ -211,32 +222,35 @@ msgstr "Sieć docelowa (IPv6/Maska)" msgid "This page gives an overview over currently download/upload rate." msgstr "Ta strona zawiera przegląd aktualnej prędkości pobierania/wysyłania." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "Ustawienia priorytetu ruchu sieciowego" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "Typ limitu prędkości" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "Jednostka" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "Przepustowość przesyłania (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "Szybkość wysyłania" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "Biała lista dla limitu prędkości" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "np. https, 23, (separator to przecinek)" diff --git a/applications/luci-app-nft-qos/po/pt/nft-qos.po b/applications/luci-app-nft-qos/po/pt/nft-qos.po index 85206e7eaf..5126ddd28b 100644 --- a/applications/luci-app-nft-qos/po/pt/nft-qos.po +++ b/applications/luci-app-nft-qos/po/pt/nft-qos.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-02 10:21+0000\n" +"PO-Revision-Date: 2020-09-18 18:36+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/pt/>\n" @@ -8,7 +8,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -20,71 +20,73 @@ msgstr "Total de Bytes" msgid "Collecting data..." msgstr "A recolher dados..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Comentário" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "Taxa de Descarregamento Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "Unidade de Descarregamento Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "Interface de Rede Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "Taxa de Envio Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "Unidade de Envio Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "Unidade padrão para taxa de descarregamento" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "Unidade padrão para taxa de envio" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "Valor padrão para largura de banda de descarregamento" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "Valor padrão para taxa de descarregamento" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "Valor padrão para a largura de banda de envio" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "Valor padrão para a taxa de envio" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "Largura de Banda de Descarregamento (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "Taxa de Descarregamento" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "Ativar Recurso de Limite de Taxa" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "Ativar Prioridade de Tráfego" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "Ativar este recurso" @@ -92,8 +94,9 @@ msgstr "Ativar este recurso" msgid "Grant UCI access for luci-app-nft-qos" msgstr "Conceder acesso UCI ao luci-app-nft-qos" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Nome do Host" @@ -102,48 +105,56 @@ msgstr "Nome do Host" msgid "IP Address" msgstr "Endereço IP" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "Endereço IP (v4 / v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "Endereço IP (apenas v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "Limitar Ativação" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "Limitar a taxa de tráfego por endereço Mac" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "Tipo de Limite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "MAC (opcional)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "Endereço MAC" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "Configurações NFT-QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "Interface de Rede para Traffic Shaping, por exemplo, br-lan, eth0.1, eth0, " "etc." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "Rede a aplicar, por exemplo, 192.168.1.0/24, 10.2.0.0/16, etc." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "Rede a aplicar, por exemplo, AAAA::BBBBB/64, CCCC::1/128, etc." @@ -156,22 +167,22 @@ msgstr "Sem informação disponível" msgid "Packets Total" msgstr "Total de Pacotes" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "Prioridade" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protocolo" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "Qos sobre Nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "Taxa" @@ -187,23 +198,23 @@ msgstr "Taxa em Tempo Real" msgid "Realtime Upload Rate" msgstr "Taxa de Envio em Tempo Real" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "Serviço" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "Taxa Estática de Descarregamanto de QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "Taxa Estática de Envio QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "Rede de Destino (IPv4/MASK)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "Rede6 de Destino (IPv6/MASK)" @@ -212,32 +223,35 @@ msgid "This page gives an overview over currently download/upload rate." msgstr "" "Esta página dá uma visão geral sobre a taxa de descarregamento/envio atual." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "Configurações de Prioridade de Tráfego" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "Tipo de Taxa Limite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "Unidade" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "Largura de Banda de Envio (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "Taxa de Envio" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "Lista Branca para a Taxa Limite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "por exemplo https, 23, (o separador é vírgula)" diff --git a/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po b/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po index 924ea61adc..768e872d22 100644 --- a/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po +++ b/applications/luci-app-nft-qos/po/pt_BR/nft-qos.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-02 10:21+0000\n" +"PO-Revision-Date: 2020-09-17 16:34+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsnft-qos/pt_BR/>\n" @@ -8,7 +8,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -20,71 +20,73 @@ msgstr "Total de Bytes" msgid "Collecting data..." msgstr "Coletando dados..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Comentário" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "Taxa de Download Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "Unidade de Download Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "Interface de Rede Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "Taxa de Upload Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "Unidade de Upload Padrão" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "Unidade padrão para taxa de download" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "Unidade padrão para taxa de upload" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "Valor padrão para a largura de banda para download" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "Valor padrão para a taxa de download" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "Valor padrão para a largura de banda de upload" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "Valor padrão para a taxa de upload" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "Largura de Banda de Download (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "Taxa de Download" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "Ativar o Recurso de Limitação de Taxa" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "Ativar a Prioridade de Tráfego" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "Ativar este recurso" @@ -92,8 +94,9 @@ msgstr "Ativar este recurso" msgid "Grant UCI access for luci-app-nft-qos" msgstr "Conceda acesso UCI ao luci-app-nft-qos" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Nome do equipamento" @@ -102,48 +105,56 @@ msgstr "Nome do equipamento" msgid "IP Address" msgstr "Endereço IP" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "Endereço IP (v4 / v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "Endereço IP (apenas v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "Ativar Limite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "Limite a taxa de tráfego através de um endereço Mac" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "Tipo de Limite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "MAC (opcional)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "Endereço MAC" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "Configurações NFT-QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" "A Interface de rede para realizar Traffic Shaping, por exemplo, br-lan, " "eth0.1, eth0.1, eth0, etc." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "Rede a ser aplicada, por exemplo, 192.168.1.0/24, 10.2.0.0/16, etc." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "Rede a ser aplicada, por exemplo, AAAA::BBBB/64, CCCC:1/128, etc." @@ -156,22 +167,22 @@ msgstr "Nenhuma informação disponível" msgid "Packets Total" msgstr "Total de Pacotes" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "Prioridade" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protocolo" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "Qos sobre Nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "Taxa" @@ -187,23 +198,23 @@ msgstr "Taxa em Tempo Real" msgid "Realtime Upload Rate" msgstr "Taxa de Upload em Tempo Real" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "Serviço" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "QoS estático - Taxa de download" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "QoS-Estático - Taxa de Upload" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "Rede de Destino (IPv4/MASK)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "Rede de Destino (IPV6/MASK)" @@ -211,32 +222,35 @@ msgstr "Rede de Destino (IPV6/MASK)" msgid "This page gives an overview over currently download/upload rate." msgstr "Esta página dá uma visão geral sobre a taxa atual de download/upload." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "Configuração da Prioridade do Tráfego" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "Tipo de Taxa Limite" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "Unidade" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "Largura de Banda de Upload (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "Taxa de Upload" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "Lista Branca para a Limitação da Taxa" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "por exemplo, https, 23, (separado por vírgulas)" diff --git a/applications/luci-app-nft-qos/po/ro/nft-qos.po b/applications/luci-app-nft-qos/po/ro/nft-qos.po index d7eebcdc4f..1b2ff1b888 100644 --- a/applications/luci-app-nft-qos/po/ro/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ro/nft-qos.po @@ -21,71 +21,73 @@ msgstr "" msgid "Collecting data..." msgstr "Colectare date..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -93,8 +95,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Numele gazdei ( hostname )" @@ -103,46 +106,54 @@ msgstr "Numele gazdei ( hostname )" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -155,22 +166,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -186,23 +197,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -210,32 +221,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/ru/nft-qos.po b/applications/luci-app-nft-qos/po/ru/nft-qos.po index 303f6969d3..1346073475 100644 --- a/applications/luci-app-nft-qos/po/ru/nft-qos.po +++ b/applications/luci-app-nft-qos/po/ru/nft-qos.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-08 19:47+0000\n" -"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"PO-Revision-Date: 2021-04-09 12:29+0000\n" +"Last-Translator: The_BadUser <vanjavs@mail.ru>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/ru/>\n" "Language: ru\n" @@ -9,7 +9,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -21,71 +21,73 @@ msgstr "Всего байт" msgid "Collecting data..." msgstr "Сбор данных..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Комментарий" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "Скорость загрузки по умолчанию" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" -msgstr "" +msgstr "Единица загрузки по умолчанию" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "Сетевой интерфейс по умолчанию" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "Скорость отправки по умолчанию" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" -msgstr "" +msgstr "Единица загрузки по умолчанию" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" -msgstr "" +msgstr "Единица скорости скачивания по умолчанию" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "Скорость загрузки" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "Включить функцию ограничения скорости" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "Включить приоритет трафика" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "Включить эту функцию" @@ -93,56 +95,65 @@ msgstr "Включить эту функцию" msgid "Grant UCI access for luci-app-nft-qos" msgstr "Предоставить UCI доступ для luci-app-nft-qos" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Имя хоста" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" -msgstr "IP адрес" +msgstr "IP-адрес" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "IP-адрес (v4 / v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "IP-адрес (только v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "Тип лимита" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "MAC (необязательно)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "MAC-адрес" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "МБ" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "Настройки NFT-QoS" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -155,22 +166,22 @@ msgstr "Нет доступной информации" msgid "Packets Total" msgstr "Всего пакетов" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "Приоритет" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Протокол" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" -msgstr "" +msgstr "QoS через nftables" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -180,29 +191,29 @@ msgstr "Скорость загрузки в реальном времени" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 msgid "Realtime Rate" -msgstr "" +msgstr "Скорость в реальном времени" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 msgid "Realtime Upload Rate" msgstr "Скорость отправки в реальном времени" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "Служба" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -210,35 +221,38 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" -msgstr "" +msgstr "Настройки приоритета трафика" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "узел" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 msgid "kB" -msgstr "" +msgstr "кБ" diff --git a/applications/luci-app-nft-qos/po/sk/nft-qos.po b/applications/luci-app-nft-qos/po/sk/nft-qos.po index bc62efa487..37df0909b7 100644 --- a/applications/luci-app-nft-qos/po/sk/nft-qos.po +++ b/applications/luci-app-nft-qos/po/sk/nft-qos.po @@ -20,71 +20,73 @@ msgstr "" msgid "Collecting data..." msgstr "Zbieram dáta..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Komentár" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,8 +94,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Názov hostiteľa" @@ -102,46 +105,54 @@ msgstr "Názov hostiteľa" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "Nie sú dostupné žiadne informácie" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protokol" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/sv/nft-qos.po b/applications/luci-app-nft-qos/po/sv/nft-qos.po index 4865145024..357144fda3 100644 --- a/applications/luci-app-nft-qos/po/sv/nft-qos.po +++ b/applications/luci-app-nft-qos/po/sv/nft-qos.po @@ -1,90 +1,92 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-10-17 20:22+0000\n" -"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n" +"PO-Revision-Date: 2020-11-22 15:35+0000\n" +"Last-Translator: PontusÖsterlindh <pontus@osterlindh.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/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 3.9.1-dev\n" +"X-Generator: Weblate 4.4-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 msgid "Bytes Total" -msgstr "" +msgstr "Bytes Totalt" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 msgid "Collecting data..." msgstr "Samlar in data..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Kommentera" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,8 +94,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Värdnamn" @@ -102,46 +105,54 @@ msgstr "Värdnamn" msgid "IP Address" msgstr "IP-adress" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "Ingen information tillgänglig" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Protokoll" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/templates/nft-qos.pot b/applications/luci-app-nft-qos/po/templates/nft-qos.pot index 17390a055e..3f8068c4b1 100644 --- a/applications/luci-app-nft-qos/po/templates/nft-qos.pot +++ b/applications/luci-app-nft-qos/po/templates/nft-qos.pot @@ -11,71 +11,73 @@ msgstr "" msgid "Collecting data..." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -83,8 +85,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "" @@ -93,46 +96,54 @@ msgstr "" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -145,22 +156,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -176,23 +187,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -200,32 +211,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/tr/nft-qos.po b/applications/luci-app-nft-qos/po/tr/nft-qos.po index 22148309a0..1139f255aa 100644 --- a/applications/luci-app-nft-qos/po/tr/nft-qos.po +++ b/applications/luci-app-nft-qos/po/tr/nft-qos.po @@ -1,243 +1,257 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-09 20:04+0000\n" -"Last-Translator: İsmail Karslı <ismail541236@gmail.com>\n" +"PO-Revision-Date: 2021-05-15 14:32+0000\n" +"Last-Translator: semih <semiht@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnft-qos/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 3.10-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 msgid "Bytes Total" -msgstr "" +msgstr "Bayt Toplamı" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 msgid "Collecting data..." -msgstr "Veri alınıyor..." +msgstr "Veriler toplanıyor..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" -msgstr "" +msgstr "Yorum" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" -msgstr "" +msgstr "Varsayılan İndirme Hızı" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" -msgstr "" +msgstr "Varsayılan İndirme Birimi" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" -msgstr "" +msgstr "Varsayılan Ağ Arayüzü" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" -msgstr "" +msgstr "Varsayılan Yükleme Hızı" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" -msgstr "" +msgstr "Varsayılan Yükleme Birimi" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" -msgstr "" +msgstr "İndirme hızı için varsayılan birim" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" -msgstr "" +msgstr "Yükleme hızı için varsayılan birim" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" -msgstr "" +msgstr "İndirme bant genişliği için varsayılan değer" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" -msgstr "" +msgstr "İndirme hızı için varsayılan değer" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" -msgstr "" +msgstr "Yükleme band genişliği için varsayılan değer" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" -msgstr "" +msgstr "Yükleme hızı için varsayılan değer" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" -msgstr "" +msgstr "İndirme Band Genişliği (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" -msgstr "" +msgstr "İndirme Hızı" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" -msgstr "" +msgstr "Limit Oranı Özelliğini Etkinleştir" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" -msgstr "" +msgstr "Trafik Önceliğini Etkinleştir" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" -msgstr "" +msgstr "Bu özelliği etkinleştirin" #: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" +msgstr "luci-app-nft-qos için UCI erişimi verin" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" -msgstr "" +msgstr "Sunucu adı" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 msgid "IP Address" -msgstr "" +msgstr "IP Adresi" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" -msgstr "" +msgstr "IP Adresi (v4 / v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" -msgstr "" +msgstr "IP Adresi (Yalnızca v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" -msgstr "" +msgstr "Sınırı Etkinleştir" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "Trafik Oranını Mac Adresine Göre Sınırlandırın" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" -msgstr "" +msgstr "Limit Türü" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" -msgstr "" +msgstr "MAC (isteğe bağlı)" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "Mac Adresi" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" -msgstr "" +msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" -msgstr "" +msgstr "NFT-QoS Ayarları" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "" +msgstr "Trafik Şekillendirme için Ağ Arayüzü, ör. br-lan, eth0.1, eth0 vb." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "" +msgstr "Uygulanacak ağ, ör. 192.168.1.0/24, 10.2.0.0/16 vb." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "" +msgstr "Uygulanacak ağ, ör. AAAA::BBBB/64, CCCC::1/128 vb." #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" -msgstr "" +msgstr "Bilgi bulunmamaktadır" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 msgid "Packets Total" -msgstr "" +msgstr "Paket Toplamı" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" -msgstr "" +msgstr "Öncelik" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" -msgstr "" +msgstr "Protokol" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" -msgstr "" +msgstr "Nftables üzerinden QoS" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" -msgstr "" +msgstr "Oran" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 msgid "Realtime Download Rate" -msgstr "" +msgstr "Gerçek Zamanlı İndirme Hızı" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 msgid "Realtime Rate" -msgstr "" +msgstr "Gerçek Zamanlı Oran" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 msgid "Realtime Upload Rate" -msgstr "" +msgstr "Gerçek Zamanlı Yükleme Hızı" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" -msgstr "" +msgstr "Hizmet" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" -msgstr "" +msgstr "Statik QoS-İndirme Hızı" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" -msgstr "" +msgstr "Statik QoS-Yükleme Hızı" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" -msgstr "" +msgstr "Hedef Ağ (IPv4 / MASK)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" -msgstr "" +msgstr "Hedef Ağ6 (IPv6 / MASK)" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 msgid "This page gives an overview over currently download/upload rate." -msgstr "" +msgstr "Bu sayfa, mevcut indirme / yükleme hızına genel bir bakış sunar." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" -msgstr "" +msgstr "Trafik Öncelik Ayarları" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" -msgstr "" +msgstr "Limit Oranı Türü" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" -msgstr "" +msgstr "Birim" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" -msgstr "" +msgstr "Yükleme Bant Genişliği (Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" -msgstr "" +msgstr "Yükleme Hızı" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" -msgstr "" +msgstr "Limit Oranı Beyaz Listesi" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" -msgstr "" +msgstr "Örneğin. https, 23, (ayırıcı virgüldür)" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 msgid "kB" -msgstr "" +msgstr "kB" diff --git a/applications/luci-app-nft-qos/po/uk/nft-qos.po b/applications/luci-app-nft-qos/po/uk/nft-qos.po index 27a3c99f98..a771079702 100644 --- a/applications/luci-app-nft-qos/po/uk/nft-qos.po +++ b/applications/luci-app-nft-qos/po/uk/nft-qos.po @@ -21,71 +21,73 @@ msgstr "" msgid "Collecting data..." msgstr "Збирання даних..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Примітка" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -93,8 +95,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "Назва (ім'я) вузла" @@ -103,46 +106,54 @@ msgstr "Назва (ім'я) вузла" msgid "IP Address" msgstr "IP-адреса" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -155,22 +166,22 @@ msgstr "Інформація відсутня" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Протокол" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -186,23 +197,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -210,32 +221,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/vi/nft-qos.po b/applications/luci-app-nft-qos/po/vi/nft-qos.po index d33495726e..859922f909 100644 --- a/applications/luci-app-nft-qos/po/vi/nft-qos.po +++ b/applications/luci-app-nft-qos/po/vi/nft-qos.po @@ -20,71 +20,73 @@ msgstr "" msgid "Collecting data..." msgstr "Đang lấy dữ liệu..." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "Bình luận" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "" @@ -92,8 +94,9 @@ msgstr "" msgid "Grant UCI access for luci-app-nft-qos" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "" @@ -102,46 +105,54 @@ msgstr "" msgid "IP Address" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "" @@ -154,22 +165,22 @@ msgstr "" msgid "Packets Total" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "Giao thức" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "" @@ -185,23 +196,23 @@ msgstr "" msgid "Realtime Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "" @@ -209,32 +220,35 @@ msgstr "" msgid "This page gives an overview over currently download/upload rate." msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "" diff --git a/applications/luci-app-nft-qos/po/zh_Hans/nft-qos.po b/applications/luci-app-nft-qos/po/zh_Hans/nft-qos.po index f0b236368d..0c66921811 100644 --- a/applications/luci-app-nft-qos/po/zh_Hans/nft-qos.po +++ b/applications/luci-app-nft-qos/po/zh_Hans/nft-qos.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-02-21 07:57+0000\n" +"PO-Revision-Date: 2021-04-12 08:24+0000\n" "Last-Translator: xiazhang <xz@xia.plus>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsnft-qos/zh_Hans/>\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.11.1\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -26,80 +26,83 @@ msgstr "字节总数" msgid "Collecting data..." msgstr "正在收集数据…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" -msgstr "注释" +msgstr "备注" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "默认下载速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "默认下载速率单位" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "默认网络接口" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "默认上传速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "默认上传速率单位" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "默认的下载速率单位" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "默认的上传速率单位" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "下载带宽的默认值" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "下载速率的默认值" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "上传带宽的默认值" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "上传速率的默认值" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "下载带宽(Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "下载速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "开启速率限制功能" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" msgstr "开启流量优先级" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "开启这个功能" #: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" +msgstr "授予UCI访问luci-app-nft-qos的权限" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "主机名" @@ -108,46 +111,54 @@ msgstr "主机名" msgid "IP Address" msgstr "IP 地址" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "IP 地址(v4 / v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "IP 地址(仅 v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "限速开启" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "按 Mac 地址限制通信量速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "限速类型" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "物理地址(可选)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "MAC 地址" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "NFT-QoS 设置" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "流量整形的目标网络接口,例如:br-lan、eth0.1、eth0 等。" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." msgstr "要应用规则的网络,例如:192.168.1.0/24、10.2.0.0/16 等。" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." msgstr "要应用规则的网络,例如:AAAA::BBBB/64、CCCC::1/128 等。" @@ -160,22 +171,22 @@ msgstr "无可用信息" msgid "Packets Total" msgstr "数据包总数" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" msgstr "优先级" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "协议" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "QoS Nftables 版" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "速率" @@ -191,23 +202,23 @@ msgstr "实时速率显示" msgid "Realtime Upload Rate" msgstr "实时上传速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "服务" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "静态 QoS-下载速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "静态 QoS-上传速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "目标网络(IPv4 地址/掩码)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "目标网络 v6(IPv6 地址/掩码)" @@ -215,32 +226,35 @@ msgstr "目标网络 v6(IPv6 地址/掩码)" msgid "This page gives an overview over currently download/upload rate." msgstr "该页面提供了当前上传和下载速率的一个总览。" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" msgstr "流量优先级设置" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "限速的类型" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "单元" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "上传带宽(Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "上传速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "限速白名单" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "例如https, 23(用逗号分隔)" diff --git a/applications/luci-app-nft-qos/po/zh_Hant/nft-qos.po b/applications/luci-app-nft-qos/po/zh_Hant/nft-qos.po index 25257cf1f2..abe625cc5e 100644 --- a/applications/luci-app-nft-qos/po/zh_Hant/nft-qos.po +++ b/applications/luci-app-nft-qos/po/zh_Hant/nft-qos.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-06-30 13:41+0000\n" -"Last-Translator: Hulen <shift0106@gmail.com>\n" +"PO-Revision-Date: 2021-01-19 21:13+0000\n" +"Last-Translator: akibou <jinwenxin1997@icloud.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsnft-qos/zh_Hant/>\n" "Language: zh_Hant\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5-dev\n" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 @@ -24,82 +24,85 @@ msgstr "位元組總數" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 msgid "Collecting data..." -msgstr "收集資料中..." +msgstr "正在收集資料中…" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" msgstr "註解" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" msgstr "預設下載速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" msgstr "預設下載速率單位" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" msgstr "預設網路介面" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" msgstr "預設上傳速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" msgstr "預設上傳速率單位" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" msgstr "預設的下載速率單位" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" msgstr "預設的上傳速率單位" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" msgstr "下載頻寬的預設值" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" msgstr "下載速率的預設值" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" msgstr "上傳頻寬的預設值" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" msgstr "上傳速率的預設值" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" msgstr "下載頻寬(Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" msgstr "下載速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Enable Limit Rate Feature" msgstr "開啟速率限制功能" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" -msgstr "開啟流量優先順序" +msgstr "啟用流量優先權" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" msgstr "開啟這個功能" #: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3 msgid "Grant UCI access for luci-app-nft-qos" -msgstr "" +msgstr "授予 luci-app-nft-qos 擁有 UCI 存取的權限" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:123 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:156 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244 msgid "Hostname" msgstr "主機名稱" @@ -108,48 +111,56 @@ msgstr "主機名稱" msgid "IP Address" msgstr "IP 位址" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161 msgid "IP Address (v4 / v6)" msgstr "IP 位址(v4 / v6)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:130 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 msgid "IP Address (v4 Only)" msgstr "IP 位址(僅 v4)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:40 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230 msgid "Limit Enable" msgstr "限速開啟" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 +msgid "Limit Traffic Rate By Mac Address" +msgstr "通過 MAC 位址限制流量速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" msgstr "限速型別" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" msgstr "實體位址(可選)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 +msgid "MAC Address" +msgstr "MAC 位址" + #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" msgstr "MB" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29 msgid "NFT-QoS Settings" msgstr "NFT-QoS 設定" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." -msgstr "流量整形的目標網路介面,例如br-lan、eth0.1、eth0等" +msgstr "用於流量塑形的網路介面,例如. br-lan、eth0.1、eth0...等等." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc." -msgstr "將要應用規則的網路,例如192.168.1.0/24、10.2.0.0/16等" +msgstr "要套用的網絡,例如 192.168.1.0/24、10.2.0.0/16... 等等." -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc." -msgstr "將要應用規則的網路,例如AAAA::BBBB/64、CCCC::1/128等" +msgstr "要套用的網絡,例如 AAAA::BBBB/64、CCCC::1/128...等等." #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" @@ -160,22 +171,22 @@ msgstr "無可用資訊" msgid "Packets Total" msgstr "資料包總數" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" -msgstr "優先順序" +msgstr "優先權" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" msgstr "協定" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24 msgid "QoS over Nftables" msgstr "QoS Nftables 版" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:13 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:137 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174 msgid "Rate" msgstr "速率" @@ -191,23 +202,23 @@ msgstr "實時速率顯示" msgid "Realtime Upload Rate" msgstr "實時上傳速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" msgstr "服務" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" msgstr "靜態 QoS-下載速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" msgstr "靜態 QoS-上傳速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" msgstr "目標網路(IPv4 位址/掩碼)" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" msgstr "目標網路 v6(IPv6 位址/掩碼)" @@ -215,32 +226,35 @@ msgstr "目標網路 v6(IPv6 位址/掩碼)" msgid "This page gives an overview over currently download/upload rate." msgstr "該頁面提供了當前上傳和下載速率的一個總覽。" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192 msgid "Traffic Priority Settings" -msgstr "流量優先順序設定" +msgstr "流量優先權設定" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" msgstr "限速的型別" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:142 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:179 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:257 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:268 msgid "Unit" msgstr "單元" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" msgstr "上傳頻寬(Mbps)" +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" msgstr "上傳速率" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" msgstr "限速白名單" -#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" msgstr "例如https, 23(用逗號分隔)" |