diff --git a/luci-app-godproxy/Makefile b/luci-app-godproxy/Makefile index 9c4582819..0622e19d3 100644 --- a/luci-app-godproxy/Makefile +++ b/luci-app-godproxy/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-godproxy PKG_VERSION:=3.8.5 -PKG_RELEASE:=3-20211112 +PKG_RELEASE:=3-20211113 PKG_MAINTAINER:=panda-mute diff --git a/luci-app-godproxy/README.md b/luci-app-godproxy/README.md index 059aebe1c..e9b40cf82 100644 --- a/luci-app-godproxy/README.md +++ b/luci-app-godproxy/README.md @@ -1,10 +1,24 @@ -## 更新:2021年11月9日: -1、整理 Luci 界面。 +## 更新:2021年11月13日: +1、感谢 Beginner-Go大神修复以下1-3项: [Beginner-Go](https://github.com/Beginner-Go) -2、(可能)修复 CPU 占用过高问题。 +1)、整理 Luci 界面。 -## 更新:2021年11月8日: -1、优化部分规则+规则地址变更。 +2)、(可能)修复 CPU 占用过高问题。 + +3)、修复证书备份与下载。 + +2、感谢 [godManYYDS](https://github.com/godManYYDS) 大神修复fix rule timeout + +3、优化部分规则+规则地址变更。 + + A、升级koolrpxy规则,视频规则kp.dat,每日规则daily为2021年10月7日最新版。 + + B、升级ABP规则为:EasyList+ Easylist China + CJX's Annoyance List + CJX's chinese。并默认采用。 + + C、升级kpr_our_rule并合并了某些规则为ikpr_our_rule。 + + D、为缓解服务器压力,默认关闭自动更新,上游规则每周更新一次。 + ## 更新:2021年11月5日: 1、已经修复开启视频规则导致软件无法运行问题。主要原因是猴子大佬的规则内容清空了。直接在后台重新更新规则即可。 @@ -20,9 +34,6 @@ ## 更新:2021年2月26日(元宵): 原来的码云以及coding规则已经无法获取(被封)了。现在托管在github上。 -## 更名声明: -原ledeproxy,于2021年1月23日更名为 GodProxy。特此知晓,以前的规则更新链接会失效! - ## 整理声明: GodProxy是基于koolproxyR Plus+重新整理而来。主要参考: @@ -34,7 +45,7 @@ GodProxy是基于koolproxyR Plus+重新整理而来。主要参考: 4、规则来源于 [GodProxy](https://github.com/godros/GodProxy) 。 -## 本来是完全没有必要再造一个的,因为浪费时间。但各位大神都好久没有更新了,有些规则更新需要翻墙,有些名字是KP,有些是KPR,KPR Plus,KPR Plus+。所以没有办法,只能暂且叫GodProxy。望理解! +## 本来是完全没有必要再造一个的,因为浪费时间。但各位大神都好久没有更新了,有些规则更新需要翻墙,有些名字是KP,有些是KPR,KPR Plus,KPR Plus+。所以没有办法,既然用了各位大神的源码和规则就暂且叫GodProxy。望理解! ## 免责声明: diff --git a/luci-app-godproxy/koolproxy/Makefile b/luci-app-godproxy/koolproxy/Makefile index deb4ba096..3fd22ba48 100644 --- a/luci-app-godproxy/koolproxy/Makefile +++ b/luci-app-godproxy/koolproxy/Makefile @@ -22,20 +22,20 @@ define Package/koolproxy/install ifeq ($(ARCH),aarch64) $(INSTALL_BIN) ./files/aarch64 $(1)/usr/share/koolproxy/koolproxy - -else ifeq ($(ARCH),arm) +endif +ifeq ($(ARCH),arm) $(INSTALL_BIN) ./files/arm $(1)/usr/share/koolproxy/koolproxy - -else ifeq ($(ARCH),i386) +endif +ifeq ($(ARCH),i386) $(INSTALL_BIN) ./files/i386 $(1)/usr/share/koolproxy/koolproxy - -else ifeq ($(ARCH),mips) +endif +ifeq ($(ARCH),mips) $(INSTALL_BIN) ./files/mips $(1)/usr/share/koolproxy/koolproxy - -else ifeq ($(ARCH),mipsel) +endif +ifeq ($(ARCH),mipsel) $(INSTALL_BIN) ./files/mipsel $(1)/usr/share/koolproxy/koolproxy - -else ifeq ($(ARCH),x86_64) +endif +ifeq ($(ARCH),x86_64) $(INSTALL_BIN) ./files/x86_64 $(1)/usr/share/koolproxy/koolproxy endif endef diff --git a/luci-app-godproxy/root/etc/config/koolproxy b/luci-app-godproxy/root/etc/config/koolproxy index 70005d0c8..2255f49d0 100644 --- a/luci-app-godproxy/root/etc/config/koolproxy +++ b/luci-app-godproxy/root/etc/config/koolproxy @@ -14,12 +14,19 @@ config acl_rule option proxy_mode '2' option remarks '选要滤https的客户端' option ipaddr '192.168.168.168' - + +config rss_rule + option file 'ikprule.txt' + option name 'ikpr_our_rule' + option url 'https://cdn.jsdelivr.net/gh/project-lede/koolproxy@master/rules/ikprule.txt' + option load '1' + config rss_rule option load '1' - option name 'kpr_our_rule' - option url 'https://raw.sevencdn.com/project-lede/koolproxy/main/rules/kpr_our_rule.txt' - + option name 'adwar规则' + option url 'https://cdn.jsdelivr.net/gh/project-lede/koolproxy@master/rules/adwars.txt' + option file 'adwars.txt' + config usetips option load '0' option name '1' diff --git a/luci-app-godproxy/rulesupdate.log b/luci-app-godproxy/rulesupdate.log index d89743372..f34287600 100644 --- a/luci-app-godproxy/rulesupdate.log +++ b/luci-app-godproxy/rulesupdate.log @@ -1,44 +1,45 @@ -2021-11-13 00:32:21: ------------------- 规则更新 ----------------------- -2021-11-13 00:32:21: ==================================================== -2021-11-13 00:32:21: 开始更新koolproxy的规则,请等待... -2021-11-13 00:32:21: --------------------------------------------------------------------------------------- -2021-11-13 00:32:23: --------------------------------------------------------------------------------------- -2021-11-13 00:32:24: ABP规则的本地版本号: 202111120511 -2021-11-13 00:32:24: ABP规则的在线版本号: 202111130022 -2021-11-13 00:32:24: 检测到 ABP规则 已更新,现在开始更新... -2021-11-13 00:32:24: 将临时的ABP规则文件移动到指定位置 -2021-11-13 00:32:25: yhosts规则本地版本号: 202111082343 -2021-11-13 00:32:25: yhosts规则在线版本号: 202111082343 -2021-11-13 00:32:25: 检测到yhosts本地版本号和在线版本号相同,那还更新个毛啊! -2021-11-13 00:32:27: fanboy规则本地版本号: 202111120500 -2021-11-13 00:32:27: fanboy规则在线版本号: 202111130000 -2021-11-13 00:32:27: 检测到新版本 fanboy规则 列表,开始更新... -2021-11-13 00:32:27: 将临时文件覆盖到原始 fanboy规则 文件 -2021-11-13 00:32:27: antiad规则本地版本号: 20211111023927 -2021-11-13 00:32:27: antiad规则在线版本号: 20211111023927 -2021-11-13 00:32:27: 检测到 antiad规则 本地版本号和在线版本号相同,那还更新个毛啊! -2021-11-13 00:32:27: StevenBlack规则本地版本号: 12 November 2021 -2021-11-13 00:32:27: StevenBlack规则在线版本号: 12 November 2021 -2021-11-13 00:32:27: 检测到 StevenBlack规则 本地版本号和在线版本号相同,那还更新个毛啊! -2021-11-13 00:32:27: AdAway规则本地版本号: mobile ad -2021-11-13 00:32:27: AdAway规则在线版本号: -2021-11-13 00:32:27: 检测到新版本 AdAway规则 列表,开始更新... -2021-11-13 00:32:27: 将临时文件覆盖到原始 AdAway规则 文件 -2021-11-13 00:32:27: 正在优化 fanboy规则。。。。。 -2021-11-13 00:32:28: 正在优化 ABP规则。。。。。 -2021-11-13 00:32:33: 跳过优化 补充规则yhosts。。。。。 -2021-11-13 00:32:33: 跳过优化 补充规则antiad。。。。。 -2021-11-13 00:32:33: 跳过优化 补充规则StevenBlack。。。。。 -2021-11-13 00:32:33: 正在优化 补充规则Adwars。。。。。 -2021-11-13 00:32:33: 正在优化 补充规则AdAway。。。。。 -2021-11-13 00:32:33: 所有规则更新并优化完毕! -2021-11-13 00:32:33: ==================================================== -2021-11-13 00:32:35: -------------------ABP规则 version 202111130022 -2021-11-13 00:32:35: -------------------Fanboy规则 version 202111130000 -2021-11-13 00:32:35: -------------------Yhosts规则 version 202111082343 -2021-11-13 00:32:35: -------------------Antiad规则 version 20211111023927 -2021-11-13 00:32:35: -------------------StevenBlack规则 version 12 November 2021 -2021-11-13 00:32:35: -------------------静态规则 version 2021-10-07 18:00 -2021-11-13 00:32:35: -------------------乘风视频 version 202111051 -2021-11-13 00:32:35: ------------------- 内置规则更新成功! ------------------- -2021-11-13 00:32:35: ------------------- 规则更新成功! ------------------- +2021-11-13 04:53:14: ------------------- 规则更新 ----------------------- +2021-11-13 04:53:14: ==================================================== +2021-11-13 04:53:14: 开始更新koolproxy的规则,请等待... +2021-11-13 04:53:14: --------------------------------------------------------------------------------------- +2021-11-13 04:53:16: --------------------------------------------------------------------------------------- +2021-11-13 04:53:17: --------------------------------------------------------------------------------------- +2021-11-13 04:53:18: ABP规则的本地版本号: 202111130022 +2021-11-13 04:53:18: ABP规则的在线版本号: 202111130446 +2021-11-13 04:53:18: 检测到 ABP规则 已更新,现在开始更新... +2021-11-13 04:53:18: 将临时的ABP规则文件移动到指定位置 +2021-11-13 04:53:19: yhosts规则本地版本号: 202111082343 +2021-11-13 04:53:19: yhosts规则在线版本号: 202111082343 +2021-11-13 04:53:19: 检测到yhosts本地版本号和在线版本号相同,那还更新个毛啊! +2021-11-13 04:53:20: fanboy规则本地版本号: 202111130000 +2021-11-13 04:53:20: fanboy规则在线版本号: 202111130450 +2021-11-13 04:53:20: 检测到新版本 fanboy规则 列表,开始更新... +2021-11-13 04:53:20: 将临时文件覆盖到原始 fanboy规则 文件 +2021-11-13 04:53:20: antiad规则本地版本号: 20211111023927 +2021-11-13 04:53:20: antiad规则在线版本号: 20211111023927 +2021-11-13 04:53:20: 检测到 antiad规则 本地版本号和在线版本号相同,那还更新个毛啊! +2021-11-13 04:53:20: StevenBlack规则本地版本号: 12 November 2021 +2021-11-13 04:53:20: StevenBlack规则在线版本号: 12 November 2021 +2021-11-13 04:53:20: 检测到 StevenBlack规则 本地版本号和在线版本号相同,那还更新个毛啊! +2021-11-13 04:53:21: AdAway规则本地版本号: mobile ad +2021-11-13 04:53:21: AdAway规则在线版本号: +2021-11-13 04:53:21: 检测到新版本 AdAway规则 列表,开始更新... +2021-11-13 04:53:21: 将临时文件覆盖到原始 AdAway规则 文件 +2021-11-13 04:53:21: 正在优化 fanboy规则。。。。。 +2021-11-13 04:53:22: 正在优化 ABP规则。。。。。 +2021-11-13 04:53:27: 跳过优化 补充规则yhosts。。。。。 +2021-11-13 04:53:27: 跳过优化 补充规则antiad。。。。。 +2021-11-13 04:53:27: 跳过优化 补充规则StevenBlack。。。。。 +2021-11-13 04:53:27: 正在优化 补充规则Adwars。。。。。 +2021-11-13 04:53:27: 正在优化 补充规则AdAway。。。。。 +2021-11-13 04:53:27: 所有规则更新并优化完毕! +2021-11-13 04:53:27: ==================================================== +2021-11-13 04:53:29: -------------------ABP规则 version 202111130446 +2021-11-13 04:53:29: -------------------Fanboy规则 version 202111130450 +2021-11-13 04:53:29: -------------------Yhosts规则 version 202111082343 +2021-11-13 04:53:29: -------------------Antiad规则 version 20211111023927 +2021-11-13 04:53:29: -------------------StevenBlack规则 version 12 November 2021 +2021-11-13 04:53:29: -------------------静态规则 version 2021-10-07 18:00 +2021-11-13 04:53:29: -------------------乘风视频 version 202111131 +2021-11-13 04:53:29: ------------------- 内置规则更新成功! ------------------- +2021-11-13 04:53:29: ------------------- 规则更新成功! ------------------- diff --git a/luci-app-nft-qos/po/da/nft-qos.po b/luci-app-nft-qos/po/da/nft-qos.po index ce311e1e5..517258bbc 100644 --- a/luci-app-nft-qos/po/da/nft-qos.po +++ b/luci-app-nft-qos/po/da/nft-qos.po @@ -1,251 +1,259 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-11-11 17:52+0000\n" +"Last-Translator: drax red \n" +"Language-Team: Danish \n" "Language: da\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9.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 msgid "Bytes Total" -msgstr "" +msgstr "Bytes i alt" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 msgid "Collecting data..." -msgstr "" +msgstr "Indsamler data..." #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:222 msgid "Comment" -msgstr "" +msgstr "Kommentar" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default Download Rate" -msgstr "" +msgstr "Standard downloadhastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default Download Unit" -msgstr "" +msgstr "Standard downloadenhed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Default Network Interface" -msgstr "" +msgstr "Standardnetværks interface" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default Upload Rate" -msgstr "" +msgstr "Standard uploadhastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default Upload Unit" -msgstr "" +msgstr "Standard Upload-enhed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:55 msgid "Default unit for download rate" -msgstr "" +msgstr "Standardenhed for downloadhastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:67 msgid "Default unit for upload rate" -msgstr "" +msgstr "Standardenhed for uploadhastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Default value for download bandwidth" -msgstr "" +msgstr "Standardværdi for download-båndbredde" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50 msgid "Default value for download rate" -msgstr "" +msgstr "Standardværdi for downloadhastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Default value for upload bandwidth" -msgstr "" +msgstr "Standardværdi for upload-båndbredde" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62 msgid "Default value for upload rate" -msgstr "" +msgstr "Standardværdi for uploadhastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77 msgid "Download Bandwidth (Mbps)" -msgstr "" +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/view/nft-qos/rate.htm:135 msgid "Download Rate" -msgstr "" +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 msgid "Enable Limit Rate Feature" -msgstr "" +msgstr "Aktiver funktionen Grænsehastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable Traffic Priority" -msgstr "" +msgstr "Aktiver trafikprioritet" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:105 msgid "Enable this feature" -msgstr "" +msgstr "Aktiver denne funktion" #: 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 "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 msgid "Hostname" -msgstr "" +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 "" +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 msgid "IP Address (v4 / v6)" -msgstr "" +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 msgid "IP Address (v4 Only)" -msgstr "" +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 msgid "Limit Enable" -msgstr "" +msgstr "Begræns Aktiver" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:239 msgid "Limit Traffic Rate By Mac Address" -msgstr "" +msgstr "Begrænse trafikhastighed efter Mac-adresse" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Limit Type" -msgstr "" +msgstr "Begræns type" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:170 msgid "MAC (optional)" -msgstr "" +msgstr "MAC (valgfrit)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:248 msgid "MAC Address" -msgstr "" +msgstr "MAC-adresse" #: 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 "NFT-QoS indstillinger" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:109 msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc." msgstr "" +"Netværks interface til trafik shaping, f.eks. br-lan, eth0.1, eth0, osv." #: 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 "Netværk, der skal anvendes, f.eks. 192.168.1.0/24, 10.2.0.0.0/16 osv." #: 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 "Netværk, der skal anvendes, f.eks. AAAA::BBBB/64, CCCC::1/128 osv." #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" -msgstr "" +msgstr "Ingen oplysninger tilgængelige" #: 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 "Pakker i alt" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:205 msgid "Priority" -msgstr "" +msgstr "Prioritet" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:197 msgid "Protocol" -msgstr "" +msgstr "Protokol" #: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:21 #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua: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 msgid "Rate" -msgstr "" +msgstr "Sats" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 msgid "Realtime Download Rate" -msgstr "" +msgstr "Downloadhastighed i realtid" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 msgid "Realtime Rate" -msgstr "" +msgstr "Realtidssats" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 msgid "Realtime Upload Rate" -msgstr "" +msgstr "Upload i realtid" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "Service" -msgstr "" +msgstr "Tjeneste" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:118 msgid "Static QoS-Download Rate" -msgstr "" +msgstr "Statisk QoS-downloadhastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:151 msgid "Static QoS-Upload Rate" -msgstr "" +msgstr "Statisk QoS-Upload-hastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:87 msgid "Target Network (IPv4/MASK)" -msgstr "" +msgstr "Destinationsnetværk (IPv4/MASK)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:93 msgid "Target Network6 (IPv6/MASK)" -msgstr "" +msgstr "Destination 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 "" +"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 msgid "Traffic Priority Settings" -msgstr "" +msgstr "Indstillinger for trafikprioritet" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:44 msgid "Type of Limit Rate" -msgstr "" +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 msgid "Unit" -msgstr "" +msgstr "Enhed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82 msgid "Upload Bandwidth (Mbps)" -msgstr "" +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/view/nft-qos/rate.htm:154 msgid "Upload Rate" -msgstr "" +msgstr "Upload-hastighed" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:98 msgid "White List for Limit Rate" -msgstr "" +msgstr "Hvidliste for grænseværdi" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:219 msgid "e.g. https, 23, (separator is comma)" -msgstr "" +msgstr "f.eks. https, 23, (separator er et komma)" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 msgid "kB" -msgstr "" +msgstr "kB" diff --git a/luci-app-nft-qos/po/ro/nft-qos.po b/luci-app-nft-qos/po/ro/nft-qos.po index 5a7965b40..58015c02c 100644 --- a/luci-app-nft-qos/po/ro/nft-qos.po +++ b/luci-app-nft-qos/po/ro/nft-qos.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-11-07 15:53+0000\n" -"Last-Translator: CRISTIAN ANDREI \n" +"PO-Revision-Date: 2021-11-12 18:40+0000\n" +"Last-Translator: Simona Iacob \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -9,12 +9,12 @@ 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-dev\n" +"X-Generator: Weblate 4.9.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 msgid "Bytes Total" -msgstr "" +msgstr "Octeți Total" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 @@ -159,7 +159,7 @@ msgstr "" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" -msgstr "" +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