summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-nft-qos
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-nft-qos')
-rw-r--r--applications/luci-app-nft-qos/Makefile2
-rw-r--r--applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua24
-rw-r--r--applications/luci-app-nft-qos/po/ar/nft-qos.po86
-rw-r--r--applications/luci-app-nft-qos/po/bg/nft-qos.po86
-rw-r--r--applications/luci-app-nft-qos/po/bn_BD/nft-qos.po78
-rw-r--r--applications/luci-app-nft-qos/po/ca/nft-qos.po78
-rw-r--r--applications/luci-app-nft-qos/po/cs/nft-qos.po89
-rw-r--r--applications/luci-app-nft-qos/po/da/nft-qos.po87
-rw-r--r--applications/luci-app-nft-qos/po/de/nft-qos.po91
-rw-r--r--applications/luci-app-nft-qos/po/el/nft-qos.po92
-rw-r--r--applications/luci-app-nft-qos/po/en/nft-qos.po78
-rw-r--r--applications/luci-app-nft-qos/po/es/nft-qos.po87
-rw-r--r--applications/luci-app-nft-qos/po/fi/nft-qos.po107
-rw-r--r--applications/luci-app-nft-qos/po/fr/nft-qos.po184
-rw-r--r--applications/luci-app-nft-qos/po/he/nft-qos.po86
-rw-r--r--applications/luci-app-nft-qos/po/hi/nft-qos.po78
-rw-r--r--applications/luci-app-nft-qos/po/hu/nft-qos.po81
-rw-r--r--applications/luci-app-nft-qos/po/it/nft-qos.po98
-rw-r--r--applications/luci-app-nft-qos/po/ja/nft-qos.po78
-rw-r--r--applications/luci-app-nft-qos/po/ko/nft-qos.po92
-rw-r--r--applications/luci-app-nft-qos/po/lt/nft-qos.po269
-rw-r--r--applications/luci-app-nft-qos/po/mr/nft-qos.po78
-rw-r--r--applications/luci-app-nft-qos/po/ms/nft-qos.po78
-rw-r--r--applications/luci-app-nft-qos/po/nb_NO/nft-qos.po86
-rw-r--r--applications/luci-app-nft-qos/po/pl/nft-qos.po107
-rw-r--r--applications/luci-app-nft-qos/po/pt/nft-qos.po85
-rw-r--r--applications/luci-app-nft-qos/po/pt_BR/nft-qos.po87
-rw-r--r--applications/luci-app-nft-qos/po/ro/nft-qos.po167
-rw-r--r--applications/luci-app-nft-qos/po/ru/nft-qos.po141
-rw-r--r--applications/luci-app-nft-qos/po/sk/nft-qos.po89
-rw-r--r--applications/luci-app-nft-qos/po/sv/nft-qos.po167
-rw-r--r--applications/luci-app-nft-qos/po/templates/nft-qos.pot78
-rw-r--r--applications/luci-app-nft-qos/po/tr/nft-qos.po87
-rw-r--r--applications/luci-app-nft-qos/po/uk/nft-qos.po181
-rw-r--r--applications/luci-app-nft-qos/po/vi/nft-qos.po191
-rw-r--r--applications/luci-app-nft-qos/po/zh_Hans/nft-qos.po89
-rw-r--r--applications/luci-app-nft-qos/po/zh_Hant/nft-qos.po85
37 files changed, 2180 insertions, 1567 deletions
diff --git a/applications/luci-app-nft-qos/Makefile b/applications/luci-app-nft-qos/Makefile
index a8227de9fd..1690854fc4 100644
--- a/applications/luci-app-nft-qos/Makefile
+++ b/applications/luci-app-nft-qos/Makefile
@@ -7,7 +7,7 @@
include $(TOPDIR)/rules.mk
LUCI_TITLE:=QoS over Nftables
-LUCI_DEPENDS:=+luci-compat +nft-qos
+LUCI_DEPENDS:=+luci-base +luci-compat +nft-qos
include ../../luci.mk
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 b089433d9b..b2001f7802 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
@@ -30,9 +30,9 @@ s = m:section(TypedSection, "default", translate("NFT-QoS Settings"))
s.addremove = false
s.anonymous = true
-s:tab("limit", "Limit Rate by IP Address")
-s:tab("limitmac", "Limit Rate by Mac Address")
-s:tab("priority", "Traffic Priority")
+s:tab("limit", translate("Limit Rate by IP Address"))
+s:tab("limitmac", translate("Limit Rate by Mac Address"))
+s:tab("priority", translate("Traffic Priority"))
--
-- Static
@@ -100,6 +100,13 @@ o.datatype = "ipaddr"
o:depends("limit_enable","1")
--
+-- limit speed by mac address
+--
+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
+
+--
-- Priority
--
o = s:taboption("priority", Flag, "priority_enable", translate("Enable Traffic Priority"), translate("Enable this feature"))
@@ -167,10 +174,6 @@ if limit_enable == "1" and limit_type == "static" 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
@@ -225,13 +228,6 @@ if enable_priority == "1" then
end
--
--- limit speed by mac address
---
-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
-
---
-- Static By Mac Address
--
if limit_mac_enable == "1" then
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 a8e56edd85..1bb2268573 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: 2021-03-04 13:50+0000\n"
-"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n"
+"PO-Revision-Date: 2022-11-30 14:48+0000\n"
+"Last-Translator: R-K <raouf9005@gmail.com>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/ar/>\n"
"Language: ar\n"
@@ -9,19 +9,19 @@ 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.5.1-dev\n"
+"X-Generator: Weblate 4.15-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 "مجموع البايت"
#: 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 "جمع البيانات..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "تعليق"
@@ -33,7 +33,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -73,21 +73,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -95,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "اسم المضيف"
@@ -106,22 +106,30 @@ msgstr "اسم المضيف"
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -129,11 +137,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -145,7 +149,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -166,11 +170,11 @@ msgstr "لا توجد معلومات متاحة"
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "بروتوكول"
@@ -180,8 +184,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -197,15 +201,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -221,7 +225,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -229,10 +237,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -240,7 +248,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -249,7 +257,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 6387f8957e..ae79179d20 100644
--- a/applications/luci-app-nft-qos/po/bg/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/bg/nft-qos.po
@@ -1,26 +1,26 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-08-27 12:56+0000\n"
-"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n"
+"PO-Revision-Date: 2023-03-18 11:40+0000\n"
+"Last-Translator: Zi <znlambov@gmail.com>\n"
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/bg/>\n"
"Language: bg\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.8.1-dev\n"
+"X-Generator: Weblate 4.16.2-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 "Байта общо"
#: 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 "Събиране данни..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Коментар"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Хостнейм"
@@ -105,22 +105,30 @@ msgstr "Хостнейм"
msgid "IP Address"
msgstr "IP адрес"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr "Няма налична информация"
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Протокол"
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 655296aa07..1b8254368d 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
@@ -20,7 +20,7 @@ msgstr ""
msgid "Collecting data..."
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr ""
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "হোস্টনেম"
@@ -105,22 +105,30 @@ msgstr "হোস্টনেম"
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC অ্যাড্রেস"
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "প্রোটোকল"
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 b659240c53..49d29e0eaf 100644
--- a/applications/luci-app-nft-qos/po/ca/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/ca/nft-qos.po
@@ -20,7 +20,7 @@ msgstr ""
msgid "Collecting data..."
msgstr "S’estan recollint dades…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Commentari"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Nom de l’amfitrió"
@@ -105,22 +105,30 @@ msgstr "Nom de l’amfitrió"
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Prioritat"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr ""
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Unitat"
@@ -239,7 +247,7 @@ msgstr "Unitat"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 504fa3e396..757ad88334 100644
--- a/applications/luci-app-nft-qos/po/cs/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/cs/nft-qos.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-05-07 11:32+0000\n"
-"Last-Translator: Adam Salač <adam@salac.me>\n"
+"PO-Revision-Date: 2023-09-27 19:02+0000\n"
+"Last-Translator: David Rapaň <david@rapan.cz>\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 4.7-dev\n"
+"X-Generator: Weblate 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
@@ -20,7 +20,7 @@ msgstr "Celkově bajtů"
msgid "Collecting data..."
msgstr "Shromažďování údajů…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Komentář"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Název počítače"
@@ -105,22 +105,30 @@ 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:128
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,12 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC adresa"
@@ -145,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -166,11 +169,11 @@ msgstr "Údaje nejsou k dispozici"
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokol"
@@ -180,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -197,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
-msgstr ""
+msgstr "Služba"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -221,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -229,18 +236,18 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
-msgstr ""
+msgstr "Jednotka"
#: 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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -249,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr ""
diff --git a/applications/luci-app-nft-qos/po/da/nft-qos.po b/applications/luci-app-nft-qos/po/da/nft-qos.po
index 26ee44a1c1..fb3c471b66 100644
--- a/applications/luci-app-nft-qos/po/da/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/da/nft-qos.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-11-15 17:49+0000\n"
+"PO-Revision-Date: 2023-07-17 15:06+0000\n"
"Last-Translator: drax red <drax@outlook.dk>\n"
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/da/>\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.9.1-dev\n"
+"X-Generator: Weblate 5.0-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,7 +20,7 @@ msgstr "Bytes i alt"
msgid "Collecting data..."
msgstr "Indsamler data..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Kommentar"
@@ -32,7 +32,7 @@ msgstr "Standard downloadhastighed"
msgid "Default Download Unit"
msgstr "Standard downloadenhed"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Standardnetværks interface"
@@ -72,21 +72,21 @@ msgstr "Standardværdi for uploadhastighed"
msgid "Download Bandwidth (Mbps)"
msgstr "Download Båndbredde (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135
msgid "Download Rate"
msgstr "Downloadhastighed"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr "Aktiver funktionen Grænsehastighed"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Aktiver trafikprioritet"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "Aktiver denne funktion"
@@ -94,33 +94,41 @@ msgstr "Aktiver denne funktion"
msgid "Grant UCI access for luci-app-nft-qos"
msgstr "Giv UCI-adgang til luci-app-nft-qos"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Værtsnavn"
#: 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-adresse"
+msgstr "IP Address"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "IP-adresse (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "IP-adresse (kun v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "Begræns Aktiver"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Begrænsning af hastighed efter IP-adresse"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Begrænsningshastighed efter Mac-adresse"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr "Begrænse trafikhastighed efter Mac-adresse"
@@ -128,11 +136,7 @@ msgstr "Begrænse trafikhastighed efter Mac-adresse"
msgid "Limit Type"
msgstr "Begræns type"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170
-msgid "MAC (optional)"
-msgstr "MAC (valgfrit)"
-
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC-adresse"
@@ -144,7 +148,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "NFT-QoS indstillinger"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
"Netværks interface til trafik shaping, f.eks. br-lan, eth0.1, eth0, osv."
@@ -166,11 +170,11 @@ msgstr "Ingen oplysninger tilgængelige"
msgid "Packets Total"
msgstr "Pakker i alt"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Prioritet"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokol"
@@ -180,8 +184,8 @@ msgid "QoS over Nftables"
msgstr "QoS over 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "Rate"
@@ -197,15 +201,15 @@ msgstr "Realtidssats"
msgid "Realtime Upload Rate"
msgstr "Upload i realtid"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Tjeneste"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr "Statisk QoS-downloadhastighed"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "Statisk QoS-Upload-hastighed"
@@ -222,7 +226,11 @@ msgid "This page gives an overview over currently download/upload rate."
msgstr ""
"Denne side giver et overblik over den aktuelle download/upload-hastighed."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Trafikprioritet"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Indstillinger for trafikprioritet"
@@ -230,10 +238,10 @@ msgstr "Indstillinger for trafikprioritet"
msgid "Type of Limit Rate"
msgstr "Type af grænseværdi Sats"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Enhed"
@@ -241,7 +249,7 @@ msgstr "Enhed"
msgid "Upload Bandwidth (Mbps)"
msgstr "Upload båndbredde (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "Upload-hastighed"
@@ -250,10 +258,13 @@ msgstr "Upload-hastighed"
msgid "White List for Limit Rate"
msgstr "Hvidliste for grænseværdi"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "f.eks. https, 23, (separator er et komma)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (valgfrit)"
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 9764c2c3ed..ee02cb4d81 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: 2021-02-08 04:46+0000\n"
-"Last-Translator: Zocker1012 <julian.schoemer.1997@gmail.com>\n"
+"PO-Revision-Date: 2022-10-09 16:44+0000\n"
+"Last-Translator: ssantos <ssantos@web.de>\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.5-dev\n"
+"X-Generator: Weblate 4.14.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,7 +20,7 @@ msgstr "Bytes Gesamt"
msgid "Collecting data..."
msgstr "Sammle Daten..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Kommentar"
@@ -32,7 +32,7 @@ msgstr "Standard-Downloadrate"
msgid "Default Download Unit"
msgstr "Standard-Download-Einheit"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Standard-Netzwerkschnittstelle"
@@ -72,21 +72,21 @@ msgstr "Standardwert für Upload-Rate"
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr "Aktiviere die Limit-Rate-Funktion"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Aktiviere Traffic-Priorisierung"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "Diese Funktion aktivieren"
@@ -94,9 +94,9 @@ msgstr "Diese Funktion aktivieren"
msgid "Grant UCI access for 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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Hostname"
@@ -105,36 +105,40 @@ msgstr "Hostname"
msgid "IP Address"
msgstr "IP-Adresse"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "IP-Adresse (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "IP-Adresse (nur v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "Limit aktivieren"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Quote pro IP-Adresse begrenzen"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Quote pro MAC-Adresse begrenzen"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
-msgstr ""
+msgstr "Verkehrsrate per Mac-Adresse begrenzen"
#: 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:170
-msgid "MAC (optional)"
-msgstr "MAC (optional)"
-
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
-msgstr ""
+msgstr "MAC-Adresse"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48
msgid "MB"
@@ -144,7 +148,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "NFT-QoS-Einstellungen"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
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."
@@ -170,11 +174,11 @@ msgstr "Keine Informationen verfügbar"
msgid "Packets Total"
msgstr "Pakete Gesamt"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Priorität"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokoll"
@@ -184,8 +188,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "Rate"
@@ -201,15 +205,15 @@ msgstr "Echtzeit-Rate"
msgid "Realtime Upload Rate"
msgstr "Echtzeit-Uploadrate"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Service"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr "Statische QoS-Download-Rate"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "Statische QoS-Upload-Rate"
@@ -226,7 +230,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Traffic-Priorität"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Einstellungen für Traffic-Priorität"
@@ -234,10 +242,10 @@ msgstr "Einstellungen für Traffic-Priorität"
msgid "Type of Limit Rate"
msgstr "Typ der Limit-Rate"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Einheit"
@@ -245,7 +253,7 @@ msgstr "Einheit"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "Uploadrate"
@@ -254,10 +262,13 @@ msgstr "Uploadrate"
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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "z.B. https, 23, (Trennzeichen ist Komma)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (optional)"
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 154c8138da..b8c1289251 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: 2020-12-01 16:16+0000\n"
-"Last-Translator: Marios Koutsoukis <marioskoutsoukis2006@gmail.com>\n"
+"PO-Revision-Date: 2022-05-15 17:04+0000\n"
+"Last-Translator: MarioK239 <marios.k239@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 4.4-dev\n"
+"X-Generator: Weblate 4.13-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,9 +20,9 @@ msgstr ""
msgid "Collecting data..."
msgstr "Συλλογή δεδομένων..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
-msgstr ""
+msgstr "Σχόλιο"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default Download Rate"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,33 +94,41 @@ msgstr ""
msgid "Grant UCI access for luci-app-nft-qos"
msgstr ""
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
-msgstr "Όνομα κεντρικού υπολογιστή"
+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 "Διεύθυνση IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,13 +169,13 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
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:24
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 63069b20ba..5bad65653f 100644
--- a/applications/luci-app-nft-qos/po/en/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/en/nft-qos.po
@@ -20,7 +20,7 @@ msgstr ""
msgid "Collecting data..."
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr ""
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Hostname"
@@ -105,22 +105,30 @@ msgstr "Hostname"
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr ""
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 5edd09bb0c..84787c24c3 100644
--- a/applications/luci-app-nft-qos/po/es/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/es/nft-qos.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
-"PO-Revision-Date: 2021-04-01 17:26+0000\n"
-"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
+"PO-Revision-Date: 2023-02-25 13:39+0000\n"
+"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/es/>\n"
"Language: 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.6-dev\n"
+"X-Generator: Weblate 4.16-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,7 +23,7 @@ msgstr "Total de bytes"
msgid "Collecting data..."
msgstr "Recolectando datos…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Comentario"
@@ -35,7 +35,7 @@ msgstr "Velocidad de descarga predeterminada"
msgid "Default Download Unit"
msgstr "Unidad de descarga predeterminada"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Interfaz de red predeterminada"
@@ -75,21 +75,21 @@ msgstr "Valor predeterminado para la velocidad de carga"
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
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:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Activar prioridad de tráfico"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "Activar esta característica"
@@ -97,9 +97,9 @@ 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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Nombre de host"
@@ -108,22 +108,30 @@ msgstr "Nombre de host"
msgid "IP Address"
msgstr "Dirección IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "Dirección IP (v4/v6)"
-#: 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
+#: 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:170
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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "Activar límite"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Tasa límite por dirección IP"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Tasa límite por dirección Mac"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr "Limitar la tasa de tráfico por dirección Mac"
@@ -131,11 +139,7 @@ msgstr "Limitar la tasa de tráfico por dirección Mac"
msgid "Limit Type"
msgstr "Tipo de límite"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "Dirección MAC"
@@ -147,7 +151,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "Configuración de NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
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, "
@@ -170,11 +174,11 @@ 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:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Prioridad"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protocolo"
@@ -184,8 +188,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "Velocidad"
@@ -201,15 +205,15 @@ 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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Servicio"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
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:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "Velocidad de carga de QoS estática"
@@ -227,7 +231,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Prioridad de tráfico"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Ajustes de prioridad de tráfico"
@@ -235,10 +243,10 @@ msgstr "Ajustes de prioridad de tráfico"
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: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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Unidad"
@@ -246,7 +254,7 @@ msgstr "Unidad"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "Velocidad de carga"
@@ -255,10 +263,13 @@ msgstr "Velocidad de carga"
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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "p.ej. https, 23, (el separador es una coma)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (opcional)"
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 6b16f570b9..9fcd0c49a0 100644
--- a/applications/luci-app-nft-qos/po/fi/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/fi/nft-qos.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-06-18 19:32+0000\n"
-"Last-Translator: Demian Wright <wright.demian+weblate@gmail.com>\n"
+"PO-Revision-Date: 2022-03-13 23:17+0000\n"
+"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/fi/>\n"
"Language: fi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.7\n"
+"X-Generator: Weblate 4.12-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,7 +20,7 @@ msgstr ""
msgid "Collecting data..."
msgstr "Kerätään tietoja…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Kommentti"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,33 +94,41 @@ msgstr ""
msgid "Grant UCI access for luci-app-nft-qos"
msgstr ""
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
-msgstr "Nimi"
+msgstr "Laitenimi"
#: 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-osoite"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
-msgstr ""
+msgstr "IP-osoite (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
-msgstr ""
+msgstr "IP-osoite (vain v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,23 +136,19 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
-msgstr ""
+msgstr "MAC-osoite"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48
msgid "MB"
-msgstr ""
+msgstr "Mt"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:29
msgid "NFT-QoS Settings"
-msgstr ""
+msgstr "NFT-QoS-asetukset"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -163,13 +167,13 @@ msgstr "Ei tietoja saatavilla"
#: 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 "Paketteja yhteensä"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
-msgstr ""
+msgstr "Prioriteetti"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokolla"
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
-msgstr ""
+msgstr "Palvelu"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,10 +256,13 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr ""
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr ""
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (valinnainen)"
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 4aece3d762..d55e4a8f4b 100644
--- a/applications/luci-app-nft-qos/po/fr/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/fr/nft-qos.po
@@ -1,102 +1,102 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2020-10-24 08:56+0000\n"
-"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n"
+"PO-Revision-Date: 2023-06-11 22:12+0000\n"
+"Last-Translator: viking76 <liaudetgael@gmail.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.3.1\n"
+"X-Generator: Weblate 4.18-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 "Total octets"
+msgstr "Nombre total d’octets"
#: 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 "Récupération des données…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Commentaire"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default Download Rate"
-msgstr ""
+msgstr "Vitesse de téléchargement par défaut"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55
msgid "Default Download Unit"
-msgstr ""
+msgstr "Unité de téléchargement par défaut"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
-msgstr ""
+msgstr "Interface réseau par défaut"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default Upload Rate"
-msgstr ""
+msgstr "Taux de téléchargement par défaut"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default Upload Unit"
-msgstr ""
+msgstr "Unité de téléchargement par défaut"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55
msgid "Default unit for download rate"
-msgstr ""
+msgstr "Unité par défaut pour la vitesse de téléchargement"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default unit for upload rate"
-msgstr ""
+msgstr "Unité par défaut pour la vitesse de téléversement"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Default value for download bandwidth"
-msgstr ""
+msgstr "Valeur par défaut pour la bande passante de téléchargement"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default value for download rate"
-msgstr ""
+msgstr "Valeur par défaut du débit de téléchargement"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Default value for upload bandwidth"
-msgstr ""
+msgstr "Valeur par défaut pour la bande passante de téléversement"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default value for upload rate"
-msgstr ""
+msgstr "Valeur par défaut pour le taux de téléversement"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Download Bandwidth (Mbps)"
-msgstr ""
+msgstr "Bande passante de téléchargement (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135
msgid "Download Rate"
-msgstr ""
+msgstr "Taux de téléchargement"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
-msgstr ""
+msgstr "Activer la fonction de limitation du débit"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
-msgstr ""
+msgstr "Activer la priorité du trafic"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
-msgstr ""
+msgstr "Activer cette fonctionnalité"
#: 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 "Accorder l'accès à l'UCI pour luci-app-nft-qos"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Nom d'hôte"
@@ -105,153 +105,167 @@ msgstr "Nom d'hôte"
msgid "IP Address"
msgstr "Adresse IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
-msgstr ""
+msgstr "Adresse IP (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
-msgstr ""
+msgstr "Adresse IP (v4 uniquement)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
-msgstr ""
+msgstr "Limitation activée"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Taux limite par adresse IP"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Taux limite par adresse Mac"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
-msgstr ""
+msgstr "Limiter le débit du trafic par adresse 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:170
-msgid "MAC (optional)"
-msgstr ""
+msgstr "Type de limite"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "Adresse MAC"
#: 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:29
msgid "NFT-QoS Settings"
-msgstr ""
+msgstr "Paramètres NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
+"Interface réseau pour la mise en forme du trafic, par exemple br-lan, "
+"eth0.1, eth0, etc."
#: 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 "Réseau à appliquer, par exemple 192.168.1.0/24, 10.2.0.0/16, etc."
#: 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 "Réseau à appliquer, par exemple AAAA::BBBB/64, CCCC::1/128, etc."
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65
msgid "No information available"
-msgstr "Information indisponible"
+msgstr "Aucune information disponible"
#: 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 "Nombre total de paquets"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
-msgstr ""
+msgstr "Priorité"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
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:24
msgid "QoS over Nftables"
-msgstr ""
+msgstr "QoS au-dessus des 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
-msgstr ""
+msgstr "Taux"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130
msgid "Realtime Download Rate"
-msgstr ""
+msgstr "Taux de téléchargement en temps réel"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125
msgid "Realtime Rate"
-msgstr ""
+msgstr "Taux en temps réel"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149
msgid "Realtime Upload Rate"
-msgstr ""
+msgstr "Taux de téléchargement en temps réel"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Service"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
-msgstr ""
+msgstr "Taux de téléchargement QoS statique"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
-msgstr ""
+msgstr "Taux de téléversement QoS statique"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87
msgid "Target Network (IPv4/MASK)"
-msgstr ""
+msgstr "Réseau cible (IPv4/MASK)"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93
msgid "Target Network6 (IPv6/MASK)"
-msgstr ""
+msgstr "Réseau cible6 (IPv6/MASQUE)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127
msgid "This page gives an overview over currently download/upload rate."
msgstr ""
+"Cette page donne un aperçu du taux de téléchargement / téléversement actuel."
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Priorité de trafic"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
-msgstr ""
+msgstr "Paramètres de priorité du trafic"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44
msgid "Type of Limit Rate"
-msgstr ""
+msgstr "Type de taux limite"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
-msgstr ""
+msgstr "Unité"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Upload Bandwidth (Mbps)"
-msgstr ""
+msgstr "Bande passante de téléversement (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
-msgstr ""
+msgstr "Taux de téléversement"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98
msgid "White List for Limit Rate"
-msgstr ""
+msgstr "Liste blanche pour le taux limite"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
-msgstr ""
+msgstr "par exemple https, 23, (le séparateur est une virgule)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
-msgstr ""
+msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (facultatif)"
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 fc157fb4a1..5319363965 100644
--- a/applications/luci-app-nft-qos/po/he/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/he/nft-qos.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-01-15 22:31+0000\n"
+"PO-Revision-Date: 2023-09-07 08:58+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/he/>\n"
@@ -9,7 +9,7 @@ msgstr ""
"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"
+"X-Generator: Weblate 5.0.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,7 +21,7 @@ msgstr ""
msgid "Collecting data..."
msgstr "נאספים נתונים…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr ""
@@ -33,7 +33,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -73,21 +73,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -95,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr ""
@@ -106,22 +106,30 @@ msgstr ""
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -129,13 +137,9 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
-msgstr ""
+msgstr "כתובת חומרה (MAC)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48
msgid "MB"
@@ -145,7 +149,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -166,13 +170,13 @@ msgstr "אין פרטים זמינים"
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
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:24
@@ -180,8 +184,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -197,15 +201,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -221,7 +225,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -229,10 +237,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -240,7 +248,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -249,7 +257,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 c850440c15..6a14b7562b 100644
--- a/applications/luci-app-nft-qos/po/hi/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/hi/nft-qos.po
@@ -14,7 +14,7 @@ msgstr ""
msgid "Collecting data..."
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr ""
@@ -26,7 +26,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -66,21 +66,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -88,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr ""
@@ -99,22 +99,30 @@ msgstr ""
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -122,11 +130,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -138,7 +142,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -159,11 +163,11 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr ""
@@ -173,8 +177,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -190,15 +194,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -214,7 +218,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -222,10 +230,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -233,7 +241,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -242,7 +250,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 fa98b7ccee..5c26f115a1 100644
--- a/applications/luci-app-nft-qos/po/hu/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/hu/nft-qos.po
@@ -20,7 +20,7 @@ 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:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Megjegyzés"
@@ -32,7 +32,7 @@ msgstr "Alapértelmezett letöltési arány"
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:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Alapértelmezett hálózati csatoló"
@@ -72,21 +72,21 @@ msgstr "Alapértelmezett érték a feltöltési aránynál"
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
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:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Forgalomprioritás engedélyezése"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "A funkció engedélyezése"
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Gépnév"
@@ -105,22 +105,30 @@ msgstr "Gépnév"
msgid "IP Address"
msgstr "IP cím"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "IP-cím (v4/v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "IP-cím (csak v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "Korlátozás engedélyezése"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr "Korlát típusa"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC cím"
@@ -144,7 +148,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "NFT-QoS beállítások"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
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."
@@ -166,11 +170,11 @@ 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:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Prioritás"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokol"
@@ -180,8 +184,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "Arány"
@@ -197,15 +201,15 @@ 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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Szolgáltatás"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
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:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "Statikus QoS feltöltési arány"
@@ -222,7 +226,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Forgalomprioritás beállításai"
@@ -230,10 +238,10 @@ msgstr "Forgalomprioritás beállításai"
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: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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Mértékegység"
@@ -241,7 +249,7 @@ msgstr "Mértékegység"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "Feltöltési arány"
@@ -250,7 +258,7 @@ msgstr "Feltöltési arány"
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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "például https, 23, (vesszővel elválasztva)"
@@ -258,6 +266,9 @@ msgstr "például https, 23, (vesszővel elválasztva)"
msgid "kB"
msgstr "kB"
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (elhagyható)"
+
#~ msgid "IP Address(v4 / v6)"
#~ msgstr "IP-cím (v4/v6)"
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 1284e024cc..dead47c08e 100644
--- a/applications/luci-app-nft-qos/po/it/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/it/nft-qos.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-10-03 09:47+0000\n"
-"Last-Translator: pisquan8 <cimurro@outlook.de>\n"
+"PO-Revision-Date: 2023-09-10 12:33+0000\n"
+"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\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.9-dev\n"
+"X-Generator: Weblate 5.0.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
@@ -18,31 +18,31 @@ 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..."
+msgstr "Raccolta dei dati..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Commento"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default Download Rate"
-msgstr ""
+msgstr "Velocità di download predefinita"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55
msgid "Default Download Unit"
-msgstr ""
+msgstr "Unita di Download Predefinita"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
-msgstr ""
+msgstr "Interfaccia di rete predefinita"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default Upload Rate"
-msgstr ""
+msgstr "Frequenza di upload predefinita"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default Upload Unit"
-msgstr ""
+msgstr "Unità di upload predefinita"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55
msgid "Default unit for download rate"
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Nome host"
@@ -105,22 +105,30 @@ msgstr "Nome host"
msgid "IP Address"
msgstr "Indirizzo IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "Indirizzo MAC"
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr "Nessuna informazione disponibile"
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
-msgstr ""
+msgstr "Priorità"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protocollo"
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Servizio"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Unità"
@@ -239,7 +247,7 @@ msgstr "Unità"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 6c0e346ed5..48335e2392 100644
--- a/applications/luci-app-nft-qos/po/ja/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/ja/nft-qos.po
@@ -20,7 +20,7 @@ msgstr ""
msgid "Collecting data..."
msgstr "データを収集中..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "コメント"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +94,9 @@ msgstr ""
msgid "Grant UCI access for luci-app-nft-qos"
msgstr "luci-app-nft-qosにUCIアクセスを許可"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "ホスト名"
@@ -105,22 +105,30 @@ msgstr "ホスト名"
msgid "IP Address"
msgstr "IP アドレス"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "IP アドレス (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "IP アドレス (v4 のみ)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC アドレス"
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr "NFT-QoS 設定"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr "情報なし"
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "優先度"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "プロトコル"
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "サービス"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 4c41bf86d9..5d9b059135 100644
--- a/applications/luci-app-nft-qos/po/ko/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/ko/nft-qos.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-01-17 20:54+0000\n"
-"Last-Translator: ANTEGRAL <antegral@antegral.net>\n"
+"PO-Revision-Date: 2022-12-27 13:49+0000\n"
+"Last-Translator: somni <me@somni.one>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
"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"
+"X-Generator: Weblate 4.15.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
@@ -20,9 +20,9 @@ msgstr ""
msgid "Collecting data..."
msgstr "데이터 수집 중..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
-msgstr ""
+msgstr "메모"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default Download Rate"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,33 +94,41 @@ msgstr ""
msgid "Grant UCI access for luci-app-nft-qos"
msgstr ""
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
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 ""
+msgstr "IP 주소"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,13 +169,13 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
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:24
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr ""
diff --git a/applications/luci-app-nft-qos/po/lt/nft-qos.po b/applications/luci-app-nft-qos/po/lt/nft-qos.po
new file mode 100644
index 0000000000..55068b61a3
--- /dev/null
+++ b/applications/luci-app-nft-qos/po/lt/nft-qos.po
@@ -0,0 +1,269 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2023-12-02 18:04+0000\n"
+"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
+"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsnft-qos/lt/>\n"
+"Language: lt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
+"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
+"1 : 2);\n"
+"X-Generator: Weblate 5.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
+msgid "Bytes Total"
+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 "Renkama informacija (data)..."
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
+msgid "Comment"
+msgstr "Komentuoti"
+
+#: 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:55
+msgid "Default Download Unit"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
+msgid "Default Network Interface"
+msgstr ""
+
+#: 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:67
+msgid "Default Upload Unit"
+msgstr ""
+
+#: 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:67
+msgid "Default unit for upload rate"
+msgstr ""
+
+#: 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:50
+msgid "Default value for download rate"
+msgstr ""
+
+#: 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:62
+msgid "Default value for upload rate"
+msgstr ""
+
+#: 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:248
+#: 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:40
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+msgid "Enable Limit Rate Feature"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
+msgid "Enable Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
+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 "Suteikti „UCI“ prieigą – „luci-app-nft-qos“"
+
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
+msgid "Hostname"
+msgstr "Įrenginio pavadinimas"
+
+#: 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“ adresas"
+
+#: 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:168
+msgid "IP Address (v4 / v6)"
+msgstr ""
+
+#: 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:170
+msgid "IP Address (v4 Only)"
+msgstr ""
+
+#: 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:105
+msgid "Limit Enable"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
+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:244
+msgid "MAC Address"
+msgstr "„MAC“ adresas"
+
+#: 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:29
+msgid "NFT-QoS Settings"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
+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: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: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 "Nėra informacijos"
+
+#: 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:208
+msgid "Priority"
+msgstr "Prioritetas"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
+msgid "Protocol"
+msgstr "Protokolas"
+
+#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21
+#: 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:144
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:177
+msgid "Rate"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130
+msgid "Realtime Download Rate"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125
+msgid "Realtime Rate"
+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:222
+msgid "Service"
+msgstr "Tarnyba"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
+msgid "Static QoS-Download Rate"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
+msgid "Static QoS-Upload Rate"
+msgstr ""
+
+#: 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:93
+msgid "Target Network6 (IPv6/MASK)"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127
+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:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
+msgid "Traffic Priority Settings"
+msgstr ""
+
+#: 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:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
+msgid "Unit"
+msgstr ""
+
+#: 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:259
+#: 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:98
+msgid "White List for Limit Rate"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+msgid "e.g. https, 23, (separator is comma)"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
+msgid "kB"
+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 65d88b3de2..15281df36f 100644
--- a/applications/luci-app-nft-qos/po/mr/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/mr/nft-qos.po
@@ -20,7 +20,7 @@ msgstr ""
msgid "Collecting data..."
msgstr "डेटा संकलित करीत आहे ..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "टिप्पणी"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "होस्टनाव"
@@ -105,22 +105,30 @@ msgstr "होस्टनाव"
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "प्रोटोकॉल"
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "युनिट"
@@ -239,7 +247,7 @@ msgstr "युनिट"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 0a09f65845..eaeb89117a 100644
--- a/applications/luci-app-nft-qos/po/ms/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/ms/nft-qos.po
@@ -20,7 +20,7 @@ msgstr ""
msgid "Collecting data..."
msgstr "Mengumpul data..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr ""
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr ""
@@ -105,22 +105,30 @@ msgstr ""
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,11 +136,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr ""
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 32948fed20..4255465872 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: 2021-09-27 22:36+0000\n"
+"PO-Revision-Date: 2023-10-10 20:50+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 4.9-dev\n"
+"X-Generator: Weblate 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
@@ -20,7 +20,7 @@ msgstr "Byte totalt"
msgid "Collecting data..."
msgstr "Samler inn data…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Kommentar"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Vertsnavn"
@@ -105,22 +105,30 @@ msgstr "Vertsnavn"
msgid "IP Address"
msgstr "IP-adresse"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,13 +136,9 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
-msgstr ""
+msgstr "MAC-adresse"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48
msgid "MB"
@@ -144,7 +148,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +169,11 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokoll"
@@ -179,8 +183,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +200,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
-msgstr ""
+msgstr "Tjeneste"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +224,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +236,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +256,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 83ee13c298..6c6f409baf 100644
--- a/applications/luci-app-nft-qos/po/pl/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/pl/nft-qos.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2020-09-19 18:03+0000\n"
-"Last-Translator: Marcin Net <marcin.net@linux.pl>\n"
+"PO-Revision-Date: 2023-11-07 22:37+0000\n"
+"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/pl/>\n"
"Language: 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.3-dev\n"
+"X-Generator: Weblate 5.2-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,7 +21,7 @@ msgstr "Bajty ogółem"
msgid "Collecting data..."
msgstr "Trwa zbieranie danych..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Komentarz"
@@ -33,21 +33,21 @@ msgstr "Domyślna szybkość pobierania"
msgid "Default Download Unit"
msgstr "Domyślna jednostka pobierania"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Domyślny interfejs sieciowy"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default Upload Rate"
-msgstr "Domyślna szybkość przesyłania"
+msgstr "Domyślna szybkość wysyłania"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default Upload Unit"
-msgstr "Domyślna jednostka przesyłania"
+msgstr "Domyślna jednostka wysyłania"
#: 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"
+msgstr "Domyślna jednostka szybkości pobierania"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default unit for upload rate"
@@ -55,15 +55,15 @@ msgstr "Domyślna jednostka szybkości wysyłania"
#: 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"
+msgstr "Wartość domyślna przepustowości pobierania"
#: 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"
+msgstr "Wartość domyślna szybkości pobierania"
#: 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"
+msgstr "Wartość domyślna przepustowości wysyłania"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default value for upload rate"
@@ -73,31 +73,31 @@ msgstr "Wartość domyślna szybkości wysyłania"
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr "Włącz funkcję limitu prędkości"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Włącz priorytet ruchu"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "Włącz tę funkcję"
#: 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 "Udziel dostępu UCI do luci-app-nft-qos"
+msgstr "Przyznaj luci-app-nft-qos dostęp do UCI"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Nazwa hosta"
@@ -106,34 +106,38 @@ msgstr "Nazwa hosta"
msgid "IP Address"
msgstr "Adres IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "Adres IP (v4/v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "Adres IP (tylko v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "Włącz limit"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Limit prędkości według adresu IP"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Limit prędkości według adresu MAC"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
-msgstr "Ogranicz natężenie ruchu według adresu Mac"
+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:170
-msgid "MAC (optional)"
-msgstr "MAC (opcjonalnie)"
-
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "Adres MAC"
@@ -145,7 +149,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "Ustawienia NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
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."
@@ -167,11 +171,11 @@ 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:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Priorytet"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokół"
@@ -181,10 +185,10 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
-msgstr "Tempo"
+msgstr "Szybkość"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130
msgid "Realtime Download Rate"
@@ -198,15 +202,15 @@ 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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Usługa"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr "Statyczna prędkość pobierania QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "Statyczna prędkość wysyłania QoS"
@@ -222,7 +226,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Priorytet ruchu"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Ustawienia priorytetu ruchu sieciowego"
@@ -230,18 +238,18 @@ msgstr "Ustawienia priorytetu ruchu sieciowego"
msgid "Type of Limit Rate"
msgstr "Typ limitu prędkości"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Jednostka"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Upload Bandwidth (Mbps)"
-msgstr "Przepustowość przesyłania (Mbps)"
+msgstr "Przepustowość wysyłania (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "Szybkość wysyłania"
@@ -250,10 +258,13 @@ msgstr "Szybkość wysyłania"
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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "np. https, 23, (separator to przecinek)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (opcjonalnie)"
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 5126ddd28b..7f39d2e0d1 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-09-18 18:36+0000\n"
+"PO-Revision-Date: 2022-07-20 17:18+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.3-dev\n"
+"X-Generator: Weblate 4.14-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,7 +20,7 @@ msgstr "Total de Bytes"
msgid "Collecting data..."
msgstr "A recolher dados..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Comentário"
@@ -32,7 +32,7 @@ msgstr "Taxa de Descarregamento Padrão"
msgid "Default Download Unit"
msgstr "Unidade de Descarregamento Padrão"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Interface de Rede Padrão"
@@ -72,21 +72,21 @@ msgstr "Valor padrão para a taxa de envio"
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
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:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Ativar Prioridade de Tráfego"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "Ativar este recurso"
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Nome do Host"
@@ -105,22 +105,30 @@ msgstr "Nome do Host"
msgid "IP Address"
msgstr "Endereço IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "Endereço IP (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "Endereço IP (apenas v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "Limitar Ativação"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Limite da taxa por endereço IP"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Limite da taxa por endereço Mac"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr "Limitar a taxa de tráfego por endereço Mac"
@@ -128,11 +136,7 @@ msgstr "Limitar a taxa de tráfego por endereço Mac"
msgid "Limit Type"
msgstr "Tipo de Limite"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "Endereço MAC"
@@ -144,7 +148,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "Configurações NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
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, "
@@ -167,11 +171,11 @@ 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:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Prioridade"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protocolo"
@@ -181,8 +185,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "Taxa"
@@ -198,15 +202,15 @@ 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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Serviço"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
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:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "Taxa Estática de Envio QoS"
@@ -223,7 +227,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Prioridade de tráfego"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Configurações de Prioridade de Tráfego"
@@ -231,10 +239,10 @@ msgstr "Configurações de Prioridade de Tráfego"
msgid "Type of Limit Rate"
msgstr "Tipo de Taxa Limite"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Unidade"
@@ -242,7 +250,7 @@ msgstr "Unidade"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "Taxa de Envio"
@@ -251,10 +259,13 @@ msgstr "Taxa de Envio"
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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "por exemplo https, 23, (o separador é vírgula)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (opcional)"
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 768e872d22..84730746d1 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-09-17 16:34+0000\n"
+"PO-Revision-Date: 2023-06-22 19:55+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.3-dev\n"
+"X-Generator: Weblate 4.18.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,7 +20,7 @@ msgstr "Total de Bytes"
msgid "Collecting data..."
msgstr "Coletando dados..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Comentário"
@@ -32,7 +32,7 @@ msgstr "Taxa de Download Padrão"
msgid "Default Download Unit"
msgstr "Unidade de Download Padrão"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Interface de Rede Padrão"
@@ -72,21 +72,21 @@ msgstr "Valor padrão para a taxa de upload"
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
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:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Ativar a Prioridade de Tráfego"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "Ativar este recurso"
@@ -94,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Nome do equipamento"
@@ -105,22 +105,30 @@ msgstr "Nome do equipamento"
msgid "IP Address"
msgstr "Endereço IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "Endereço IP (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "Endereço IP (apenas v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "Ativar Limite"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Limite da taxa por endereço IP"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Limite da taxa por endereço Mac"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr "Limite a taxa de tráfego através de um endereço Mac"
@@ -128,11 +136,7 @@ msgstr "Limite a taxa de tráfego através de um endereço Mac"
msgid "Limit Type"
msgstr "Tipo de Limite"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "Endereço MAC"
@@ -144,11 +148,11 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "Configurações NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
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."
+"eth0.1, eth0, etc."
#: 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."
@@ -167,11 +171,11 @@ 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:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Prioridade"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protocolo"
@@ -181,8 +185,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "Taxa"
@@ -198,15 +202,15 @@ 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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Serviço"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
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:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "QoS-Estático - Taxa de Upload"
@@ -222,7 +226,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Prioridade do tráfego"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Configuração da Prioridade do Tráfego"
@@ -230,10 +238,10 @@ msgstr "Configuração da Prioridade do Tráfego"
msgid "Type of Limit Rate"
msgstr "Tipo de Taxa Limite"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Unidade"
@@ -241,7 +249,7 @@ msgstr "Unidade"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "Taxa de Upload"
@@ -250,10 +258,13 @@ msgstr "Taxa de Upload"
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:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "por exemplo, https, 23, (separado por vírgulas)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (opcional)"
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 4956aa6a16..51f8f470ba 100644
--- a/applications/luci-app-nft-qos/po/ro/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/ro/nft-qos.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-11-15 14:07+0000\n"
+"PO-Revision-Date: 2022-08-05 01:21+0000\n"
"Last-Translator: Simona Iacob <s@zp1.net>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/ro/>\n"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
-"X-Generator: Weblate 4.9.1-dev\n"
+"X-Generator: Weblate 4.14-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,7 +21,7 @@ msgstr "Octeți Total"
msgid "Collecting data..."
msgstr "Colectare date..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Comentariu"
@@ -33,7 +33,7 @@ msgstr "Rata de descărcare implicită"
msgid "Default Download Unit"
msgstr "Unitate de descărcare implicită"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Interfața de rețea implicită"
@@ -59,45 +59,45 @@ msgstr "Valoarea implicită pentru lățimea de bandă de descărcare"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default value for download rate"
-msgstr ""
+msgstr "Valoarea implicită pentru rata de descărcare"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Default value for upload bandwidth"
-msgstr ""
+msgstr "Valoarea implicită pentru lățimea de bandă de încărcare"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default value for upload rate"
-msgstr ""
+msgstr "Valoarea implicită pentru rata de încărcare"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Download Bandwidth (Mbps)"
-msgstr ""
+msgstr "Lățime de bandă de descărcare (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135
msgid "Download Rate"
-msgstr ""
+msgstr "Rata de descărcare"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
-msgstr ""
+msgstr "Activați funcția de limitare a ratei"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
-msgstr ""
+msgstr "Activați prioritatea de trafic"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
-msgstr ""
+msgstr "Activați această funcție"
#: 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 "Acordă acces UCI pentru luci-app-nft-qos"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Numele gazdei ( hostname )"
@@ -106,56 +106,66 @@ msgstr "Numele gazdei ( hostname )"
msgid "IP Address"
msgstr "Adresa IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
-msgstr ""
+msgstr "Adresa IP (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
-msgstr ""
+msgstr "Adresa IP (numai v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
-msgstr ""
+msgstr "Activare limită"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Limitarea ratei în funcție de adresa IP"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Limitarea ratei în funcție de adresa Mac"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
-msgstr ""
+msgstr "Limitarea ratei de trafic în funcție de adresa 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:170
-msgid "MAC (optional)"
-msgstr ""
+msgstr "Tipul de limită"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
-msgstr ""
+msgstr "Adresa MAC"
#: 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:29
msgid "NFT-QoS Settings"
-msgstr ""
+msgstr "Setări NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
+"Interfața de rețea pentru adaptarea traficului, de exemplu br-lan, eth0.1, "
+"eth0 etc."
#: 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 ""
+"Rețeaua care urmează să fie aplicată, de exemplu 192.168.1.0/24, "
+"10.2.0.0/16, etc."
#: 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 ""
+"Rețeaua care urmează să fie aplicată, de exemplu AAAA::BBBB/64, CCCC::1/128, "
+"etc."
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65
msgid "No information available"
@@ -164,95 +174,104 @@ msgstr "Nu există informații disponibile"
#: 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 "Pachete Total"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
-msgstr ""
+msgstr "Prioritate"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protocol"
#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:24
msgid "QoS over Nftables"
-msgstr ""
+msgstr "QoS pe 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
-msgstr ""
+msgstr "Tarif"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130
msgid "Realtime Download Rate"
-msgstr ""
+msgstr "Rata de descărcare în timp real"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125
msgid "Realtime Rate"
-msgstr ""
+msgstr "Rata în timp real"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149
msgid "Realtime Upload Rate"
-msgstr ""
+msgstr "Rata de încărcare în timp real"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
-msgstr ""
+msgstr "Serviciul"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
-msgstr ""
+msgstr "QoS statică - Rata de descărcare"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
-msgstr ""
+msgstr "QoS statică - Rata de încărcare"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87
msgid "Target Network (IPv4/MASK)"
-msgstr ""
+msgstr "Rețeaua țintă (IPv4/MASK)"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93
msgid "Target Network6 (IPv6/MASK)"
-msgstr ""
+msgstr "Rețea țintă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 ""
+"Această pagină oferă o imagine de ansamblu asupra ratei actuale de "
+"descărcare/încărcare."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Prioritate de trafic"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
-msgstr ""
+msgstr "Setări privind prioritatea traficului"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44
msgid "Type of Limit Rate"
-msgstr ""
+msgstr "Tipul de limită Rata"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
-msgstr ""
+msgstr "Unitatea"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Upload Bandwidth (Mbps)"
-msgstr ""
+msgstr "Lățime de bandă de încărcare (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
-msgstr ""
+msgstr "Rata de încărcare"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98
msgid "White List for Limit Rate"
-msgstr ""
+msgstr "Lista albă pentru rata limită"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
-msgstr ""
+msgstr "de exemplu, https, 23, (separatorul este virgulă)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
-msgstr ""
+msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (opțional)"
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 d2cf1fbdf9..2bb0b041cc 100644
--- a/applications/luci-app-nft-qos/po/ru/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/ru/nft-qos.po
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-10-26 14:59+0000\n"
-"Last-Translator: Darin Avdeyeva <yulyablack@inbox.lv>\n"
+"PO-Revision-Date: 2023-05-18 23:53+0000\n"
+"Last-Translator: Alexey <agarkov.alexey.viktorovich@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/ru/>\n"
"Language: ru\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.9-dev\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 4.18-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,7 +21,7 @@ msgstr "Всего байт"
msgid "Collecting data..."
msgstr "Сбор данных..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Комментарий"
@@ -33,7 +33,7 @@ msgstr "Скорость загрузки по умолчанию"
msgid "Default Download Unit"
msgstr "Единица загрузки по умолчанию"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Сетевой интерфейс по умолчанию"
@@ -43,51 +43,51 @@ msgstr "Скорость отправки по умолчанию"
#: 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:55
msgid "Default unit for download rate"
-msgstr "Единица скорости скачивания по умолчанию"
+msgstr "Единица скорости загрузки по умолчанию"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default unit for upload rate"
-msgstr ""
+msgstr "Единица скорости отправки по умолчанию"
#: 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:50
msgid "Default value for download rate"
-msgstr ""
+msgstr "Значение по умолчанию для скорости загрузки"
#: 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:62
msgid "Default value for upload rate"
-msgstr ""
+msgstr "Значение по умолчанию для скорости отправки"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Download Bandwidth (Mbps)"
-msgstr ""
+msgstr "Скорость загрузки (Мбит/с)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr "Включить функцию ограничения скорости"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Включить приоритет трафика"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "Включить эту функцию"
@@ -95,45 +95,49 @@ 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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
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 "IP-адрес"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "IP-адрес (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "IP-адрес (только v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
-msgstr ""
+msgstr "Включить ограничение"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Ограничение скорости по IP-адресу"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Ограничение скорости по Mac-адресу"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
-msgstr ""
+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:170
-msgid "MAC (optional)"
-msgstr "MAC (необязательно)"
-
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC-адрес"
@@ -145,17 +149,19 @@ msgstr "МБ"
msgid "NFT-QoS Settings"
msgstr "Настройки NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
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:87
msgid "Network to be applied, e.g. 192.168.1.0/24, 10.2.0.0/16, etc."
-msgstr ""
+msgstr "Сеть для применения, например, 192.168.1.0/24, 10.2.0.0/16 и т.д."
#: 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 "Сеть для применения, например, AAAA::BBBB/64, CCCC::1/128 и т.д."
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65
msgid "No information available"
@@ -166,11 +172,11 @@ msgstr "Нет доступной информации"
msgid "Packets Total"
msgstr "Всего пакетов"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Приоритет"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Протокол"
@@ -180,10 +186,10 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
-msgstr ""
+msgstr "Скорость"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130
msgid "Realtime Download Rate"
@@ -197,62 +203,69 @@ msgstr "Скорость в реальном времени"
msgid "Realtime Upload Rate"
msgstr "Скорость отправки в реальном времени"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Служба"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
-msgstr ""
+msgstr "Статический QoS - Скорость загрузки"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
-msgstr ""
+msgstr "Статический QoS - Скорость отправки"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87
msgid "Target Network (IPv4/MASK)"
-msgstr ""
+msgstr "Целевая сеть (IPv4/MASK)"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93
msgid "Target Network6 (IPv6/MASK)"
-msgstr ""
+msgstr "Целевая сеть (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 "На этой странице представлен обзор текущей скорости загрузки/выгрузки."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Приоритет трафика"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Настройки приоритета трафика"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44
msgid "Type of Limit Rate"
-msgstr ""
+msgstr "Тип ограничения скорости"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "узел"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Upload Bandwidth (Mbps)"
-msgstr ""
+msgstr "Скорость отправки(Мбит/с)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
-msgstr ""
+msgstr "Скорость отправки"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98
msgid "White List for Limit Rate"
-msgstr ""
+msgstr "Белый список для ограничения скорости"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
-msgstr ""
+msgstr "например, https, 23, (разделитель - запятая)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "кБ"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (необязательно)"
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 03252dd94e..9d21207ab2 100644
--- a/applications/luci-app-nft-qos/po/sk/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/sk/nft-qos.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-08-03 19:09+0000\n"
-"Last-Translator: Marek Ľach <graweeld@googlemail.com>\n"
+"PO-Revision-Date: 2023-07-09 09:41+0000\n"
+"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/sk/>\n"
"Language: sk\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 4.8-dev\n"
+"X-Generator: Weblate 5.0-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,7 +20,7 @@ msgstr "Bytov celkom"
msgid "Collecting data..."
msgstr "Zbieram dáta..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Komentár"
@@ -32,7 +32,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -72,21 +72,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -94,33 +94,41 @@ msgstr ""
msgid "Grant UCI access for luci-app-nft-qos"
msgstr ""
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Názov hostiteľa"
#: 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 "Adresa IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -128,13 +136,10 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
+#, fuzzy
msgid "MAC Address"
-msgstr ""
+msgstr "Adresa MAC"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48
msgid "MB"
@@ -144,7 +149,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,11 +170,11 @@ msgstr "Nie sú dostupné žiadne informácie"
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokol"
@@ -179,8 +184,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -196,15 +201,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -220,7 +225,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -228,10 +237,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -239,7 +248,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -248,7 +257,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 357144fda3..afd1918e5e 100644
--- a/applications/luci-app-nft-qos/po/sv/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/sv/nft-qos.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2020-11-22 15:35+0000\n"
-"Last-Translator: PontusÖsterlindh <pontus@osterlindh.com>\n"
+"PO-Revision-Date: 2022-12-06 15:41+0000\n"
+"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.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 4.4-dev\n"
+"X-Generator: Weblate 4.15-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,83 +20,87 @@ msgstr "Bytes Totalt"
msgid "Collecting data..."
msgstr "Samlar in data..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Kommentera"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default Download Rate"
-msgstr ""
+msgstr "Standardhastighet för hämtning"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55
msgid "Default Download Unit"
-msgstr ""
+msgstr "Standardenhet för hämtning"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default Upload Rate"
-msgstr ""
+msgstr "Standardhastighet för uppladdning"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default Upload Unit"
-msgstr ""
+msgstr "Standardenhet för uppladdning"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55
msgid "Default unit for download rate"
-msgstr ""
+msgstr "Standardenhet för uppladdningshastighet"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default unit for upload rate"
-msgstr ""
+msgstr "Standardenhet för uppladdningshastighet"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
+#, fuzzy
msgid "Default value for download bandwidth"
-msgstr ""
+msgstr "Standardvärde för hämtningens bandbredd"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
+#, fuzzy
msgid "Default value for download rate"
-msgstr ""
+msgstr "Standardvärde för hämtningens hastighet"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Default value for upload bandwidth"
-msgstr ""
+msgstr "Standardvärde för uppladdningens bandbredd"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
+#, fuzzy
msgid "Default value for upload rate"
-msgstr ""
+msgstr "Standardvärde för uppladdningens hastighet"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Download Bandwidth (Mbps)"
-msgstr ""
+msgstr "Bandbredd för hämtningen (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135
msgid "Download Rate"
-msgstr ""
+msgstr "Hastighet för hämtning"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
-msgstr ""
+msgstr "Aktivera trafikprioritet"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
-msgstr ""
+msgstr "Aktivera den här funktionen"
#: applications/luci-app-nft-qos/root/usr/share/rpcd/acl.d/luci-app-nft-qos.json:3
+#, fuzzy
msgid "Grant UCI access for luci-app-nft-qos"
-msgstr ""
+msgstr "Ge UCI åtkomst för luci-app-nft-qos"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Värdnamn"
@@ -105,46 +109,50 @@ msgstr "Värdnamn"
msgid "IP Address"
msgstr "IP-adress"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
-msgstr ""
+msgstr "IP-adress (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
-msgstr ""
+msgstr "IP-adress (Endast v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
-msgid "Limit Traffic Rate By Mac Address"
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44
-msgid "Limit Type"
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170
-msgid "MAC (optional)"
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
+msgid "Limit Traffic Rate By Mac Address"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44
+msgid "Limit Type"
+msgstr "Typ av begränsning"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
-msgstr ""
+msgstr "MAC-address"
#: 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:29
msgid "NFT-QoS Settings"
-msgstr ""
+msgstr "Inställningar för NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -165,93 +173,102 @@ msgstr "Ingen information tillgänglig"
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
-msgstr ""
+msgstr "Prioritet"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
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:24
msgid "QoS over Nftables"
-msgstr ""
+msgstr "QoS över 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
-msgstr ""
+msgstr "Hastighet"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130
msgid "Realtime Download Rate"
-msgstr ""
+msgstr "Hastighet för hämtning i realtid"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125
msgid "Realtime Rate"
-msgstr ""
+msgstr "Hastighet i realtid"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149
msgid "Realtime Upload Rate"
-msgstr ""
+msgstr "Uppladdningshastighet i realtid"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
-msgstr ""
+msgstr "Tjänst"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87
msgid "Target Network (IPv4/MASK)"
-msgstr ""
+msgstr "Målnätverk (IPv4/MASK)"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93
msgid "Target Network6 (IPv6/MASK)"
-msgstr ""
+msgstr "Målnätverk6 (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 ""
+"Den här sidan ger en överblick över nuvarande hastighet för hämtning/"
+"uppladdning."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Prioriterad trafik"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
-msgstr ""
+msgstr "Inställningar för prioriterad trafik"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44
msgid "Type of Limit Rate"
-msgstr ""
+msgstr "Typ av hastighetsbegränsning"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
-msgstr ""
+msgstr "Enhet"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Upload Bandwidth (Mbps)"
-msgstr ""
+msgstr "Bandbredd för uppladdning (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
-msgstr ""
+msgstr "Uppladdningshastighet"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98
msgid "White List for Limit Rate"
-msgstr ""
+msgstr "Vitlista för hastighetsbegränsning"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (valfritt)"
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 3f8068c4b1..1066ce2492 100644
--- a/applications/luci-app-nft-qos/po/templates/nft-qos.pot
+++ b/applications/luci-app-nft-qos/po/templates/nft-qos.pot
@@ -11,7 +11,7 @@ msgstr ""
msgid "Collecting data..."
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr ""
@@ -23,7 +23,7 @@ msgstr ""
msgid "Default Download Unit"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr ""
@@ -63,21 +63,21 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr ""
@@ -85,9 +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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr ""
@@ -96,22 +96,30 @@ msgstr ""
msgid "IP Address"
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:161
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr ""
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr ""
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr ""
@@ -119,11 +127,7 @@ msgstr ""
msgid "Limit Type"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr ""
@@ -135,7 +139,7 @@ msgstr ""
msgid "NFT-QoS Settings"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
@@ -156,11 +160,11 @@ msgstr ""
msgid "Packets Total"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr ""
@@ -170,8 +174,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr ""
@@ -187,15 +191,15 @@ msgstr ""
msgid "Realtime Upload Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr ""
@@ -211,7 +215,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr ""
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr ""
@@ -219,10 +227,10 @@ msgstr ""
msgid "Type of Limit Rate"
msgstr ""
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr ""
@@ -230,7 +238,7 @@ msgstr ""
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr ""
@@ -239,7 +247,7 @@ msgstr ""
msgid "White List for Limit Rate"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
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 9303ef1d20..92282101c3 100644
--- a/applications/luci-app-nft-qos/po/tr/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/tr/nft-qos.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-08-22 19:59+0000\n"
-"Last-Translator: Erdinc <erdincbeldek@gmail.com>\n"
+"PO-Revision-Date: 2022-09-25 14:22+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 4.8.1-dev\n"
+"X-Generator: Weblate 4.14.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,7 +20,7 @@ msgstr "Bayt Toplamı"
msgid "Collecting data..."
msgstr "Veriler toplanıyor..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Yorum"
@@ -32,7 +32,7 @@ msgstr "Varsayılan İndirme Hızı"
msgid "Default Download Unit"
msgstr "Varsayılan İndirme Birimi"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "Varsayılan Ağ Arayüzü"
@@ -72,21 +72,21 @@ msgstr "Yükleme hızı için varsayılan değer"
msgid "Download Bandwidth (Mbps)"
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/model/cbi/nft-qos/nft-qos.lua:248
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135
msgid "Download Rate"
msgstr "İndirme Hızı"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr "Limit Oranı Özelliğini Etkinleştir"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "Trafik Önceliğini Etkinleştir"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "Bu özelliği etkinleştirin"
@@ -94,9 +94,9 @@ msgstr "Bu özelliği etkinleştirin"
msgid "Grant UCI access for luci-app-nft-qos"
msgstr "luci-app-nft-qos için UCI erişimi verin"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Sunucu adı"
@@ -105,22 +105,30 @@ msgstr "Sunucu adı"
msgid "IP Address"
msgstr "IP Adresi"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "IP Adresi (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "IP Adresi (Yalnızca v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "Sınırı Etkinleştir"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "IP Adresine Göre Oranı Sınırla"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Mac Adresine Göre Oranı Sınırla"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr "Trafik Oranını Mac Adresine Göre Sınırlandırın"
@@ -128,11 +136,7 @@ msgstr "Trafik Oranını Mac Adresine Göre Sınırlandırın"
msgid "Limit Type"
msgstr "Limit Türü"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170
-msgid "MAC (optional)"
-msgstr "MAC (isteğe bağlı)"
-
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC Adresi"
@@ -144,7 +148,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "NFT-QoS Ayarları"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr "Trafik Şekillendirme için Ağ Arayüzü, ör. br-lan, eth0.1, eth0 vb."
@@ -165,11 +169,11 @@ msgstr "Bilgi bulunmamaktadır"
msgid "Packets Total"
msgstr "Paket Toplamı"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "Öncelik"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "Protokol"
@@ -179,8 +183,8 @@ msgid "QoS over Nftables"
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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "Oran"
@@ -196,15 +200,15 @@ msgstr "Gerçek Zamanlı Oran"
msgid "Realtime Upload Rate"
msgstr "Gerçek Zamanlı Yükleme Hızı"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "Hizmet"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr "Statik QoS-İndirme Hızı"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "Statik QoS-Yükleme Hızı"
@@ -220,7 +224,11 @@ msgstr "Hedef Ağ6 (IPv6 / MASK)"
msgid "This page gives an overview over currently download/upload rate."
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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Trafik Önceliği"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "Trafik Öncelik Ayarları"
@@ -228,10 +236,10 @@ msgstr "Trafik Öncelik Ayarları"
msgid "Type of Limit Rate"
msgstr "Limit Oranı Türü"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "Birim"
@@ -239,7 +247,7 @@ msgstr "Birim"
msgid "Upload Bandwidth (Mbps)"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "Yükleme Hızı"
@@ -248,10 +256,13 @@ msgstr "Yükleme Hızı"
msgid "White List for Limit Rate"
msgstr "Limit Oranı Beyaz Listesi"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
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 "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (isteğe bağlı)"
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 73e5e14a03..e53e76e832 100644
--- a/applications/luci-app-nft-qos/po/uk/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/uk/nft-qos.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2021-11-04 17:37+0000\n"
-"Last-Translator: Paul Dee <itsascambutmailmeanyway+weblate@gmail.com>\n"
+"PO-Revision-Date: 2022-04-21 01:10+0000\n"
+"Last-Translator: Vladdrako <vladdrako007@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/uk/>\n"
"Language: uk\n"
@@ -9,95 +9,95 @@ 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.9-dev\n"
+"X-Generator: Weblate 4.12-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 "Усього байтів"
#: 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 "Збирання даних..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Примітка"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default Download Rate"
-msgstr ""
+msgstr "Швидкість завантаження за умовчанням"
#: 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:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
-msgstr ""
+msgstr "Мережевий інтерфейс за умовчанням"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default Upload Rate"
-msgstr ""
+msgstr "Швидкість завантаження за умовчанням"
#: 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:55
msgid "Default unit for download rate"
-msgstr ""
+msgstr "Одиниця швидкості завантаження за умовчанням"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default unit for upload rate"
-msgstr ""
+msgstr "Одиниця швидкості відвантаження за умовчанням"
#: 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:50
msgid "Default value for download rate"
-msgstr ""
+msgstr "Значення швидкості завантаження за умовчанням"
#: 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:62
msgid "Default value for upload rate"
-msgstr ""
+msgstr "Значення швидкості відвантаження за умовчанням"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Download Bandwidth (Mbps)"
-msgstr ""
+msgstr "Пропускна здатність завантаження (Мбіт/с)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135
msgid "Download Rate"
-msgstr ""
+msgstr "Швидкість завантаження"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
-msgstr ""
+msgstr "Увімкнути функцію обмеження швидкості"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
-msgstr ""
+msgstr "Увімкнути пріоритет трафіку"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
-msgstr ""
+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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "Ім'я хоста"
@@ -106,56 +106,63 @@ msgstr "Ім'я хоста"
msgid "IP Address"
msgstr "IP-адреса"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
-msgstr ""
+msgstr "IP-адреса (v4/v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
-msgstr ""
+msgstr "IP-адреса (лише v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
+msgstr "Увімкнути обмеження"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
msgstr ""
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
-msgid "Limit Traffic Rate By Mac Address"
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
msgstr ""
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
+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:170
-msgid "MAC (optional)"
-msgstr ""
+msgstr "Тип ліміту"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
-msgstr ""
+msgstr "MAC-адреса"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48
msgid "MB"
-msgstr ""
+msgstr "МБ"
#: 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:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
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: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:93
msgid "Network to be applied, e.g. AAAA::BBBB/64, CCCC::1/128, etc."
msgstr ""
+"Мережа, до якої потрібно застосувати, напр. AAAA::BBBB/64, CCCC::1/128 тощо."
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65
msgid "No information available"
@@ -164,95 +171,103 @@ 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 ""
+msgstr "Усього пакетів"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
-msgstr ""
+msgstr "Пріоритет"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
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: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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
-msgstr ""
+msgstr "Швидкість"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130
msgid "Realtime Download Rate"
-msgstr ""
+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 ""
+msgstr "Швидкість відвантаження в реальному часі"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
-msgstr ""
+msgstr "Служба"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
-msgstr ""
+msgstr "Статична швидкість завантаження QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
-msgstr ""
+msgstr "Статична швидкість відвантаження QoS"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87
msgid "Target Network (IPv4/MASK)"
-msgstr ""
+msgstr "Цільова мережа (IPv4/МАСКА)"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93
msgid "Target Network6 (IPv6/MASK)"
-msgstr ""
+msgstr "Цільова мережа (IPv6/МАСКА)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127
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:192
-msgid "Traffic Priority Settings"
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
msgstr ""
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
+msgid "Traffic Priority Settings"
+msgstr "Налаштування пріоритету трафіку"
+
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44
msgid "Type of Limit Rate"
-msgstr ""
+msgstr "Тип обмеження швидкості"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
-msgstr ""
+msgstr "Одиниця"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Upload Bandwidth (Mbps)"
-msgstr ""
+msgstr "Пропускна здатність відвантаження (Мбіт/с)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
-msgstr ""
+msgstr "Швидкість відвантаження"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98
msgid "White List for Limit Rate"
-msgstr ""
+msgstr "Білий список обмеження швидкості"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
-msgstr ""
+msgstr "напр. https, 23, (роздільник - кома)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
-msgstr ""
+msgstr "кБ"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (необов'язково)"
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 859922f909..5fe9bcfda4 100644
--- a/applications/luci-app-nft-qos/po/vi/nft-qos.po
+++ b/applications/luci-app-nft-qos/po/vi/nft-qos.po
@@ -1,257 +1,270 @@
msgid ""
msgstr ""
-"PO-Revision-Date: 2019-11-13 13:07+0000\n"
-"Last-Translator: Le Van Uoc <kunkun3012@gmail.com>\n"
+"PO-Revision-Date: 2023-06-21 04:37+0000\n"
+"Last-Translator: Quy <haonguyen93056@gmail.com>\n"
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsnft-qos/vi/>\n"
"Language: vi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 3.10-dev\n"
+"X-Generator: Weblate 4.18.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
msgid "Bytes Total"
-msgstr ""
+msgstr "Tổng số byte"
#: 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 "Đang lấy dữ liệu..."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "Bình luận"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default Download Rate"
-msgstr ""
+msgstr "Tốc độ tải xuống mặc định"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55
msgid "Default Download Unit"
-msgstr ""
+msgstr "Đơn vị tải xuống mặc định"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
-msgstr ""
+msgstr "Giao diện mạng mặc định"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default Upload Rate"
-msgstr ""
+msgstr "Tốc độ tải lên mặc định"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default Upload Unit"
-msgstr ""
+msgstr "Đơn vị tải lên mặc định"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55
msgid "Default unit for download rate"
-msgstr ""
+msgstr "Đơn vị mặc định cho tốc độ tải xuống"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67
msgid "Default unit for upload rate"
-msgstr ""
+msgstr "Đơn vị mặc định cho tốc độ tải lên"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Default value for download bandwidth"
-msgstr ""
+msgstr "Giá trị mặc định cho băng thông tải xuống"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default value for download rate"
-msgstr ""
+msgstr "Giá trị mặc định cho tốc độ tải xuống"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Default value for upload bandwidth"
-msgstr ""
+msgstr "Giá trị mặc định cho băng thông tải lên"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
msgid "Default value for upload rate"
-msgstr ""
+msgstr "Giá trị mặc định cho tốc độ tải lên"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
msgid "Download Bandwidth (Mbps)"
-msgstr ""
+msgstr "Băng thông tải xuống (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:252
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135
msgid "Download Rate"
-msgstr ""
+msgstr "Tỷ lệ tải xuống"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
-msgstr ""
+msgstr "Kích hoạt tính năng tỷ lệ giới hạn"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
-msgstr ""
+msgstr "Bật ưu tiên lưu lượng truy cập"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
-msgstr ""
+msgstr "Kích hoạt tính năng này"
#: 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 "Cấp quyền truy cập UCI cho luci-app-nft-qos"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
-msgstr ""
+msgstr "Tên máy chủ (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 "Địa chỉ IP"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
-msgstr ""
+msgstr "Địa chỉ IP (v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
-msgstr ""
+msgstr "Địa chỉ IP (Chỉ v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
-msgstr ""
+msgstr "Kích hoạt giới hạn"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "Tỷ lệ giới hạn theo địa chỉ IP"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "Tỷ lệ giới hạn theo địa chỉ Mac"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
-msgstr ""
+msgstr "Giới hạn tỷ lệ lưu lượng truy cập theo địa chỉ 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:170
-msgid "MAC (optional)"
-msgstr ""
+msgstr "Loại giới hạn"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
-msgstr ""
+msgstr "Địa chỉ MAC"
#: 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:29
msgid "NFT-QoS Settings"
-msgstr ""
+msgstr "Cài đặt NFT-QoS"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr ""
+"Giao diện mạng để định hình lưu lượng, ví dụ: br-lan, eth0.1, eth0, v.v."
#: 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 "Mạng được áp dụng, ví dụ: 192.168.1.0/24, 10.2.0.0/16, v.v."
#: 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 "Mạng được áp dụng, ví dụ: AAAA::BBBB/64, CCCC::1/128, v.v."
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65
msgid "No information available"
-msgstr ""
+msgstr "Không có thông tin có sẵn"
#: 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 "Tổng Packets"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
-msgstr ""
+msgstr "Ưu tiên"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
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:24
msgid "QoS over Nftables"
-msgstr ""
+msgstr "QoS over 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
-msgstr ""
+msgstr "Rate"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130
msgid "Realtime Download Rate"
-msgstr ""
+msgstr "Tỷ lệ tải xuống thời gian thực"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125
msgid "Realtime Rate"
-msgstr ""
+msgstr "Tỷ lệ thời gian thực"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149
msgid "Realtime Upload Rate"
-msgstr ""
+msgstr "Tỷ lệ tải lên theo thời gian thực"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
-msgstr ""
+msgstr "Dịch vụ"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
-msgstr ""
+msgstr "Tốc độ tải xuống QoS tĩnh"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
-msgstr ""
+msgstr "Tốc độ tải lên QoS tĩnh"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87
msgid "Target Network (IPv4/MASK)"
-msgstr ""
+msgstr "Target Network (IPv4/MASK)"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93
msgid "Target Network6 (IPv6/MASK)"
-msgstr ""
+msgstr "Target Network6 (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 ""
+"Trang này cung cấp thông tin tổng quan về tốc độ tải xuống/tải lên hiện tại."
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "Ưu tiên lưu lượng"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
-msgstr ""
+msgstr "Cài đặt ưu tiên lưu lượng"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44
msgid "Type of Limit Rate"
-msgstr ""
+msgstr "Loại tỷ lệ giới hạn"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
-msgstr ""
+msgstr "Đơn vị"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
msgid "Upload Bandwidth (Mbps)"
-msgstr ""
+msgstr "Băng thông tải lên (Mbps)"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:263
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
-msgstr ""
+msgstr "Tỷ lệ tải lên"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98
msgid "White List for Limit Rate"
-msgstr ""
+msgstr "Danh sách trắng cho tỷ lệ giới hạn"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
-msgstr ""
+msgstr "e.g. https, 23, (separator is comma)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
-msgstr ""
+msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "MAC (tùy chọn)"
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 0c66921811..cb79c8281f 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,8 +5,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
-"PO-Revision-Date: 2021-04-12 08:24+0000\n"
-"Last-Translator: xiazhang <xz@xia.plus>\n"
+"PO-Revision-Date: 2023-04-01 09:21+0000\n"
+"Last-Translator: Eric <hamburger2048@users.noreply.hosted.weblate.org>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsnft-qos/zh_Hans/>\n"
"Language: 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 4.6-dev\n"
+"X-Generator: Weblate 4.17-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,9 +26,9 @@ msgstr "字节总数"
msgid "Collecting data..."
msgstr "正在收集数据…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
-msgstr "备注"
+msgstr "注释"
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
msgid "Default Download Rate"
@@ -38,7 +38,7 @@ msgstr "默认下载速率"
msgid "Default Download Unit"
msgstr "默认下载速率单位"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "默认网络接口"
@@ -78,21 +78,21 @@ msgstr "上传速率的默认值"
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr "开启速率限制功能"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "开启流量优先级"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "开启这个功能"
@@ -100,9 +100,9 @@ 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: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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "主机名"
@@ -111,22 +111,30 @@ msgstr "主机名"
msgid "IP Address"
msgstr "IP 地址"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "IP 地址(v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "IP 地址(仅 v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "限速开启"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "根据 IP 地址限制速率"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "根据 Mac 地址限制速率"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr "按 Mac 地址限制通信量速率"
@@ -134,11 +142,7 @@ msgstr "按 Mac 地址限制通信量速率"
msgid "Limit Type"
msgstr "限速类型"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC 地址"
@@ -150,7 +154,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "NFT-QoS 设置"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr "流量整形的目标网络接口,例如:br-lan、eth0.1、eth0 等。"
@@ -171,11 +175,11 @@ msgstr "无可用信息"
msgid "Packets Total"
msgstr "数据包总数"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "优先级"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "协议"
@@ -185,8 +189,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "速率"
@@ -202,15 +206,15 @@ msgstr "实时速率显示"
msgid "Realtime Upload Rate"
msgstr "实时上传速率"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "服务"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr "静态 QoS-下载速率"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "静态 QoS-上传速率"
@@ -226,7 +230,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "流量优先级"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "流量优先级设置"
@@ -234,10 +242,10 @@ msgstr "流量优先级设置"
msgid "Type of Limit Rate"
msgstr "限速的类型"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "单元"
@@ -245,7 +253,7 @@ msgstr "单元"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "上传速率"
@@ -254,10 +262,13 @@ msgstr "上传速率"
msgid "White List for Limit Rate"
msgstr "限速白名单"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "例如https, 23(用逗号分隔)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "物理地址(可选)"
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 b47c5752ab..9f25ed6d4f 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,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
-"PO-Revision-Date: 2021-08-14 14:43+0000\n"
+"PO-Revision-Date: 2022-07-18 03:20+0000\n"
"Last-Translator: Hulen <shift0106@gmail.com>\n"
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsnft-qos/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.8-dev\n"
+"X-Generator: Weblate 4.14-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,7 +26,7 @@ msgstr "位元組總數"
msgid "Collecting data..."
msgstr "正在收集資料中…"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:225
msgid "Comment"
msgstr "註解"
@@ -38,7 +38,7 @@ msgstr "預設下載速率"
msgid "Default Download Unit"
msgstr "預設下載速率單位"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Default Network Interface"
msgstr "預設網路介面"
@@ -78,21 +78,21 @@ msgstr "上傳速率的預設值"
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/model/cbi/nft-qos/nft-qos.lua:248
#: 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:40
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:230
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Enable Limit Rate Feature"
msgstr "開啟速率限制功能"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable Traffic Priority"
msgstr "啟用流量優先權"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:112
msgid "Enable this feature"
msgstr "開啟這個功能"
@@ -100,9 +100,9 @@ msgstr "開啟這個功能"
msgid "Grant UCI access for luci-app-nft-qos"
msgstr "授予 luci-app-nft-qos 擁有 UCI 存取的權限"
-#: 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
+#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:240
msgid "Hostname"
msgstr "主機名稱"
@@ -111,22 +111,30 @@ msgstr "主機名稱"
msgid "IP Address"
msgstr "IP 位址"
-#: 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
+#: 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:168
msgid "IP Address (v4 / v6)"
msgstr "IP 位址(v4 / v6)"
-#: 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
+#: 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:170
msgid "IP Address (v4 Only)"
msgstr "IP 位址(僅 v4)"
#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105
msgid "Limit Enable"
msgstr "限速開啟"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:33
+msgid "Limit Rate by IP Address"
+msgstr "根據 IP 位址限制速率"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:34
+msgid "Limit Rate by Mac Address"
+msgstr "根據 Mac 位址限制速率"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:235
msgid "Limit Traffic Rate By Mac Address"
msgstr "通過 MAC 位址限制流量速率"
@@ -134,11 +142,7 @@ msgstr "通過 MAC 位址限制流量速率"
msgid "Limit Type"
msgstr "限速型別"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:244
msgid "MAC Address"
msgstr "MAC 位址"
@@ -150,7 +154,7 @@ msgstr "MB"
msgid "NFT-QoS Settings"
msgstr "NFT-QoS 設定"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116
msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc."
msgstr "用於流量塑形的網路介面,例如. br-lan、eth0.1、eth0...等等."
@@ -171,11 +175,11 @@ msgstr "無可用資訊"
msgid "Packets Total"
msgstr "資料包總數"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:208
msgid "Priority"
msgstr "優先順序"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:200
msgid "Protocol"
msgstr "協定"
@@ -185,8 +189,8 @@ 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:137
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:174
+#: 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:177
msgid "Rate"
msgstr "速率"
@@ -202,15 +206,15 @@ msgstr "實時速率顯示"
msgid "Realtime Upload Rate"
msgstr "實時上傳速率"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "Service"
msgstr "服務"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:125
msgid "Static QoS-Download Rate"
msgstr "靜態 QoS-下載速率"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158
msgid "Static QoS-Upload Rate"
msgstr "靜態 QoS-上傳速率"
@@ -226,7 +230,11 @@ 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:192
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:35
+msgid "Traffic Priority"
+msgstr "流量優先順序"
+
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:195
msgid "Traffic Priority Settings"
msgstr "流量優先權設定"
@@ -234,10 +242,10 @@ msgstr "流量優先權設定"
msgid "Type of Limit Rate"
msgstr "限速的型別"
-#: 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
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:149
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:182
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:253
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:264
msgid "Unit"
msgstr "單元"
@@ -245,7 +253,7 @@ msgstr "單元"
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/model/cbi/nft-qos/nft-qos.lua:259
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154
msgid "Upload Rate"
msgstr "上傳速率"
@@ -254,10 +262,13 @@ msgstr "上傳速率"
msgid "White List for Limit Rate"
msgstr "限速白名單"
-#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219
+#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222
msgid "e.g. https, 23, (separator is comma)"
msgstr "例如https, 23(用逗號分隔)"
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44
msgid "kB"
msgstr "kB"
+
+#~ msgid "MAC (optional)"
+#~ msgstr "實體位址(可選)"