update-01.10
This commit is contained in:
parent
9ca977f1bd
commit
c70bcea65f
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2020-09-19 18:03+0000\n"
|
"PO-Revision-Date: 2022-01-08 22:54+0000\n"
|
||||||
"Last-Translator: Marcin Net <marcin.net@linux.pl>\n"
|
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
|
||||||
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
|
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
|
||||||
"luciapplicationsnft-qos/pl/>\n"
|
"luciapplicationsnft-qos/pl/>\n"
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
|
@ -9,7 +9,7 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||||
"|| n%100>=20) ? 1 : 2;\n"
|
"|| n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.3-dev\n"
|
"X-Generator: Weblate 4.10.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:136
|
||||||
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155
|
#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155
|
||||||
|
@ -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
|
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:77
|
||||||
msgid "Default value for download bandwidth"
|
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
|
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:50
|
||||||
msgid "Default value for download rate"
|
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
|
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:82
|
||||||
msgid "Default value for upload bandwidth"
|
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
|
#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:62
|
||||||
msgid "Default value for upload rate"
|
msgid "Default value for upload rate"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=luci-app-openclash
|
PKG_NAME:=luci-app-openclash
|
||||||
PKG_VERSION:=0.44.08
|
PKG_VERSION:=0.44.09
|
||||||
PKG_RELEASE:=beta
|
PKG_RELEASE:=beta
|
||||||
PKG_MAINTAINER:=vernesong <https://github.com/vernesong/OpenClash>
|
PKG_MAINTAINER:=vernesong <https://github.com/vernesong/OpenClash>
|
||||||
|
|
||||||
|
|
|
@ -233,10 +233,12 @@ yml_vmess_compatible()
|
||||||
if not x.key?('ws-opts') then
|
if not x.key?('ws-opts') then
|
||||||
x['ws-opts'] = {'path'=>x['ws-path'].to_s}
|
x['ws-opts'] = {'path'=>x['ws-path'].to_s}
|
||||||
else
|
else
|
||||||
if not x['ws-opts'].key?('path') then
|
if x['ws-opts'].nil? then
|
||||||
x['ws-opts']['path'] = {x['ws-path'].to_s}
|
x['ws-opts'] = {'path'=>x['ws-path'].to_s}
|
||||||
elsif x['ws-opts']['path'].empty? then
|
elsif x['ws-opts']['path'].nil? then
|
||||||
x['ws-opts']['path'].update({x['ws-path'].to_s})
|
x['ws-opts'].update({'path'=>x['ws-path'].to_s})
|
||||||
|
else
|
||||||
|
x['ws-opts']['path'].update(x['ws-path'].to_s)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
x.delete('ws-path')
|
x.delete('ws-path')
|
||||||
|
@ -247,9 +249,11 @@ yml_vmess_compatible()
|
||||||
if not x.key?('ws-opts') then
|
if not x.key?('ws-opts') then
|
||||||
x['ws-opts'] = {'headers'=>{v.to_s=>x['ws-headers'][v].to_s}}
|
x['ws-opts'] = {'headers'=>{v.to_s=>x['ws-headers'][v].to_s}}
|
||||||
else
|
else
|
||||||
if not x['ws-opts'].key?('headers') then
|
if x['ws-opts'].nil? then
|
||||||
x['ws-opts']['headers'] = {v.to_s=>x['ws-headers'][v].to_s}
|
x['ws-opts'] = {'headers'=>{v.to_s=>x['ws-headers'][v].to_s}}
|
||||||
elsif x['ws-opts']['headers'].empty? then
|
elsif x['ws-opts']['headers'].nil? then
|
||||||
|
x['ws-opts'].update({'headers'=>{v.to_s=>x['ws-headers'][v].to_s}})
|
||||||
|
else
|
||||||
x['ws-opts']['headers'].update({v.to_s=>x['ws-headers'][v].to_s})
|
x['ws-opts']['headers'].update({v.to_s=>x['ws-headers'][v].to_s})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue