From 70e3134cb31d695cbe4f1977791f8b8c0d6664fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 16:04:52 +0800 Subject: [PATCH] update 2023-09-12 16:04:52 --- luci-app-iperf/Makefile | 16 -- luci-app-iperf/luasrc/controller/iperf.lua | 56 ------ luci-app-iperf/luasrc/view/iperf/test.htm | 178 ------------------ luci-app-iperf/po/de/iperf.po | 108 ----------- luci-app-iperf/po/de/iperf.po~ | 100 ---------- luci-app-iperf/po/fr/iperf.po | 109 ----------- luci-app-iperf/po/fr/iperf.po~ | 99 ---------- luci-app-iperf/po/it/iperf.po | 104 ---------- luci-app-iperf/po/it/iperf.po~ | 96 ---------- luci-app-iperf/po/oc/iperf.po | 104 ---------- luci-app-iperf/po/oc/iperf.po~ | 96 ---------- luci-app-iperf/po/ru/iperf.po | 104 ---------- luci-app-iperf/po/templates/iperf.pot | 92 --------- luci-app-iperf/po/zh-cn | 1 - luci-app-iperf/po/zh_Hans/iperf.po | 104 ---------- luci-app-iperf/po/zh_Hans/iperf.po~ | 96 ---------- luci-app-iperf/root/etc/config/iperf | 115 ----------- .../usr/share/luci/menu.d/luci-app-iperf.json | 13 -- .../usr/share/rpcd/acl.d/luci-app-iperf.json | 11 -- 19 files changed, 1602 deletions(-) delete mode 100644 luci-app-iperf/Makefile delete mode 100644 luci-app-iperf/luasrc/controller/iperf.lua delete mode 100644 luci-app-iperf/luasrc/view/iperf/test.htm delete mode 100644 luci-app-iperf/po/de/iperf.po delete mode 100644 luci-app-iperf/po/de/iperf.po~ delete mode 100644 luci-app-iperf/po/fr/iperf.po delete mode 100644 luci-app-iperf/po/fr/iperf.po~ delete mode 100644 luci-app-iperf/po/it/iperf.po delete mode 100644 luci-app-iperf/po/it/iperf.po~ delete mode 100644 luci-app-iperf/po/oc/iperf.po delete mode 100644 luci-app-iperf/po/oc/iperf.po~ delete mode 100644 luci-app-iperf/po/ru/iperf.po delete mode 100644 luci-app-iperf/po/templates/iperf.pot delete mode 120000 luci-app-iperf/po/zh-cn delete mode 100644 luci-app-iperf/po/zh_Hans/iperf.po delete mode 100644 luci-app-iperf/po/zh_Hans/iperf.po~ delete mode 100644 luci-app-iperf/root/etc/config/iperf delete mode 100644 luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json delete mode 100644 luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json diff --git a/luci-app-iperf/Makefile b/luci-app-iperf/Makefile deleted file mode 100644 index 28de819ae..000000000 --- a/luci-app-iperf/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright (C) 2018-2019 Ycarus (Yannick Chabanois) -# -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=LuCI Support for iPerf3 -LUCI_DEPENDS:=+iperf3-ssl - -PKG_LICENSE:=GPLv3 - -#include ../luci/luci.mk -include $(TOPDIR)/feeds/luci/luci.mk - -# call BuildPackage - OpenWrt buildroot signature diff --git a/luci-app-iperf/luasrc/controller/iperf.lua b/luci-app-iperf/luasrc/controller/iperf.lua deleted file mode 100644 index 8af54323d..000000000 --- a/luci-app-iperf/luasrc/controller/iperf.lua +++ /dev/null @@ -1,56 +0,0 @@ -local uci = luci.model.uci.cursor() -local ut = require "luci.util" - -module("luci.controller.iperf", package.seeall) - -function index() - --entry({"admin", "openmptcprouter", "iperf"}, cbi("iperf"), _("iperf")) - entry({"admin", "services", "iperf"}, alias("admin", "services", "iperf", "test"), _("iPerf"),8) - entry({"admin", "services", "iperf", "test"}, template("iperf/test"), nil,1) - entry({"admin", "services", "iperf", "run_test"}, post("run_test")).leaf = true -end - -function run_test(server,proto,mode,updown,omit,parallel,transmit,bitrate) - luci.http.prepare_content("text/plain") - local iperf - local addr = uci:get("iperf",server,"host") - local ports = uci:get("iperf",server,"ports") - local user = uci:get("iperf",server,"user") or "" - local password = uci:get("iperf",server,"password") or "" - local key = uci:get("iperf",server,"key") or "" - local options = "" - if user ~= "" and password ~= "" and key ~= "" then - luci.sys.call("echo " .. key .. " | base64 -d > /tmp/iperf.pem") - options = options .. " --username " .. user .. " --rsa-public-key-path /tmp/iperf.pem" - end - if mode == "udp" then - options = options .. " -u -b " .. bitrate - end - if updown ~= "upload" then - options = options .. " -R" - end - local ipv = "4" - if proto == "ipv6" then - local ipv = "6" - end - - local t={} - for pt in ports:gmatch("([^,%s]+)") do - table.insert(t,pt) - end - local port = t[ math.random( #t ) ] - if password ~= "" then - iperf = io.popen("omr-iperf %s -P %s -%s -O %s -t %s -J -Z %s" % {server,parallel,ipv,omit,transmit,options}) - else - iperf = io.popen("iperf3 -c %s -P %s -%s -p %s -O %s -t %s -J -Z %s" % {ut.shellquote(addr),parallel,ipv,port,omit,transmit,options}) - end - if iperf then - while true do - local ln = iperf:read("*l") - if not ln then break end - luci.http.write(ln) - luci.http.write("\n") - end - end - return -end \ No newline at end of file diff --git a/luci-app-iperf/luasrc/view/iperf/test.htm b/luci-app-iperf/luasrc/view/iperf/test.htm deleted file mode 100644 index 8694869f3..000000000 --- a/luci-app-iperf/luasrc/view/iperf/test.htm +++ /dev/null @@ -1,178 +0,0 @@ -<%+header%> - -<% - local uci = require("luci.model.uci").cursor() -%> - - - - -<% if stderr and #stderr > 0 then %>
<%=pcdata(stderr)%>
<% end %> -
-
-

<%:iPerf speed tests%>

-
<%:This iPerf interface is in bêta. No support for this.%>
-
- <%:Settings%> -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- <%:0 for unlimited. Need to be limited for UDP test%> -
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- <%:Server VPS IP is bypassed, so this will test only default route speed.%> -
-
-
- -
-
-
- -
- - -
-<%+footer%> diff --git a/luci-app-iperf/po/de/iperf.po b/luci-app-iperf/po/de/iperf.po deleted file mode 100644 index 53023734e..000000000 --- a/luci-app-iperf/po/de/iperf.po +++ /dev/null @@ -1,108 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-08-14 08:04+0000\n" -"Last-Translator: Andreas Dorfer \n" -"Language-Team: German \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.0.4\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "" -"für 'unbegrenzt' den Wert '0' setzen. (Muss für UDP-Tests eingeschränkt " -"werden)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "Ungültige Adresse!" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Downstream" - -#: luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json:3 -msgid "Grant UCI access for luci-app-iperf" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Internet-Protokoll" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Wird geladen" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Betriebsart" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Anzahl der parallel zu testenden Verbindungen" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Die ersten n Sekunden nicht berücksichtigen" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Server" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Server VPS IP is bypassed, so this will test only default route speed." -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Einstellungen" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Angestrebte Bandbreite (MBit/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:169 -msgid "Test" -msgstr "Test" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "" -"Diesese Oberfläche für iPerf ist im Beta-Stadium und ohne offiziellen " -"Support." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "Übertragungszeit in Sekunden" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Upstream" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "Warte auf Abschluss der Aufgaben" - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -#: luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json:3 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "iPerf Geschwindigkeitstests" - -#~ msgid "iperf" -#~ msgstr "iperf" diff --git a/luci-app-iperf/po/de/iperf.po~ b/luci-app-iperf/po/de/iperf.po~ deleted file mode 100644 index cace2be1b..000000000 --- a/luci-app-iperf/po/de/iperf.po~ +++ /dev/null @@ -1,100 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-08-14 08:04+0000\n" -"Last-Translator: Andreas Dorfer \n" -"Language-Team: German \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.0.4\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "" -"für 'unbegrenzt' den Wert '0' setzen. (Muss für UDP-Tests eingeschränkt " -"werden)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "Ungültige Adresse!" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Downstream" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Internet-Protokoll" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Wird geladen" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Betriebsart" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Anzahl der parallel zu testenden Verbindungen" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Die ersten n Sekunden nicht berücksichtigen" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Server" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Einstellungen" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Angestrebte Bandbreite (MBit/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Test" -msgstr "Test" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "" -"Diesese Oberfläche für iPerf ist im Beta-Stadium und ohne offiziellen " -"Support." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "Übertragungszeit in Sekunden" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Upstream" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "Warte auf Abschluss der Aufgaben" - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "iPerf Geschwindigkeitstests" - -#: luci-app-iperf/luasrc/controller/iperf.lua:7 -msgid "iperf" -msgstr "iperf" diff --git a/luci-app-iperf/po/fr/iperf.po b/luci-app-iperf/po/fr/iperf.po deleted file mode 100644 index 711692095..000000000 --- a/luci-app-iperf/po/fr/iperf.po +++ /dev/null @@ -1,109 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2022-02-19 07:53+0000\n" -"Last-Translator: Weblate Admin \n" -"Language-Team: French \n" -"Language: fr\n" -"MIME-Version: 1.0\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.6.1\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0 pour sans limite. Nécessite d'être limité pour les tests UDP." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "Adresse invalide !" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Téléchargement" - -#: luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json:3 -msgid "Grant UCI access for luci-app-iperf" -msgstr "Accorder l'accès UCI pour luci-app-iperf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Protocole Internet" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Chargement" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Mode de fonctionnement" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Nombre de client en parallèle" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Passe les n premières secondes" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Serveur" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Server VPS IP is bypassed, so this will test only default route speed." -msgstr "" -"L'IP du serveur VPS est contournée, donc cela testera uniquement la vitesse " -"de route par défaut." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Paramètres" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Vitesse souhaitée (Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:169 -msgid "Test" -msgstr "Essai" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "Cette interface pour iPerf est en bêta. Pas de support pour ça." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "Temps de transmission (s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Téléverser" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "En attente de la réponse de la commande..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -#: luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json:3 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "Tests de vitesse iPerf" - -#~ msgid "iperf" -#~ msgstr "iperf" diff --git a/luci-app-iperf/po/fr/iperf.po~ b/luci-app-iperf/po/fr/iperf.po~ deleted file mode 100644 index ab1afefd3..000000000 --- a/luci-app-iperf/po/fr/iperf.po~ +++ /dev/null @@ -1,99 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2020-09-30 08:50+0000\n" -"Last-Translator: Weblate Admin \n" -"Language-Team: French \n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.0.4\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0 pour sans limite. Nécessite d'être limité pour les tests UDP." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "Adresse invalide !" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Téléchargement" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Protocole Internet" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Chargement" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Mode de fonctionnement" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Nombre de client en parallèle" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Passe les n premières secondes" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Serveur" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Paramètres" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Vitesse souhaitée (Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Test" -msgstr "Teste" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "Cette interface pour iPerf est en bêta. Pas de support pour ça." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "Temps de transmission (s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Envoie" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "En attente de la réponse de la commande..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "Tests de vitesse iPerf" - -#: luci-app-iperf/luasrc/controller/iperf.lua:7 -msgid "iperf" -msgstr "iperf" diff --git a/luci-app-iperf/po/it/iperf.po b/luci-app-iperf/po/it/iperf.po deleted file mode 100644 index b8668f2bd..000000000 --- a/luci-app-iperf/po/it/iperf.po +++ /dev/null @@ -1,104 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-09-21 12:51+0000\n" -"Last-Translator: Weblate Admin \n" -"Language-Team: Italian \n" -"Language: it\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0.4\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0 per illimitato. Deve essere limitato per il test UDP" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "È stato specificato un indirizzo errato!" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Scarica" - -#: luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json:3 -msgid "Grant UCI access for luci-app-iperf" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Internet Protocol (Protocollo Internet)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Caricamento in corso" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Modalità di funzionamento" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Numero di flussi client paralleli da eseguire" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Ometti i primi n secondi" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Server" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Server VPS IP is bypassed, so this will test only default route speed." -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Impostazioni" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Bitrate desiderato (Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:169 -msgid "Test" -msgstr "Test" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "Questa interfaccia iPerf è in bêta." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "È ora di trasmettere per (s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Carica" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "In attesa del completamento del comando ..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -#: luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json:3 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "Prove di velocità iPerf" - -#~ msgid "iperf" -#~ msgstr "iPerf" diff --git a/luci-app-iperf/po/it/iperf.po~ b/luci-app-iperf/po/it/iperf.po~ deleted file mode 100644 index 55cef15bd..000000000 --- a/luci-app-iperf/po/it/iperf.po~ +++ /dev/null @@ -1,96 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-09-21 12:51+0000\n" -"Last-Translator: Weblate Admin \n" -"Language-Team: Italian \n" -"Language: it\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0.4\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0 per illimitato. Deve essere limitato per il test UDP" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "È stato specificato un indirizzo errato!" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Scarica" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Internet Protocol (Protocollo Internet)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Caricamento in corso" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Modalità di funzionamento" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Numero di flussi client paralleli da eseguire" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Ometti i primi n secondi" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Server" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Impostazioni" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Bitrate desiderato (Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Test" -msgstr "Test" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "Questa interfaccia iPerf è in bêta." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "È ora di trasmettere per (s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Carica" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "In attesa del completamento del comando ..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "Prove di velocità iPerf" - -#: luci-app-iperf/luasrc/controller/iperf.lua:7 -msgid "iperf" -msgstr "iPerf" diff --git a/luci-app-iperf/po/oc/iperf.po b/luci-app-iperf/po/oc/iperf.po deleted file mode 100644 index f5bc39dad..000000000 --- a/luci-app-iperf/po/oc/iperf.po +++ /dev/null @@ -1,104 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-08-21 20:21+0000\n" -"Last-Translator: Quentin PAGÈS \n" -"Language-Team: Occitan \n" -"Language: oc\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.0.4\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0 per cap de limit. Requerís un limit pels ensages UDP" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "Adreça invalida !" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Telecargament" - -#: luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json:3 -msgid "Grant UCI access for luci-app-iperf" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Protocòl Internet" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Cargament" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Mòde de foncionament" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Nombre de clients en parallèl" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Sautar las primièras n segondas" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Servidor" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Server VPS IP is bypassed, so this will test only default route speed." -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Paramètres" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Velocitat desirada (Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:169 -msgid "Test" -msgstr "Pròva" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "Aquesta interfàcia per iPerf es en beta. Cap de support per aquò." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "Temps de transmission (s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Mandadís" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "En espèra d’una responsa de la comanda..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -#: luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json:3 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "Pròva de velocitat iPerf" - -#~ msgid "iperf" -#~ msgstr "iperf" diff --git a/luci-app-iperf/po/oc/iperf.po~ b/luci-app-iperf/po/oc/iperf.po~ deleted file mode 100644 index 598bb1a2f..000000000 --- a/luci-app-iperf/po/oc/iperf.po~ +++ /dev/null @@ -1,96 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2020-08-21 20:21+0000\n" -"Last-Translator: Quentin PAGÈS \n" -"Language-Team: Occitan \n" -"Language: oc\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.0.4\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0 per cap de limit. Requerís un limit pels ensages UDP" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "Adreça invalida !" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Telecargament" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Protocòl Internet" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Cargament" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Mòde de foncionament" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Nombre de clients en parallèl" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Sautar las primièras n segondas" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Servidor" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Paramètres" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Velocitat desirada (Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Test" -msgstr "Pròva" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "Aquesta interfàcia per iPerf es en beta. Cap de support per aquò." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "Temps de transmission (s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Mandadís" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "En espèra d’una responsa de la comanda..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "Pròva de velocitat iPerf" - -#: luci-app-iperf/luasrc/controller/iperf.lua:7 -msgid "iperf" -msgstr "iperf" diff --git a/luci-app-iperf/po/ru/iperf.po b/luci-app-iperf/po/ru/iperf.po deleted file mode 100644 index 402dfb655..000000000 --- a/luci-app-iperf/po/ru/iperf.po +++ /dev/null @@ -1,104 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-06-16 10:51+0000\n" -"Last-Translator: Dmitry Galenko \n" -"Language-Team: Russian \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.6.1\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0 - без ограничений. Для теста UDP число должно быть больше 0" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "Указан не правильный адрес!" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "Получение" - -#: luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json:3 -msgid "Grant UCI access for luci-app-iperf" -msgstr "Разрешить доступ к UCI для luci-app-iperf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "Интернет протокол" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "Загрузка" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "Режим работы" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "Количество параллельных потоковых клиентов" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "Пропустить первые n секунд" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "Сервер" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Server VPS IP is bypassed, so this will test only default route speed." -msgstr "" -"Включен режим байпаса для IP VPS, будет проверена скорость только маршрута " -"по умолчанию." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "Настройки" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "Целевой битрейт (Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:169 -msgid "Test" -msgstr "Тест" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "Этот iPerf interface в режиме beta. Недоступно." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "Время передачи (s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "Отправка" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "Ожидание завершения команды..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -#: luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json:3 -msgid "iPerf" -msgstr "iPerf" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "iPerf тест скорости" diff --git a/luci-app-iperf/po/templates/iperf.pot b/luci-app-iperf/po/templates/iperf.pot deleted file mode 100644 index 8f41376b1..000000000 --- a/luci-app-iperf/po/templates/iperf.pot +++ /dev/null @@ -1,92 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "" - -#: luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json:3 -msgid "Grant UCI access for luci-app-iperf" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Server VPS IP is bypassed, so this will test only default route speed." -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:169 -msgid "Test" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "" - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -#: luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json:3 -msgid "iPerf" -msgstr "" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "" diff --git a/luci-app-iperf/po/zh-cn b/luci-app-iperf/po/zh-cn deleted file mode 120000 index 8d69574dd..000000000 --- a/luci-app-iperf/po/zh-cn +++ /dev/null @@ -1 +0,0 @@ -zh_Hans \ No newline at end of file diff --git a/luci-app-iperf/po/zh_Hans/iperf.po b/luci-app-iperf/po/zh_Hans/iperf.po deleted file mode 100644 index 6ccea7a50..000000000 --- a/luci-app-iperf/po/zh_Hans/iperf.po +++ /dev/null @@ -1,104 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-05-13 21:38+0000\n" -"Last-Translator: justbin <419989953@qq.com>\n" -"Language-Team: Chinese (Simplified) \n" -"Language: zh_Hans\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.6.1\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0代表无限.需要限制UDP测试" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "指定地址错误!" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "下载" - -#: luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json:3 -msgid "Grant UCI access for luci-app-iperf" -msgstr "授予luci-app-iperf UCI访问权限" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "互联网协议" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "载入中" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "操作模式" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "要运行的并行客户端流的数量" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "忽略前n秒" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "服务器" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Server VPS IP is bypassed, so this will test only default route speed." -msgstr "VPS IP被绕过,因此这将只测试默认的路由速度。" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "设置" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "目标比特率(Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:169 -msgid "Test" -msgstr "测试" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "此iPerf界面位于测试中.对此不支持." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "传输时间 (秒)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "上传" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "等待命令完成..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -#: luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json:3 -msgid "iPerf" -msgstr "iPerf测速" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "iPerf速度测试" - -#~ msgid "iperf" -#~ msgstr "iperf测速" diff --git a/luci-app-iperf/po/zh_Hans/iperf.po~ b/luci-app-iperf/po/zh_Hans/iperf.po~ deleted file mode 100644 index 63ea2e8b8..000000000 --- a/luci-app-iperf/po/zh_Hans/iperf.po~ +++ /dev/null @@ -1,96 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2021-04-30 16:03+0000\n" -"Last-Translator: niergouge <1150108426@qq.com>\n" -"Language-Team: Chinese (Simplified) \n" -"Language: zh_Hans\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.5.2\n" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:128 -msgid "0 for unlimited. Need to be limited for UDP test" -msgstr "0代表无限.需要限制UDP测试" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Bad address specified!" -msgstr "指定地址错误!" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -#: luci-app-iperf/luasrc/view/iperf/test.htm:78 -#: luci-app-iperf/luasrc/view/iperf/test.htm:83 -#: luci-app-iperf/luasrc/view/iperf/test.htm:88 -msgid "Download" -msgstr "下载" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:114 -msgid "Internet protocol" -msgstr "互联网协议" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:66 -msgid "Loading" -msgstr "载入中" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:105 -msgid "Mode of operation" -msgstr "操作模式" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:133 -msgid "Number of parallel client streams to run" -msgstr "要运行的并行客户端流的数量" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:139 -msgid "Omit the first n seconds" -msgstr "忽略前n秒" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:151 -msgid "Server" -msgstr "服务器" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:102 -msgid "Settings" -msgstr "设置" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:123 -msgid "Target bitrate (Mbits/s)" -msgstr "目标比特率(Mbits/s)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:165 -msgid "Test" -msgstr "测试" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:100 -msgid "This iPerf interface is in bêta. No support for this." -msgstr "此iPerf界面位于测试中.对此不支持." - -#: luci-app-iperf/luasrc/view/iperf/test.htm:145 -msgid "Time to transmit for (s)" -msgstr "传输时间 (秒)" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:26 -#: luci-app-iperf/luasrc/view/iperf/test.htm:38 -#: luci-app-iperf/luasrc/view/iperf/test.htm:43 -#: luci-app-iperf/luasrc/view/iperf/test.htm:48 -msgid "Upload" -msgstr "上传" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:27 -#: luci-app-iperf/luasrc/view/iperf/test.htm:67 -msgid "Waiting for command to complete..." -msgstr "等待命令完成..." - -#: luci-app-iperf/luasrc/controller/iperf.lua:8 -msgid "iPerf" -msgstr "iPerf测速" - -#: luci-app-iperf/luasrc/view/iperf/test.htm:99 -msgid "iPerf speed tests" -msgstr "iPerf速度测试" - -#: luci-app-iperf/luasrc/controller/iperf.lua:7 -msgid "iperf" -msgstr "iperf测速" diff --git a/luci-app-iperf/root/etc/config/iperf b/luci-app-iperf/root/etc/config/iperf deleted file mode 100644 index be4baabb4..000000000 --- a/luci-app-iperf/root/etc/config/iperf +++ /dev/null @@ -1,115 +0,0 @@ -config server 'bouygues' - option host 'bouygues.iperf.fr' - option ipv4 '1' - option ipv6 '1' - option speed '10000' - option ports '5200,5201,5202,5203,5204,5205,5206,5207,5208,5209' - option tcp '1' - option udp '0' - option location 'Europe' - -config server 'online_ipv4' - option host 'ping.online.net' - option ipv4 '1' - option ipv6 '0' - option speed '10000' - option ports '5200,5201,5202,5203,5204,5205,5206,5207,5208,5209' - option tcp '1' - option udp '1' - option location 'Europe' - -config server 'online_ipv6' - option host 'ping.online.net' - option ipv4 '0' - option ipv6 '1' - option speed '10000' - option ports '5200,5201,5202,5203,5204,5205,5206,5207,5208,5209' - option tcp '1' - option udp '1' - option location 'Europe' - -config server 'serverius' - option host 'speedtest.serverius.net' - option ipv4 '1' - option ipv6 '1' - option speed '10000' - option ports '5002' - option tcp '1' - option udp '1' - option location 'Europe' - -config server 'eenet' - option host 'iperf.eenet.ee' - option ipv4 '1' - option ipv6 '0' - option ports '5201' - option tcp '1' - option udp '1' - option location 'Europe' - -config server 'volia' - option host 'iperf.volia.net' - option ipv4 '1' - option ipv6 '0' - option ports '5201' - option tcp '1' - option udp '1' - option location 'Europe' - -config server 'it_north' - option host 'iperf.it-north.net' - option ipv4 '1' - option ipv6 '0' - option speed '1000' - option ports '5200,5201,5202,5203,5204,5205,5206,5207,5208,5209' - option tcp '1' - option udp '1' - option location 'Asia' - -config server 'biznet' - option host 'iperf.biznetnetworkds.com' - option ipv4 '1' - option ipv6 '1' - option speed '1000' - option ports '5201,5202,5203' - option tcp '1' - option udp '0' - option location 'Asia' - -config server 'scottlinux' - option host 'iperf.scottlinux.com' - option ipv4 '1' - option ipv6 '1' - option speed '1000' - option ports '5201' - option tcp '1' - option udp '1' - option location 'America' - -config server 'he' - option host 'iperf.he.net' - option ipv4 '1' - option ipv6 '1' - option ports '5201' - option tcp '1' - option udp '1' - option location 'America' - -config server 'biznetnetworks' - option host 'iperf.biznetnetworks.com' - option ipv4 '1' - option ipv6 '1' - option ports '5201,5202,5203' - option tcp '1' - option udp '1' - option location 'Asia' - -config server 'milkywan' - option host 'speedtest.milkywan.fr' - option ipv4 '1' - option ipv6 '1' - option speed '10000' - option ports '9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215' - option tcp '1' - option udp '1' - option location 'Europe' diff --git a/luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json b/luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json deleted file mode 100644 index dd6151ee0..000000000 --- a/luci-app-iperf/root/usr/share/luci/menu.d/luci-app-iperf.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "admin/services/iperf": { - "title": "iPerf", - "order": 10, - "action": { - "type": "template", - "path": "iperf/test" - }, - "depends": { - "acl": [ "luci-app-iperf" ] - } - } -} diff --git a/luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json b/luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json deleted file mode 100644 index c85182859..000000000 --- a/luci-app-iperf/root/usr/share/rpcd/acl.d/luci-app-iperf.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "luci-app-iperf": { - "description": "Grant UCI access for luci-app-iperf", - "read": { - "uci": [ "iperf" ] - }, - "write": { - "uci": [ "iperf" ] - } - } -} \ No newline at end of file