diff options
Diffstat (limited to 'applications/luci-app-statistics')
37 files changed, 2802 insertions, 542 deletions
diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js index 322eee137c..19e34e4bc6 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js @@ -376,7 +376,7 @@ return baseclass.extend({ function __def(source) { var inst = source.sname, - rrd = source.rrd.replace(/[\\:]/g, '\\$&'), + rrd = source.rrd, ds = source.ds || 'value'; _args.push( diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js index 282b867c4d..6c2d5ffa46 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js @@ -52,7 +52,7 @@ return view.extend({ o.load = function() { return fs.trimmed('/proc/sys/kernel/hostname').then(L.bind(function(name) { this.placeholder = name; - return uci.get('collectd', 'statistics', 'hostname'); + return uci.get('luci_statistics', 'collectd', 'Hostname'); }, this)); }; diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js index 89b861a84b..32f0cecdab 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js @@ -11,7 +11,7 @@ return baseclass.extend({ o = s.option(form.Flag, 'enable', _('Enable this plugin')); - o = s.option(form.DynamicList, 'Host', _('Monitor host')); + o = s.option(form.Value, 'Host', _('Monitor host')); o.default = 'localhost'; o.datatype = 'host'; o.depends('enable', '1'); @@ -23,11 +23,6 @@ return baseclass.extend({ }, configSummary: function(section) { - var hosts = L.toArray(section.Host); - if (hosts.length) - return N_(hosts.length, - 'Monitoring APC UPS at host %s, port %d', - 'Monitoring APC UPS at hosts %s, port %d' - ).format(hosts.join(', '), section.Port || 3551); + return _('Monitoring APC UPS at host %s, port %d').format(section.Host || 'localhost', section.Port || 3551); } }); diff --git a/applications/luci-app-statistics/po/ar/statistics.po b/applications/luci-app-statistics/po/ar/statistics.po index 9d0aae50f4..b38b04695c 100644 --- a/applications/luci-app-statistics/po/ar/statistics.po +++ b/applications/luci-app-statistics/po/ar/statistics.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:35+0200\n" -"PO-Revision-Date: 2020-10-21 08:14+0000\n" -"Last-Translator: malrubaei <mhmd.alrubaei@gmail.com>\n" +"PO-Revision-Date: 2021-03-08 13:04+0000\n" +"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/ar/>\n" "Language: ar\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.3.1\n" +"X-Generator: Weblate 4.5.1\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -112,7 +112,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:99 msgid "Chain" -msgstr "" +msgstr "سلسلة" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Change the ownership of the socket file to the specified group." @@ -279,7 +279,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" -msgstr "ممكن" +msgstr "شغل" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Enable forwarding" @@ -387,7 +387,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" -msgstr "" +msgstr "جدار الحماية" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js:7 msgid "Firewall (IPv6)" @@ -452,7 +452,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" -msgstr "" +msgstr "ضيف" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:14 msgid "Host running chrony" @@ -460,12 +460,25 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:51 msgid "Hostname" -msgstr "" +msgstr "اسم المضيف" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -485,7 +498,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" -msgstr "" +msgstr "واجهات" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 @@ -649,15 +662,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -946,7 +953,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" -msgstr "" +msgstr "ping" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "Ping Plugin Configuration" @@ -958,7 +965,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:18 msgid "Port" -msgstr "" +msgstr "المنفذ" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" @@ -975,7 +982,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" -msgstr "" +msgstr "العمليات" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "Processes Plugin Configuration" @@ -1053,7 +1060,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:44 msgid "Script" -msgstr "" +msgstr "النص" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:74 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:25 @@ -1234,7 +1241,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" -msgstr "" +msgstr "جدول" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:7 msgid "The APCUPS plugin collects statistics about the APC UPS." @@ -1339,6 +1346,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " @@ -1494,7 +1506,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:27 msgid "URL" -msgstr "" +msgstr "محدد موقع المعلومات URL" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" @@ -1507,7 +1519,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js:15 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" -msgstr "" +msgstr "مدة التشغيل" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "Uptime Plugin Configuration" @@ -1558,7 +1570,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" -msgstr "" +msgstr "لاسلكي" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "Wireless iwinfo Plugin Configuration" @@ -1589,7 +1601,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:139 msgid "none" -msgstr "" +msgstr "لا شيء" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:107 msgid "one device" diff --git a/applications/luci-app-statistics/po/bg/statistics.po b/applications/luci-app-statistics/po/bg/statistics.po index ad767c106c..be555d534c 100644 --- a/applications/luci-app-statistics/po/bg/statistics.po +++ b/applications/luci-app-statistics/po/bg/statistics.po @@ -465,6 +465,19 @@ msgstr "" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -648,11 +661,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1282,6 +1293,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/bn_BD/statistics.po b/applications/luci-app-statistics/po/bn_BD/statistics.po index 888b8613a4..12f09398b1 100644 --- a/applications/luci-app-statistics/po/bn_BD/statistics.po +++ b/applications/luci-app-statistics/po/bn_BD/statistics.po @@ -463,6 +463,19 @@ msgstr "" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -646,11 +659,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1280,6 +1291,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index 5b8c5411b3..3897e933cc 100644 --- a/applications/luci-app-statistics/po/ca/statistics.po +++ b/applications/luci-app-statistics/po/ca/statistics.po @@ -5,8 +5,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-01-14 15:21+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2021-03-08 13:03+0000\n" +"Last-Translator: BenRoura <benrouravkg@gmail.com>\n" "Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/ca/>\n" "Language: ca\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.5.1\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -328,7 +328,7 @@ msgstr "Activa aquest connector" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:113 msgid "Enabled" -msgstr "" +msgstr "Activat" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 @@ -476,6 +476,19 @@ msgstr "Nom de l’amfitrió" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Configuració de connector IRQ" @@ -659,11 +672,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -891,7 +902,7 @@ msgstr "Connectors de sortida" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:60 msgid "Overview" -msgstr "" +msgstr "Visió de conjunt" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 msgid "Percent values" @@ -1312,6 +1323,11 @@ msgstr "" "El connector d'interfície recull estadístiques de tràfic a les interfícies " "seleccionades." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index 7566ec7ee2..df729eb087 100644 --- a/applications/luci-app-statistics/po/cs/statistics.po +++ b/applications/luci-app-statistics/po/cs/statistics.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-10-27 21:26+0000\n" -"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n" +"PO-Revision-Date: 2021-04-14 13:49+0000\n" +"Last-Translator: Jan Breuer <j123b567@jaybee.cz>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/cs/>\n" "Language: cs\n" @@ -10,7 +10,7 @@ msgstr "" "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.3.2-dev\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -51,7 +51,7 @@ msgstr "Souhrnný počet připojených uživatelů" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:228 msgid "Apply interval »" -msgstr "" +msgstr "Použít interval »" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:47 msgid "Awaiting email input at %s" @@ -94,7 +94,7 @@ msgstr "Nastavení CPU pluginu" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:40 msgid "CPU monitoring is enabled" -msgstr "" +msgstr "Monitorování CPU je povoleno" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" @@ -119,15 +119,15 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/chrony.js:8 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/chrony.json:2 msgid "Chrony" -msgstr "" +msgstr "Chrony" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:6 msgid "Chrony Plugin Configuration" -msgstr "" +msgstr "Nastavení pluginu Chrony" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:32 msgid "Chrony monitoring enabled" -msgstr "" +msgstr "Monitorování Chrony povoleno" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:21 msgid "CollectLinks" @@ -473,6 +473,19 @@ msgstr "Název počítače" msgid "IP or hostname where to get the txtinfo output from" msgstr "IP nebo hostname, odkud získá výstup z txtinfo" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Nastavení IRQ pluginu" @@ -657,12 +670,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1321,6 +1331,11 @@ msgid "" msgstr "" "Plugin Interface shromažďuje statistiky o provozu na vybraných rozhraních." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index 113b1f9d4a..36f4cacc81 100644 --- a/applications/luci-app-statistics/po/de/statistics.po +++ b/applications/luci-app-statistics/po/de/statistics.po @@ -476,6 +476,19 @@ msgstr "Hostname" msgid "IP or hostname where to get the txtinfo output from" msgstr "IP-Adresse oder Hostname zum Abfragen der Txtinfo-Ausagabe" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "IRQ Plugin Konfiguration" @@ -663,11 +676,10 @@ msgstr "Überwachung von %s und %s" msgid "Monitoring %s, %s, %s" msgstr "Überwachung von %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 +#, fuzzy msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "Überwachung von APC USV am Host %s, Port %d" -msgstr[1] "Überwachung von APC USV an Hosts %s, Port %d" +msgstr "Überwachung von APC USV am Host %s, Port %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1326,6 +1338,11 @@ msgstr "" "Das Interface-Plugin sammelt allgemeine Verkehrsstatistiken auf ausgewählten " "Schnittstellen." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index 6efd052772..5d93a54747 100644 --- a/applications/luci-app-statistics/po/el/statistics.po +++ b/applications/luci-app-statistics/po/el/statistics.po @@ -467,6 +467,19 @@ msgstr "Όνομα κεντρικού υπολογιστή" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -650,11 +663,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1284,6 +1295,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index ebb02e538a..bcb6c8a7eb 100644 --- a/applications/luci-app-statistics/po/en/statistics.po +++ b/applications/luci-app-statistics/po/en/statistics.po @@ -472,6 +472,19 @@ msgstr "Hostname" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "IRQ Plugin Configuration" @@ -655,11 +668,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1304,6 +1315,11 @@ msgid "" msgstr "" "The interface plugin collects traffic statistics on selected interfaces." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index 8de601ed90..224ceb89e6 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/statistics.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2021-01-19 21:12+0000\n" +"PO-Revision-Date: 2021-05-27 16:32+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/es/>\n" @@ -12,7 +12,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.5-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -197,15 +197,15 @@ msgstr "Configuración del complemento DF" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dhcpleases.js:7 msgid "DHCP Leases" -msgstr "Arrendamientos DHCP" +msgstr "Asignaciones DHCP" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:6 msgid "DHCP Leases Plugin Configuration" -msgstr "Configuración del complemento de arrendamientos DHCP" +msgstr "Configuración del complemento de asignaciones DHCP" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:14 msgid "DHCP leases file" -msgstr "Archivo de arrendamientos DHCP" +msgstr "Archivo de asignaciones DHCP" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 @@ -469,12 +469,25 @@ msgstr "Host ejecutando Chrony" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:51 msgid "Hostname" -msgstr "Nombre del host" +msgstr "Nombre de host" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "IP o nombre de máquina desde la que obtener la salida de txtinfo" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "Estadísticas de IP" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "Configuración del complemento de estadísticas de IP" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "Supervisión de estadísticas IPv4/IPv6 activada" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Configuración del plugin IRQ" @@ -663,15 +676,13 @@ msgstr "Monitoreando %s y %s" msgid "Monitoring %s, %s, %s" msgstr "Monitoreando %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "Supervisión de APC UPS en el host %s, puerto %d" -msgstr[1] "Supervisión de UPS de APC en hosts %s, puerto %d" +msgstr "Monitoreando UPS APC en el host %s, puerto %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" -msgstr "Monitoreo de concesiones DHCP activado" +msgstr "Monitoreo de asignaciones DHCP activado" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:32 msgid "Monitoring DNS queries on all interfaces" @@ -806,7 +817,7 @@ msgstr[1] "Monitoreo de %d sensores" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:10 msgid "Monitoring splash leases" -msgstr "Monitoreo de arrendamientos de splash" +msgstr "Monitoreo de splash leases" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 msgid "Monitoring thermal zones %s" @@ -898,7 +909,7 @@ msgstr "Plugins de salida" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:60 msgid "Overview" -msgstr "Visión general" +msgstr "Vista general" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 msgid "Percent values" @@ -1278,8 +1289,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:7 msgid "The dhcpleases plugin collects information about assigned DHCP leases." msgstr "" -"El complemento dhcpleases recopila información sobre las concesiones DHCP " -"asignadas." +"El complemento dhcpleases recopila información sobre las asignaciones DHCP." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:8 msgid "" @@ -1334,6 +1344,13 @@ msgstr "" "El complemento de interfaz recoge estadísticas de tráfico en las interfaces " "seleccionadas." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" +"El complemento ipstatistics recopila estadísticas de IPv4 e IPv6 para " +"compararlas." + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " @@ -1435,8 +1452,8 @@ msgid "" "The splash leases plugin uses libuci to collect statistics about splash " "leases." msgstr "" -"El plugin \"splash leases\" usa libuci para recopilar estadísticas sobre los " -"arrendamientos de salpicaduras." +"El complemento \"splash leases\" usa libuci para recopilar estadísticas " +"sobre los arrendamientos de salpicaduras." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:7 msgid "" diff --git a/applications/luci-app-statistics/po/fi/statistics.po b/applications/luci-app-statistics/po/fi/statistics.po index f2da3fd9bd..41fdf1a188 100644 --- a/applications/luci-app-statistics/po/fi/statistics.po +++ b/applications/luci-app-statistics/po/fi/statistics.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:35+0200\n" -"PO-Revision-Date: 2020-06-25 19:08+0000\n" +"PO-Revision-Date: 2021-04-05 07:56+0000\n" "Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/fi/>\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -464,12 +464,25 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:51 msgid "Hostname" -msgstr "Palvelinnimi" +msgstr "Nimi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "IP-osoite tai isäntänimi, josta txtinfo-syöte haetaan" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "IRQ-laajennuksen määritys" @@ -655,11 +668,10 @@ msgstr "Valvotaan kohdetta %s ja %s" msgid "Monitoring %s, %s, %s" msgstr "Valvonta %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 +#, fuzzy msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "Valvotaan APC UPS isäntää %s, port %d" -msgstr[1] "Valvotaan APC UPS isäntiä %s, port %d" +msgstr "Valvotaan APC UPS isäntää %s, port %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1301,6 +1313,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Sovittimet-lisäosa kerää liikennetietoja avlituilta sovittimilta." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index 38561b8f53..d618bddc09 100644 --- a/applications/luci-app-statistics/po/fr/statistics.po +++ b/applications/luci-app-statistics/po/fr/statistics.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: 2020-11-14 12:48+0000\n" -"Last-Translator: David Elie-Dit-Cosaque <david.elieditcosaque@gmail.com>\n" +"PO-Revision-Date: 2021-04-11 16:26+0000\n" +"Last-Translator: SRay <seb@isostorm.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/fr/>\n" "Language: fr\n" @@ -12,7 +12,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.4-dev\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -473,6 +473,19 @@ msgstr "Nom d'hôte" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Configuration du greffon IRQ" @@ -656,11 +669,10 @@ msgstr "Surveillance de %s et %s" msgid "Monitoring %s, %s, %s" msgstr "Surveillance de %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 +#, fuzzy msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "Surveillance des APC UPS au niveau de l'hôte %s, port %s" -msgstr[1] "Surveillance des APC UPS au niveau des hôtes %s, port %s" +msgstr "Surveillance des APC UPS au niveau de l'hôte %s, port %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -888,7 +900,7 @@ msgstr "Greffons liés aux résultats" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:60 msgid "Overview" -msgstr "Vue d’ensemble" +msgstr "Aperçu" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 msgid "Percent values" @@ -1307,6 +1319,11 @@ msgstr "" "Ce greffon des interfaces collecte des statistiques de trafic sur les " "interfaces sélectionnées." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index b0af7956a6..409a384c19 100644 --- a/applications/luci-app-statistics/po/he/statistics.po +++ b/applications/luci-app-statistics/po/he/statistics.po @@ -465,6 +465,19 @@ msgstr "" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -648,11 +661,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1282,6 +1293,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/hi/statistics.po b/applications/luci-app-statistics/po/hi/statistics.po index ed2059dc70..6143934f5f 100644 --- a/applications/luci-app-statistics/po/hi/statistics.po +++ b/applications/luci-app-statistics/po/hi/statistics.po @@ -465,6 +465,19 @@ msgstr "" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -648,11 +661,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1282,6 +1293,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index 6be0c83ea8..3270702d54 100644 --- a/applications/luci-app-statistics/po/hu/statistics.po +++ b/applications/luci-app-statistics/po/hu/statistics.po @@ -472,6 +472,19 @@ msgstr "Gépnév" msgid "IP or hostname where to get the txtinfo output from" msgstr "IP vagy gépnév, ahonnan a txtinfo kimenete beszerezhető" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "IRQ bővítmény beállítása" @@ -659,11 +672,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1322,6 +1333,11 @@ msgid "" msgstr "" "A csatoló bővítmény forgalmi statisztikákat gyűjt a kiválasztott csatolókról." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index 791e04a53d..5fe937f2b4 100644 --- a/applications/luci-app-statistics/po/it/statistics.po +++ b/applications/luci-app-statistics/po/it/statistics.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: 2020-03-07 12:33+0000\n" -"Last-Translator: Giuseppe Valitutto <valituttogiuseppe@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Omar Destefani <omar.destefani@gmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/it/>\n" "Language: it\n" @@ -12,7 +12,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.0-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -423,7 +423,7 @@ msgstr "" #: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:15 msgid "Graphs" -msgstr "" +msgstr "Grafici" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:51 @@ -470,6 +470,19 @@ msgstr "Hostname" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -655,11 +668,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1289,6 +1300,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " @@ -1457,7 +1473,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js:15 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" -msgstr "" +msgstr "Uptime" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "Uptime Plugin Configuration" @@ -1508,7 +1524,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" -msgstr "" +msgstr "WIFI" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "Wireless iwinfo Plugin Configuration" diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index 473ea6b05d..97850e3386 100644 --- a/applications/luci-app-statistics/po/ja/statistics.po +++ b/applications/luci-app-statistics/po/ja/statistics.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: 2020-12-28 06:11+0000\n" +"PO-Revision-Date: 2021-02-07 07:33+0000\n" "Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/ja/>\n" @@ -12,7 +12,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.4.1-dev\n" +"X-Generator: Weblate 4.5-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -126,11 +126,11 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:6 msgid "Chrony Plugin Configuration" -msgstr "" +msgstr "Chrony プラグイン構成" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:32 msgid "Chrony monitoring enabled" -msgstr "" +msgstr "Chrony モニタリングが有効" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:21 msgid "CollectLinks" @@ -473,6 +473,19 @@ msgstr "ホスト名" msgid "IP or hostname where to get the txtinfo output from" msgstr "txtinfo 出力取得元の IP またはホスト名" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "IRQ プラグイン設定" @@ -661,10 +674,10 @@ msgstr "%s および %s を監視" msgid "Monitoring %s, %s, %s" msgstr "%s、%s および %s を監視" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 +#, fuzzy msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "ホスト %s、ポート %d で APC UPS を監視中" +msgstr "ホスト %s、ポート %d で APC UPS を監視中" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -911,7 +924,7 @@ msgstr "apcupsd 通信用のポート" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:20 msgid "Port for chronyd" -msgstr "" +msgstr "chronyd 用のポート" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:15 msgid "Possibly bug in collectd. Only 127.0.0.1 and localhost work" @@ -985,7 +998,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:7 msgid "SNMP6 Plugin Configuration" -msgstr "" +msgstr "SNMP6 プラグイン構成" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sqm.js:7 msgid "SQM" @@ -1218,7 +1231,7 @@ msgstr "チェイン名にスペースを含めることはできません" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:7 msgid "The chrony plugin will monitor chrony NTP server statistics" -msgstr "" +msgstr "chrony プラグインは、chrony NTP サーバーの統計をモニターします" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:153 msgid "The comment to match must not contain spaces" @@ -1307,6 +1320,11 @@ msgstr "" "インターフェース プラグインは、選択したインターフェースのトラフィックの統計情" "報を収集します。" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " @@ -1396,7 +1414,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:8 msgid "The snmp6 plugin collects IPv6 statistics for selected interfaces." -msgstr "" +msgstr "snmp6 プラグインは、選択したインターフェースの IPv6 統計を収集します。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:7 msgid "" @@ -1476,7 +1494,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:25 msgid "Timeout for polling chrony" -msgstr "" +msgstr "chrony ポーリングのタイムアウト" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "Try to lookup fully qualified hostname" diff --git a/applications/luci-app-statistics/po/ko/statistics.po b/applications/luci-app-statistics/po/ko/statistics.po index 435c330791..489f2c6482 100644 --- a/applications/luci-app-statistics/po/ko/statistics.po +++ b/applications/luci-app-statistics/po/ko/statistics.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:35+0200\n" -"PO-Revision-Date: 2021-01-17 20:54+0000\n" -"Last-Translator: ANTEGRAL <antegral@antegral.net>\n" +"PO-Revision-Date: 2021-03-21 14:31+0000\n" +"Last-Translator: asdf1234 <cydyellowgreen@gmail.com>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/ko/>\n" "Language: ko\n" @@ -12,7 +12,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.5-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -208,7 +208,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" -msgstr "" +msgstr "DNS" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "DNS Plugin Configuration" @@ -324,7 +324,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:113 msgid "Enabled" -msgstr "" +msgstr "활성화" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 @@ -465,6 +465,19 @@ msgstr "호스트 이름" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -648,10 +661,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1268,6 +1280,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/mr/statistics.po b/applications/luci-app-statistics/po/mr/statistics.po index 33acd3a44f..dc132f2ecf 100644 --- a/applications/luci-app-statistics/po/mr/statistics.po +++ b/applications/luci-app-statistics/po/mr/statistics.po @@ -465,6 +465,19 @@ msgstr "होस्टनाव" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -648,11 +661,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1282,6 +1293,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index db34c8e90b..2bf126dcf9 100644 --- a/applications/luci-app-statistics/po/ms/statistics.po +++ b/applications/luci-app-statistics/po/ms/statistics.po @@ -465,6 +465,19 @@ msgstr "" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -648,10 +661,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1268,6 +1280,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/nb_NO/statistics.po b/applications/luci-app-statistics/po/nb_NO/statistics.po index da04058117..c3fd97e0da 100644 --- a/applications/luci-app-statistics/po/nb_NO/statistics.po +++ b/applications/luci-app-statistics/po/nb_NO/statistics.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-12-13 05:29+0000\n" +"PO-Revision-Date: 2021-04-04 07:26+0000\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/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.4-dev\n" +"X-Generator: Weblate 4.6-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -106,8 +106,9 @@ msgid "Cache collected data for" msgstr "Hurtigbufre innsamlede data for" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:99 +#, fuzzy msgid "Chain" -msgstr "Lenke" +msgstr "Kjede" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Change the ownership of the socket file to the specified group." @@ -274,7 +275,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" -msgstr "" +msgstr "Skru på" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Enable forwarding" @@ -320,7 +321,7 @@ msgstr "Aktiver denne plugin" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:113 msgid "Enabled" -msgstr "" +msgstr "Påskrudd" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 @@ -466,6 +467,19 @@ msgstr "Vertsnavn" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "IRQ plugin konfigurasjon" @@ -649,11 +663,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -902,7 +914,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:18 msgid "Port" -msgstr "" +msgstr "Port" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" @@ -1297,6 +1309,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Grensesnitt plugin samler trafikk statistikk på utvalgte grensesnitt." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " @@ -1541,8 +1558,9 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#, fuzzy msgid "Wireless" -msgstr "Trådløs" +msgstr "Trådløst" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "Wireless iwinfo Plugin Configuration" diff --git a/applications/luci-app-statistics/po/nl/statistics.po b/applications/luci-app-statistics/po/nl/statistics.po new file mode 100644 index 0000000000..cf0b22c07d --- /dev/null +++ b/applications/luci-app-statistics/po/nl/statistics.po @@ -0,0 +1,1642 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:35+0200\n" +"PO-Revision-Date: 2021-05-29 16:19+0000\n" +"Last-Translator: Jonathan Mohamed <jonathanmohamed34@gmail.com>\n" +"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsstatistics/nl/>\n" +"Language: nl\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.7-dev\n" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +msgid "APC UPS" +msgstr "APC UPS" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 +msgid "APCUPS Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 +msgid "Absolute values" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:36 +msgid "Add notification command" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 +msgid "Address family" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:18 +msgid "Aggregate number of connected users" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:228 +msgid "Apply interval »" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:47 +msgid "Awaiting email input at %s" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:59 +msgid "Base Directory" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:16 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:16 +msgid "Basic monitoring" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 +msgid "By setting this, CPU is not aggregate of all processors on the system" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 +msgid "CPU Context Switches Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js:8 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +msgid "CPU Frequency" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 +msgid "CPU Frequency Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 +msgid "CPU Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:40 +msgid "CPU monitoring is enabled" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +msgid "CSV Output" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 +msgid "CSV Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:70 +msgid "Cache collected data for" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:99 +msgid "Chain" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/chrony.js:8 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/chrony.json:2 +msgid "Chrony" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:6 +msgid "Chrony Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:32 +msgid "Chrony monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:21 +msgid "CollectLinks" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:28 +msgid "CollectRoutes" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:35 +msgid "CollectTopology" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:46 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:49 +msgid "Collectd Settings" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:57 +msgid "Command monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:137 +msgid "Comment / Rule Number" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:174 +msgid "Configure…" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +msgid "Conntrack" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 +msgid "Conntrack Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:10 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/contextswitch.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +msgid "Context Switches" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:10 +msgid "Context switch monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:23 +msgid "Controls which notifications should be sent to syslog." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:28 +msgid "Create statistics about the network plugin itself" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:7 +msgid "DF Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dhcpleases.js:7 +msgid "DHCP Leases" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:6 +msgid "DHCP Leases Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:14 +msgid "DHCP leases file" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js:10 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +msgid "DNS" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 +msgid "DNS Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:74 +msgid "Data collection interval" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:71 +msgid "Datasets definition file" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:22 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dhcpleases.json:2 +msgid "Dhcpleases" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:65 +msgid "Directory for collectd plugins" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:62 +msgid "Directory for sub-configurations" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 +msgid "Disk Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/df.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +msgid "Disk Space Usage" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/disk.js:10 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +msgid "Disk Usage" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:212 +msgid "Display Host »" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +msgid "Display timespan »" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:195 +msgid "Do not refresh" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:7 +msgid "E-Mail Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +msgid "Email" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 +msgid "Empty value = monitor all" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 +msgid "Enable" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:25 +msgid "Enable forwarding" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:28 +msgid "Enable statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:11 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:14 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:21 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:12 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:13 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:13 +msgid "Enable this plugin" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:113 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js:10 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +msgid "Entropy" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 +msgid "Entropy Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:10 +msgid "Entropy monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:197 +msgid "Every 30 seconds" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:196 +msgid "Every 5 seconds" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:198 +msgid "Every minute" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +msgid "Exec" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 +msgid "Exec Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 +msgid "Expecting decimal value lower than one" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:33 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:49 +msgid "Expecting valid time range" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "Extra items" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:36 +msgid "Filter class monitoring" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +msgid "Firewall" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js:7 +msgid "Firewall (IPv6)" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Flush cache after" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:25 +msgid "Forwarding between listen and server addresses" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:92 +msgid "" +"Free space, reserved space and used space is reported as relative values" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:21 +msgid "Gather compression statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:86 +msgid "General plugins" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 +msgid "Generate a separate graph for each logged user" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/rpcd/acl.d/luci-app-statistics.json:3 +msgid "Grant access to statistics resources" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:15 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:31 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:51 +msgid "Group" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 +msgid "" +"Here you can define external commands which will be started by collectd in " +"order to read certain values. The values will be read from stdout." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:37 +msgid "" +"Here you can define external commands which will be started by collectd when " +"certain threshold values have been reached. The values leading to invocation " +"will be fed to the the called programs stdin." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 +msgid "" +"Here you can define various criteria by which the monitored iptables rules " +"are selected." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 +msgid "Host" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:14 +msgid "Host running chrony" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:51 +msgid "Hostname" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 +msgid "IP or hostname where to get the txtinfo output from" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 +msgid "IRQ Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:22 +msgid "Ignore source addresses" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 +msgid "Interface Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +msgid "Interrupts" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +msgid "Interval for pings" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 +msgid "Iptables Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 +msgid "Leave unselected to automatically determine interfaces to monitor." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:39 +msgid "" +"List of time spans to be stored in RRD database. E.g. \"1hour 1day 14day\". " +"Allowed timespan types: min, h, hour(s), d, day(s), w, week(s), m, month(s), " +"y, year(s)" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:40 +msgid "Listen host" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:44 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:32 +msgid "Listener interfaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js:6 +msgid "Load Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js:10 +msgid "Load monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:30 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:108 +msgid "Loading data…" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:14 +msgid "Log level" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 +msgid "" +"Max values for a period can be used instead of averages when not using 'only " +"average RRAs'" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:38 +msgid "Maximum allowed connections" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:20 +msgid "Maximum packet size" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js:10 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +msgid "Memory" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 +msgid "Memory Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:23 +msgid "Memory monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:32 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:21 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:45 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:21 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 +msgid "Monitor device(s) / thermal zone(s)" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:15 +msgid "Monitor devices" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 +msgid "Monitor disks and partitions" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:59 +msgid "Monitor filesystem types" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 +msgid "Monitor host" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 +msgid "Monitor hosts" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 +msgid "Monitor interrupts" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:19 +msgid "Monitor local ports" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:37 +msgid "Monitor mount points" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 +msgid "Monitor processes" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:25 +msgid "Monitor remote ports" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:38 +msgid "Monitoring %s and %s" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 +msgid "Monitoring APC UPS at host %s, port %d" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 +msgid "Monitoring DHCP leases enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:32 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:34 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:44 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:36 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:33 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:56 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:41 +msgid "Monitoring all disks" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:34 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:31 +msgid "Monitoring all interfaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all partitions" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring all sensors" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "Monitoring local listen ports" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:44 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instances" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:21 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:38 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:35 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:10 +msgid "Monitoring splash leases" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:16 +msgid "More details about frequency usage and transitions" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:25 +msgid "Name" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +msgid "Netlink" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 +msgid "Netlink Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +msgid "Network" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:6 +msgid "Network Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:69 +msgid "Network communication enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:87 +msgid "Network plugins" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:169 +msgid "No RRD data found" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 +msgid "" +"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " +"directory and all its parent directories need to be world readable." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:23 +msgid "Notify level" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:77 +msgid "Number of threads for data collection" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js:10 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +msgid "OLSRd" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 +msgid "OLSRd Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +msgid "Only create average RRAs" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/openvpn.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +msgid "OpenVPN" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 +msgid "OpenVPN Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:27 +msgid "OpenVPN status files" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:88 +msgid "Output plugins" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:60 +msgid "Overview" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 +msgid "Percent values" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +msgid "Ping" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 +msgid "Ping Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:136 +msgid "Plugin is disabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:18 +msgid "Port" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 +msgid "Port for apcupsd communication" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:20 +msgid "Port for chronyd" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:15 +msgid "Possibly bug in collectd. Only 127.0.0.1 and localhost work" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +msgid "Processes" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 +msgid "Processes Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js:8 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +msgid "Processor" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:26 +msgid "Qdisc monitoring" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:57 +msgid "RRD XFiles Factor" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:24 +msgid "RRD heart beat interval" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:19 +msgid "RRD step interval" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +msgid "RRDTool" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 +msgid "RRDTool Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:27 +msgid "Report also the value for the idle metric" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 +msgid "Report by CPU" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 +msgid "Report by state" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:32 +msgid "Report in percent" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:52 +msgid "Rows per RRA" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:161 +msgid "Rule monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/snmp6.js:7 +msgid "SNMP6" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:7 +msgid "SNMP6 Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sqm.js:7 +msgid "SQM" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sqmcake.js:7 +msgid "SQM-Cake" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:44 +msgid "Script" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:74 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:25 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:19 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:24 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:70 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Seconds" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 +msgid "Sensor list" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sensors.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +msgid "Sensors" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 +msgid "Sensors Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:58 +msgid "Server host" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:50 +msgid "Server interfaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:62 +msgid "Server port" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:20 +msgid "Set the maximum size for datagrams sent over the network" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:14 +msgid "Sets the syslog log-level." +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:24 +msgid "Setup" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:176 +msgid "Setup collectd" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:31 +msgid "Shaping class monitoring" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:26 +msgid "Show Idle state" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:34 +msgid "Show max values instead of averages" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/snmp6.json:2 +msgid "Snmp6" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:15 +msgid "Socket file" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Socket group" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:24 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:22 +msgid "Specifies what information to collect about links." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:29 +msgid "Specifies what information to collect about routes." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:36 +msgid "Specifies what information to collect about the global topology." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/splash_leases.js:10 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +msgid "Splash Leases" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:6 +msgid "Splash Leases Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:204 +#: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:3 +msgid "Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:127 +msgid "Status" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 +msgid "Storage directory" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 +msgid "Storage directory for the csv files" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 +msgid "Store data values as rates instead of absolute values" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:38 +msgid "Stored timespans" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:24 +msgid "Storing CSV data in %s" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/syslog.json:2 +msgid "Syslog" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:6 +msgid "Syslog Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:32 +msgid "Syslog enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/load.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +msgid "System Load" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +msgid "TCP Connections" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 +msgid "TCPConns Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:15 +msgid "TTL for network packets" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 +msgid "TTL for ping packets" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 +msgid "Table" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:7 +msgid "The APCUPS plugin collects statistics about the APC UPS." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:7 +msgid "The NUT plugin reads information about Uninterruptible Power Supplies." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:7 +msgid "" +"The OLSRd plugin reads information about meshed networks from the txtinfo " +"plugin of OLSRd." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:8 +msgid "" +"The OpenVPN plugin gathers information about the current vpn connection " +"status." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:7 +msgid "" +"The SysLog plugin receives log messages from the daemon and dispatches them " +"to syslog." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:132 +msgid "The chain name must not contain spaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:7 +msgid "The chrony plugin will monitor chrony NTP server statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:153 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:7 +msgid "" +"The conntrack plugin collects statistics about the number of tracked " +"connections." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:7 +msgid "The cpu plugin collects basic statistics about the processor usage." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:7 +msgid "" +"The csv plugin stores collected data in csv file format for further " +"processing by external programs." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:8 +msgid "" +"The df plugin collects statistics about the disk space usage on different " +"devices, mount points or filesystem types." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:7 +msgid "The dhcpleases plugin collects information about assigned DHCP leases." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:8 +msgid "" +"The disk plugin collects detailed usage statistics for selected partitions " +"or whole disks." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:8 +msgid "" +"The dns plugin collects detailed statistics about dns related traffic on " +"selected interfaces." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:8 +msgid "" +"The email plugin creates a unix socket which can be used to transmit email-" +"statistics to a running collectd daemon. This plugin is primarily intended " +"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can " +"be used in other ways as well." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:7 +msgid "The entropy plugin collects statistics about the available entropy." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:8 +msgid "" +"The exec plugin starts external commands to read values from or to notify " +"external processes when certain threshold values have been reached." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:8 +msgid "" +"The interface plugin collects traffic statistics on selected interfaces." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 +msgid "" +"The iptables plugin will monitor selected firewall rules and collect " +"information about processed bytes and packets per rule." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:8 +msgid "" +"The irq plugin will monitor the rate of issues per second for each selected " +"interrupt. If no interrupt is selected then all interrupts are monitored." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:8 +msgid "" +"The iwinfo plugin collects statistics about wireless signal strength, noise " +"and quality." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js:7 +msgid "The load plugin collects statistics about the general system load." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:7 +msgid "The memory plugin collects statistics about the memory usage." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:8 +msgid "" +"The netlink plugin collects extended information like qdisc-, class- and " +"filter-statistics for selected interfaces." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:7 +msgid "" +"The network plugin provides network based communication between different " +"collectd instances. Collectd can operate both in client and server mode. In " +"client mode locally collected data is transferred to a collectd server " +"instance, in server mode the local instance receives data from other hosts." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:7 +msgid "" +"The ping plugin will send icmp echo replies to selected hosts and measure " +"the roundtrip time for each host." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:7 +msgid "" +"The processes plugin collects information like cpu time, page faults and " +"memory usage of selected processes." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:7 +msgid "" +"The rrdtool plugin stores the collected data in rrd database files, the " +"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " +"values will result in a very high memory consumption in the temporary " +"directory. This can render the device unusable!</strong>" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:16 +msgid "" +"The sensors plugin uses the Linux Sensors framework to gather environmental " +"statistics." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:8 +msgid "The snmp6 plugin collects IPv6 statistics for selected interfaces." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:7 +msgid "" +"The splash leases plugin uses libuci to collect statistics about splash " +"leases." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:7 +msgid "" +"The tcpconns plugin collects information about open tcp connections on " +"selected ports." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:8 +msgid "" +"The thermal plugin will monitor temperature of the system. Data is typically " +"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " +"read, e.g. thermal_zone1 )" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:8 +msgid "" +"The unixsock plugin creates a unix socket which can be used to read " +"collected data from a running collectd instance." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:7 +msgid "The uptime plugin collects statistics about the uptime of the system." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:170 +msgid "There is no RRD data available yet to render graphs." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/thermal.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +msgid "Thermal" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 +msgid "Thermal Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:7 +msgid "This plugin collects statistics about the processor context switches." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:7 +msgid "This plugin collects statistics about the processor frequency scaling." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:33 +msgid "" +"This section defines on which interfaces collectd will wait for incoming " +"connections." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "" +"This section defines to which servers the locally collected data is sent to." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:25 +msgid "Timeout for polling chrony" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:80 +msgid "Try to lookup fully qualified hostname" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/nut.js:7 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +msgid "UPS" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 +msgid "UPS Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +msgid "UPS name in NUT ups@host format" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:27 +msgid "URL" +msgstr "" + +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +msgid "UnixSock" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 +msgid "Unixsock Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js:15 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +msgid "Uptime" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 +msgid "Uptime Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:10 +msgid "Uptime monitoring enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:24 +msgid "Use improved naming schema" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:68 +msgid "Used PID file" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:47 +msgid "User" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:21 +msgid "Verbose monitoring" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:21 +msgid "When set to true, reports per-state metric (system, user, idle)" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 +msgid "When set to true, we request absolute values" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:33 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 +msgid "When set to true, we request percentage values" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +msgid "Wireless" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 +msgid "Wireless iwinfo Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:97 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:171 +msgid "" +"You need to configure <em>collectd</em> to gather data into <em>.rrd</em> " +"files." +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:31 +msgid "cURL plugin enabled" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/curl.js:10 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +msgid "cUrl" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:6 +msgid "cUrl Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:139 +msgid "none" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:109 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:39 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:108 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:40 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +msgid "reduces rrd size" +msgstr "" + +#~ msgid "Cache flush interval" +#~ msgstr "Cache flush interval" + +#~ msgid "Action (target)" +#~ msgstr "Action (target)" + +#~ msgid "Add matching rule" +#~ msgstr "Add matching rule" + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." + +#~ msgid "Destination ip range" +#~ msgstr "Destination ip range" + +#~ msgid "Incoming interface" +#~ msgstr "Incoming interface" + +#~ msgid "Name of the rule" +#~ msgstr "Name of the rule" + +#~ msgid "Network protocol" +#~ msgstr "Network protocol" + +#~ msgid "Options" +#~ msgstr "Options" + +#~ msgid "Outgoing interface" +#~ msgstr "Outgoing interface" + +#~ msgid "Source ip range" +#~ msgstr "Source ip range" + +#~ msgid "e.g. br-ff" +#~ msgstr "e.g. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "e.g. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "e.g. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "max. 16 chars" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "seconds; multiple separated by space" + +#~ msgid "server interfaces" +#~ msgstr "server interfaces" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index 426b81db60..28ca39520b 100644 --- a/applications/luci-app-statistics/po/pl/statistics.po +++ b/applications/luci-app-statistics/po/pl/statistics.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-01-20 10:36+0000\n" +"PO-Revision-Date: 2021-04-27 20:20+0000\n" "Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/pl/>\n" @@ -13,7 +13,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.5-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -478,6 +478,19 @@ msgstr "Nazwa hosta" msgid "IP or hostname where to get the txtinfo output from" msgstr "Numer IP lub nazwa hosta jako wyjście txtinfo" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "Statystyki-IP" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "Konfiguracja wtyczki Statystyki-IP" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "Włączone monitorowanie statystyk IPv4/IPv6" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Konfiguracja wtyczki IRQ" @@ -669,12 +682,9 @@ msgstr "Monitorowanie %s i %s" msgid "Monitoring %s, %s, %s" msgstr "Monitorowanie %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "Monitorowanie APC UPS na hoście % s, port %d" -msgstr[1] "Monitorowanie APC UPS na hostach % s, portach %d" -msgstr[2] "Monitorowanie APC UPS na hoście % s, port %d" +msgstr "Monitorowanie APC UPS na hoście %s, port %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1343,6 +1353,11 @@ msgid "" msgstr "" "Wtyczka interfejsu gromadzi statystyki ruchu na wybranych interfejsach." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "Wtyczka ipstatistics zbiera statystyki IPv4 i IPv6, aby je porównać." + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index 33ecdca35b..180e31a41a 100644 --- a/applications/luci-app-statistics/po/pt/statistics.po +++ b/applications/luci-app-statistics/po/pt/statistics.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 19:03+0200\n" -"PO-Revision-Date: 2021-01-15 22:31+0000\n" +"PO-Revision-Date: 2021-05-08 14:01+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/pt/>\n" @@ -12,7 +12,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.5-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -474,6 +474,19 @@ msgstr "Nome do Host" msgid "IP or hostname where to get the txtinfo output from" msgstr "Endereço IP ou nome do equipamento de onde obter a saída do txtinfo" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "Estatísticas de IP" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "Configuração do plugin de estatísticas de IP" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "Monitoramento de estatísticas IPv4/IPv6 ativado" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Configuração do plugin IRQ" @@ -612,7 +625,7 @@ msgstr "Aparelho(s) de monitoramento / zona(s) térmica(s)" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" -msgstr "Monitorar dispositivos" +msgstr "Monitorar aparelhos" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" @@ -664,11 +677,9 @@ msgstr "Monitorando %s e %s" msgid "Monitoring %s, %s, %s" msgstr "Monitorando %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "Monitorando APC UPS no host %s, porta %d" -msgstr[1] "Monitorando APC UPS nos hosts %s, porta %d" +msgstr "A monitorar APC UPS no host %s, porta %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1327,6 +1338,12 @@ msgstr "" "O plugin interface plugin coleta estatísticas sobre o tráfego das interfaces " "selecionadas." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" +"O plugin ipstatistics coleta estatísticas IPv4 e IPv6 para compará-las." + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " @@ -1537,7 +1554,7 @@ msgstr "Configuração do plugin Unixsock" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js:15 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" -msgstr "Uptime" +msgstr "Tempo de atividade" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "Uptime Plugin Configuration" diff --git a/applications/luci-app-statistics/po/pt_BR/statistics.po b/applications/luci-app-statistics/po/pt_BR/statistics.po index 70d7d65438..0c93799707 100644 --- a/applications/luci-app-statistics/po/pt_BR/statistics.po +++ b/applications/luci-app-statistics/po/pt_BR/statistics.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2021-01-12 22:24+0000\n" +"PO-Revision-Date: 2021-04-28 12:14+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsstatistics/pt_BR/>\n" @@ -12,7 +12,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.4.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -476,6 +476,19 @@ msgstr "Nome do equipamento" msgid "IP or hostname where to get the txtinfo output from" msgstr "Endereço IP ou nome do equipamento de onde obter a saída do txtinfo" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "IP-Statistics" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "Configuração do plug-in IP-Statistics" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "Monitoramento estatístico IPv4/IPv6 ativado" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Configuração do plugin IRQ" @@ -666,11 +679,9 @@ msgstr "Monitorando %s e %s" msgid "Monitoring %s, %s, %s" msgstr "Monitorando %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "Monitorando APC UPS no host %s, porta %d" -msgstr[1] "Monitorando APC UPS nos hosts %s, portas %d" +msgstr "Monitorando o UPS APC no host %s, na porta %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -901,7 +912,7 @@ msgstr "Plugins de saída" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:60 msgid "Overview" -msgstr "Visão Geral" +msgstr "Visão geral" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 msgid "Percent values" @@ -1329,6 +1340,12 @@ msgstr "" "O plugin interface coleta estatísticas sobre o tráfego das interfaces " "selecionadas." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" +"O plug-in ipstatistics coleta as estatísticas IPv4 e IPv6 para compará-las." + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index 867e916273..564eb97e00 100644 --- a/applications/luci-app-statistics/po/ro/statistics.po +++ b/applications/luci-app-statistics/po/ro/statistics.po @@ -466,6 +466,19 @@ msgstr "Numele gazdei ( hostname )" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -649,12 +662,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1299,6 +1309,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index e6a18ef8f0..381a4848b2 100644 --- a/applications/luci-app-statistics/po/ru/statistics.po +++ b/applications/luci-app-statistics/po/ru/statistics.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: statistics\n" "POT-Creation-Date: 2017-10-17 22:00+0300\n" -"PO-Revision-Date: 2021-01-12 22:25+0000\n" -"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n" +"PO-Revision-Date: 2021-04-09 12:29+0000\n" +"Last-Translator: The_BadUser <vanjavs@mail.ru>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/ru/>\n" "Language: ru\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.1-dev\n" +"X-Generator: Weblate 4.6-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" @@ -478,6 +478,19 @@ msgstr "Имя хоста" msgid "IP or hostname where to get the txtinfo output from" msgstr "IP-адрес или имя хоста, с которых получать текстовый вывод" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "IP-Статистика" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "Конфигурация плагина IP-Статистика" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "Мониторинг статистики IPv4/IPv6 включен" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Настройка плагина «IRQ»" @@ -668,12 +681,10 @@ msgstr "Мониторинг %s и %s" msgid "Monitoring %s, %s, %s" msgstr "Мониторинг %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 +#, fuzzy msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "Мониторинг APC UPS на узле %s, порт %s" -msgstr[1] "Мониторинг APC UPS на узлах %s, порт %s" -msgstr[2] "Мониторинг APC UPS на узлах %s, порт %s" +msgstr "Мониторинг APC UPS на узле %s, порт %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1339,6 +1350,11 @@ msgid "" msgstr "" "Плагин «Интерфейсы» собирает статистику на выбранных сетевых интерфейсах." +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "Плагин ipstatistics собирает статистику IPv4 и IPv6 для их сравнения." + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " @@ -1592,7 +1608,7 @@ msgstr "При включении, отображаются значения в #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" -msgstr "Wi-Fi" +msgstr "Беспроводная" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "Wireless iwinfo Plugin Configuration" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 571c5c8c34..c6bade397c 100644 --- a/applications/luci-app-statistics/po/sk/statistics.po +++ b/applications/luci-app-statistics/po/sk/statistics.po @@ -463,6 +463,19 @@ msgstr "Názov hostiteľa" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -646,12 +659,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1294,6 +1304,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index d0f88af273..0e059f01bb 100644 --- a/applications/luci-app-statistics/po/sv/statistics.po +++ b/applications/luci-app-statistics/po/sv/statistics.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-09-23 14:41+0000\n" -"Last-Translator: Kristoffer Grundström <dsmusicever@gmail.com>\n" +"PO-Revision-Date: 2021-04-07 17:42+0000\n" +"Last-Translator: Luna Jernberg <droidbittin@gmail.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/sv/>\n" "Language: sv\n" @@ -10,12 +10,12 @@ 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.6-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" -msgstr "" +msgstr "A.P.C UPS" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "APCUPS Plugin Configuration" @@ -463,6 +463,19 @@ msgstr "Värdnamn" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Konfiguration av insticksprogrammet IRQ" @@ -646,11 +659,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -878,7 +889,7 @@ msgstr "Insticksprogram för utmatning" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:60 msgid "Overview" -msgstr "" +msgstr "Överblick" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 msgid "Percent values" @@ -1280,6 +1291,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index 86b40b4278..e8d349a735 100644 --- a/applications/luci-app-statistics/po/templates/statistics.pot +++ b/applications/luci-app-statistics/po/templates/statistics.pot @@ -452,6 +452,19 @@ msgstr "" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -635,11 +648,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1269,6 +1280,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index 8a3978945b..56d95aae7c 100644 --- a/applications/luci-app-statistics/po/tr/statistics.po +++ b/applications/luci-app-statistics/po/tr/statistics.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-11-28 20:18+0000\n" -"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" +"PO-Revision-Date: 2021-05-18 05:32+0000\n" +"Last-Translator: semih <semiht@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/tr/>\n" "Language: tr\n" @@ -10,102 +10,102 @@ 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.4-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" -msgstr "" +msgstr "APC UPS" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "APCUPS Plugin Configuration" -msgstr "" +msgstr "APCUPS Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" -msgstr "" +msgstr "Mutlak değerler" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 msgid "Add IPv4 rule selector" -msgstr "" +msgstr "IPv4 kural seçicisi ekle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 msgid "Add IPv6 rule selector" -msgstr "" +msgstr "IPv6 kural seçicisi ekle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" -msgstr "" +msgstr "Değerleri okumak için komut ekle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:36 msgid "Add notification command" -msgstr "" +msgstr "Bildirim komutu ekle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" -msgstr "" +msgstr "Adres ailesi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:18 msgid "Aggregate number of connected users" -msgstr "" +msgstr "Toplam bağlı kullanıcı sayısı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:228 msgid "Apply interval »" -msgstr "" +msgstr "Aralığı uygula »" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:47 msgid "Awaiting email input at %s" -msgstr "" +msgstr "%s adresinde e-posta girişi bekleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Base Directory" -msgstr "" +msgstr "Temel Dizin" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:16 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:16 msgid "Basic monitoring" -msgstr "" +msgstr "Temel izleme" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 msgid "Basic process monitoring enabled" -msgstr "" +msgstr "Temel işlem izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" -msgstr "" +msgstr "Bunu ayarladığınızda, CPU sistemdeki tüm işlemcilerin toplamı olmaz" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "CPU Context Switches Plugin Configuration" -msgstr "" +msgstr "CPU Bağlam Anahtarları Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js:8 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" -msgstr "" +msgstr "CPU Frekansı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "CPU Frequency Plugin Configuration" -msgstr "" +msgstr "CPU Frekans Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "CPU Plugin Configuration" -msgstr "" +msgstr "CPU Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:40 msgid "CPU monitoring is enabled" -msgstr "" +msgstr "CPU izleme etkinleştirildi" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" -msgstr "" +msgstr "CSV Çıktısı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "CSV Plugin Configuration" -msgstr "" +msgstr "CSV Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:70 msgid "Cache collected data for" -msgstr "" +msgstr "Önbelleğe alınan veriler için" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:99 msgid "Chain" @@ -113,166 +113,166 @@ msgstr "Zincir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Change the ownership of the socket file to the specified group." -msgstr "" +msgstr "Soket dosyasının sahipliğini belirtilen grupla değiştirin." #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/chrony.js:8 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/chrony.json:2 msgid "Chrony" -msgstr "" +msgstr "Chrony" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:6 msgid "Chrony Plugin Configuration" -msgstr "" +msgstr "Chrony Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:32 msgid "Chrony monitoring enabled" -msgstr "" +msgstr "Chrony izlemesi etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:21 msgid "CollectLinks" -msgstr "" +msgstr "CollectLinks" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:28 msgid "CollectRoutes" -msgstr "" +msgstr "CollectRoutes" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:35 msgid "CollectTopology" -msgstr "" +msgstr "CollectTopology" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:46 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:49 msgid "Collectd Settings" -msgstr "" +msgstr "Collectd Ayarları" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:57 msgid "Command monitoring enabled" -msgstr "" +msgstr "Komut izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:137 msgid "Comment / Rule Number" -msgstr "" +msgstr "Yorum / Kural Numarası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:174 msgid "Configure…" -msgstr "" +msgstr "Yapılandır…" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" -msgstr "" +msgstr "Conntrack" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "Conntrack Plugin Configuration" -msgstr "" +msgstr "Conntrack Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:10 msgid "Conntrack monitoring enabled" -msgstr "" +msgstr "Conntrack izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/contextswitch.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" -msgstr "" +msgstr "Bağlam Anahtarları" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:10 msgid "Context switch monitoring enabled" -msgstr "" +msgstr "Bağlam anahtarı izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:23 msgid "Controls which notifications should be sent to syslog." -msgstr "" +msgstr "Sistem günlüğüne hangi bildirimlerin gönderileceğini kontrol eder." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:28 msgid "Create statistics about the network plugin itself" -msgstr "" +msgstr "Ağ eklentisinin kendisi hakkında istatistikler oluşturun" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "DF Plugin Configuration" -msgstr "" +msgstr "DF Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dhcpleases.js:7 msgid "DHCP Leases" -msgstr "" +msgstr "DHCP Kiraları" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:6 msgid "DHCP Leases Plugin Configuration" -msgstr "" +msgstr "DHCP Kiraları Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:14 msgid "DHCP leases file" -msgstr "" +msgstr "DHCP kira dosyası" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" -msgstr "" +msgstr "DNS" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "DNS Plugin Configuration" -msgstr "" +msgstr "DNS Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Data collection interval" -msgstr "" +msgstr "Veri toplama aralığı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Datasets definition file" -msgstr "" +msgstr "Veri kümeleri tanım dosyası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:22 msgid "Detailled CPU frequency monitoring enabled" -msgstr "" +msgstr "Ayrıntılı CPU frekansı izleme etkinleştirildi" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dhcpleases.json:2 msgid "Dhcpleases" -msgstr "" +msgstr "Dhcpleases" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Directory for collectd plugins" -msgstr "" +msgstr "Collectd eklentileri için dizin" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Directory for sub-configurations" -msgstr "" +msgstr "Alt konfigürasyonlar için dizin" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "Disk Plugin Configuration" -msgstr "" +msgstr "Disk Yapılandırma Eklentisi" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/df.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" -msgstr "" +msgstr "Disk Alanı Kullanımı" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/disk.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" -msgstr "" +msgstr "Disk kullanımı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:212 msgid "Display Host »" -msgstr "" +msgstr "Ana Bilgisayarı Görüntüle »" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 msgid "Display timespan »" -msgstr "" +msgstr "Zaman aralığını görüntüle »" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:195 msgid "Do not refresh" -msgstr "" +msgstr "Yenileme" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "E-Mail Plugin Configuration" -msgstr "" +msgstr "E-Posta Eklentisi Yapılandırması" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" -msgstr "" +msgstr "E-posta" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" -msgstr "" +msgstr "Boş değer = tümünü izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" @@ -280,11 +280,11 @@ msgstr "Etkinleştir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Enable forwarding" -msgstr "" +msgstr "Yönlendirmeyi etkinleştir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:28 msgid "Enable statistics" -msgstr "" +msgstr "İstatistikleri etkinleştir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:12 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:12 @@ -318,7 +318,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:13 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:13 msgid "Enable this plugin" -msgstr "" +msgstr "Bu eklentiyi etkinleştir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:113 msgid "Enabled" @@ -327,112 +327,116 @@ msgstr "Etkin" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" -msgstr "" +msgstr "Entropi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "Entropy Plugin Configuration" -msgstr "" +msgstr "Entropi Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:10 msgid "Entropy monitoring enabled" -msgstr "" +msgstr "Entropi izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:197 msgid "Every 30 seconds" -msgstr "" +msgstr "30 saniyede bir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:196 msgid "Every 5 seconds" -msgstr "" +msgstr "5 saniyede bir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:198 msgid "Every minute" -msgstr "" +msgstr "Her dakika" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" -msgstr "" +msgstr "Exec" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "Exec Plugin Configuration" -msgstr "" +msgstr "Exec Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "Expecting decimal value lower than one" -msgstr "" +msgstr "Birden düşük ondalık değer bekleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:33 msgid "Expecting permssions in octal notation" -msgstr "" +msgstr "Sekizlik gösterimde izinler bekleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:49 msgid "Expecting valid time range" -msgstr "" +msgstr "Geçerli zaman aralığı bekleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "Extra items" -msgstr "" +msgstr "Ekstra öğeler" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 msgid "Fetch pages" -msgstr "" +msgstr "Sayfaları getir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:36 msgid "Filter class monitoring" -msgstr "" +msgstr "Filtre sınıfı izleme" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" -msgstr "" +msgstr "Güvenlik Duvarı" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js:7 msgid "Firewall (IPv6)" -msgstr "" +msgstr "Güvenlik Duvarı (IPv6)" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 msgid "Flush cache after" -msgstr "" +msgstr "Sonra önbelleği temizle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Forwarding between listen and server addresses" -msgstr "" +msgstr "Dinleme ve sunucu adresleri arasında yönlendirme" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:92 msgid "" "Free space, reserved space and used space is reported as relative values" msgstr "" +"Boş alan, ayrılmış alan ve kullanılan alan göreceli değerler olarak rapor " +"edilir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:21 msgid "Gather compression statistics" -msgstr "" +msgstr "Sıkıştırma istatistiklerini topla" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:86 msgid "General plugins" -msgstr "" +msgstr "Genel eklentiler" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" -msgstr "" +msgstr "Kayıtlı her kullanıcı için ayrı bir grafik oluştur" #: applications/luci-app-statistics/root/usr/share/rpcd/acl.d/luci-app-statistics.json:3 msgid "Grant access to statistics resources" -msgstr "" +msgstr "İstatistik kaynaklarına erişim izni verin" #: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:15 msgid "Graphs" -msgstr "" +msgstr "Grafikler" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:51 msgid "Group" -msgstr "" +msgstr "Grup" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" +"Burada, belirli değerleri okumak için collectd tarafından başlatılacak olan " +"harici komutları tanımlayabilirsiniz. Değerler stdout'tan okunacaktır." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:37 msgid "" @@ -440,12 +444,17 @@ msgid "" "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" +"Burada, belirli eşik değerlerine ulaşıldığında collectd tarafından " +"başlatılacak olan harici komutları tanımlayabilirsiniz. Çağrılmaya yol açan " +"değerler çağrılan programlara stdin beslenecektir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" +"Burada, izlenen iptables kurallarının seçildiği çeşitli kriterler " +"tanımlayabilirsiniz." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" @@ -453,7 +462,7 @@ msgstr "Ana bilgisayar" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:14 msgid "Host running chrony" -msgstr "" +msgstr "Chrony çalıştıran ana bilgisayar" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:51 msgid "Hostname" @@ -461,23 +470,36 @@ msgstr "Sunucu adı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" -msgstr "" +msgstr "Txtinfo çıktısının alınacağı IP veya ana bilgisayar adı" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "IP İstatistikleri" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "IP İstatistikleri Eklenti Yapılandırması" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "IPv4 / IPv6 İstatistik izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" -msgstr "" +msgstr "IRQ Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:22 msgid "Ignore source addresses" -msgstr "" +msgstr "Kaynak adreslerini göz ardı et" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 msgid "Instance name" -msgstr "" +msgstr "Örnek adı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "Interface Plugin Configuration" -msgstr "" +msgstr "Arayüz Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 @@ -487,19 +509,21 @@ msgstr "Arayüzler" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" -msgstr "" +msgstr "Kesmeler" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" -msgstr "" +msgstr "Ping aralığı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "Iptables Plugin Configuration" -msgstr "" +msgstr "Iptables Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" +"İzlenecek arabirimleri otomatik olarak belirlemek için seçilmemiş olarak " +"bırakın." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:39 msgid "" @@ -507,57 +531,62 @@ msgid "" "Allowed timespan types: min, h, hour(s), d, day(s), w, week(s), m, month(s), " "y, year(s)" msgstr "" +"RRD veritabanında depolanacak zaman aralıklarının listesi. Örneğin. \"1saat " +"1gün 14gün\". İzin verilen zaman aralığı türleri: dk, sa, saat (ler), g, gün " +"(ler), w, hafta (lar), m, ay (lar), y, yıl (lar)" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:40 msgid "Listen host" -msgstr "" +msgstr "Ana bilgisayarı dinle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:44 msgid "Listen port" -msgstr "Dinleme portu" +msgstr "Dinleme bağlantı noktası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:32 msgid "Listener interfaces" -msgstr "" +msgstr "Dinleyici arayüzleri" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "Load Plugin Configuration" -msgstr "" +msgstr "Yükleme Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js:10 msgid "Load monitoring enabled" -msgstr "" +msgstr "Yük izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:30 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:108 msgid "Loading data…" -msgstr "" +msgstr "Veri yükleniyor…" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:14 msgid "Log level" -msgstr "" +msgstr "Günlük seviyesi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 msgid "Match IPv4 iptables rules" -msgstr "" +msgstr "IPv4 iptables kurallarını eşleştirme" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 msgid "Match IPv6 iptables rules" -msgstr "" +msgstr "IPv6 iptables kurallarını eşleştirme" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" +"Bir dönem için maksimum değerler, 'yalnızca ortalama RRA'lar' " +"kullanılmadığında ortalamalar yerine kullanılabilir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:38 msgid "Maximum allowed connections" -msgstr "" +msgstr "İzin verilen maksimum bağlantı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Maximum packet size" -msgstr "" +msgstr "Maksimum paket boyutu" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 @@ -566,11 +595,11 @@ msgstr "Bellek" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "Memory Plugin Configuration" -msgstr "" +msgstr "Bellek Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:23 msgid "Memory monitoring enabled" -msgstr "" +msgstr "Bellek izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:89 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:32 @@ -582,96 +611,95 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:21 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" -msgstr "" +msgstr "Belirtilenler dışında tümünü izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" -msgstr "" +msgstr "Tüm yerel dinleme bağlantı noktalarını izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" -msgstr "" +msgstr "Cihaz(ları) / termal bölge(leri) izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" -msgstr "" +msgstr "Cihazları izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" -msgstr "" +msgstr "Diskleri ve bölümleri izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" -msgstr "" +msgstr "Dosya sistemi türlerini izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" -msgstr "" +msgstr "Ana bilgisayarı izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" -msgstr "" +msgstr "Ana bilgisayarları izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" -msgstr "" +msgstr "Arayüzleri izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" -msgstr "" +msgstr "Kesintileri izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:19 msgid "Monitor local ports" -msgstr "" +msgstr "Yerel bağlantı noktalarını izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" -msgstr "" +msgstr "Bağlama noktalarını izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" -msgstr "" +msgstr "İşlemleri izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:25 msgid "Monitor remote ports" -msgstr "" +msgstr "Uzak bağlantı noktalarını izle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:38 msgid "Monitoring %s and %s" -msgstr "" +msgstr "%s ve %s izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:106 msgid "Monitoring %s, %s, %s" -msgstr "" +msgstr "%s, %s, %s izleniyor" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" +msgstr "%s ana bilgisayar, %d bağlantı noktasında APC UPS izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" -msgstr "" +msgstr "DHCP kiralarını izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:32 msgid "Monitoring DNS queries on all interfaces" -msgstr "" +msgstr "Tüm arayüzlerdeki DNS sorguları izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:34 msgid "Monitoring DNS queries on one interface" msgid_plural "Monitoring DNS queries on %d interfaces" -msgstr[0] "" +msgstr[0] "%d arayüzlerindeki DNS sorguları izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:44 msgid "Monitoring OLSRd status at %s:%d" -msgstr "" +msgstr "%s:%d konumundaki OLSRd durumu izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 msgid "Monitoring all but one disk" msgid_plural "Monitoring all but %d disks" -msgstr[0] "" +msgstr[0] "%d dışındaki tüm diskler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:36 @@ -679,76 +707,76 @@ msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:33 msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" -msgstr[0] "" +msgstr[0] "%d dışındaki tüm arayüzler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" -msgstr[0] "" +msgstr[0] "%d dışındaki tüm kesintiler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:56 msgid "Monitoring all but one sensor" msgid_plural "Monitoring all but %d sensors" -msgstr[0] "" +msgstr[0] "%d dışındaki tüm sensörler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:41 msgid "Monitoring all disks" -msgstr "" +msgstr "Tüm diskleri izlenyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:106 msgid "Monitoring all except %s, %s, %s" -msgstr "" +msgstr "%s, %s, %s dışında tümü izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:34 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:31 msgid "Monitoring all interfaces" -msgstr "" +msgstr "Tüm arayüzleri izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 msgid "Monitoring all interrupts" -msgstr "" +msgstr "Tüm kesintiler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:104 msgid "Monitoring all partitions" -msgstr "" +msgstr "Tüm bölümler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 msgid "Monitoring all sensors" -msgstr "" +msgstr "Tüm sensörler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 msgid "Monitoring all thermal zones" -msgstr "" +msgstr "Tüm termal bölgeler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 msgid "Monitoring all thermal zones except %s" -msgstr "" +msgstr "%s dışındaki tüm termal bölgeler izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 msgid "Monitoring local listen ports" -msgstr "" +msgstr "Yerel dinleme bağlantı noktalarını izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:44 msgid "Monitoring one OpenVPN instance" msgid_plural "Monitoring %d OpenVPN instances" -msgstr[0] "" +msgstr[0] "%d OpenVPN örneği izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:21 msgid "Monitoring one UPS" msgid_plural "Monitoring %d UPSes" -msgstr[0] "" +msgstr[0] "%d UPSler'i izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 msgid "Monitoring one disk" msgid_plural "Monitoring %d disks" -msgstr[0] "" +msgstr[0] "%d diskleri izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 msgid "Monitoring one host" msgid_plural "Monitoring %d hosts" -msgstr[0] "" +msgstr[0] "%d ana bilgisayarları izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:38 @@ -756,47 +784,47 @@ msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:35 msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" -msgstr[0] "" +msgstr[0] "%d arayüzleri izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" -msgstr[0] "" +msgstr[0] "%d kesintileri izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 msgid "Monitoring one process" msgid_plural "Monitoring %d processes" -msgstr[0] "" +msgstr[0] "%d işlemleri izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 msgid "Monitoring one sensor" msgid_plural "Monitoring %d sensors" -msgstr[0] "" +msgstr[0] "%d sensörleri izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:10 msgid "Monitoring splash leases" -msgstr "" +msgstr "Sıçrama kiraları izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 msgid "Monitoring thermal zones %s" -msgstr "" +msgstr "%s termal bölgeleri izleniyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:16 msgid "More details about frequency usage and transitions" -msgstr "" +msgstr "Frekans kullanımı ve geçişler hakkında daha fazla ayrıntı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:25 msgid "Name" -msgstr "" +msgstr "Ad" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" -msgstr "" +msgstr "Netlink" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "Netlink Plugin Configuration" -msgstr "" +msgstr "Netlink Eklentisi Yapılandırması" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" @@ -804,46 +832,49 @@ msgstr "Ağ" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "Network Plugin Configuration" -msgstr "" +msgstr "Ağ Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:69 msgid "Network communication enabled" -msgstr "" +msgstr "Ağ iletişimi etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:87 msgid "Network plugins" -msgstr "" +msgstr "Ağ eklentileri" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:169 msgid "No RRD data found" -msgstr "" +msgstr "RRD verisi bulunamadı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" +"Not: Sayfalar 'nobody' kullanıcısı tarafından oluşturulduğundan, * .rrd " +"dosyalarının, depolama dizininin ve tüm üst dizinlerinin herkes tarafından " +"okunabilir olması gerekir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:23 msgid "Notify level" -msgstr "" +msgstr "Bildirim seviyesi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:77 msgid "Number of threads for data collection" -msgstr "" +msgstr "Veri toplama için iş parçacığı sayısı" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" -msgstr "" +msgstr "OLSRd" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "OLSRd Plugin Configuration" -msgstr "" +msgstr "OLSRd Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 msgid "Only create average RRAs" -msgstr "" +msgstr "Yalnızca ortalama RRA'lar oluşturun" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/openvpn.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 @@ -852,15 +883,15 @@ msgstr "OpenVPN" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "OpenVPN Plugin Configuration" -msgstr "" +msgstr "OpenVPN Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:27 msgid "OpenVPN status files" -msgstr "" +msgstr "OpenVPN durum dosyaları" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:88 msgid "Output plugins" -msgstr "" +msgstr "Çıktı eklentileri" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:60 msgid "Overview" @@ -868,20 +899,20 @@ msgstr "Genel bakış" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 msgid "Percent values" -msgstr "" +msgstr "Yüzde değerleri" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" -msgstr "" +msgstr "Ping" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "Ping Plugin Configuration" -msgstr "" +msgstr "Ping Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:136 msgid "Plugin is disabled" -msgstr "" +msgstr "Eklenti devre dışı bırakıldı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:18 msgid "Port" @@ -889,98 +920,99 @@ msgstr "Bağlantı noktası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" -msgstr "" +msgstr "apcupsd iletişimi için bağlantı noktası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:20 msgid "Port for chronyd" -msgstr "" +msgstr "chronyd için bağlantı noktası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:15 msgid "Possibly bug in collectd. Only 127.0.0.1 and localhost work" msgstr "" +"Muhtemelen collectd'de hata var. Yalnızca 127.0.0.1 ve localhost çalışır" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" -msgstr "" +msgstr "İşlemler" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "Processes Plugin Configuration" -msgstr "" +msgstr "İşlemler Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js:8 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" -msgstr "" +msgstr "İşlemci" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:26 msgid "Qdisc monitoring" -msgstr "" +msgstr "Qdisc izleme" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:57 msgid "RRD XFiles Factor" -msgstr "" +msgstr "RRD XFiles Faktörü" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:24 msgid "RRD heart beat interval" -msgstr "" +msgstr "RRD kalp atışı aralığı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:19 msgid "RRD step interval" -msgstr "" +msgstr "RRD adım aralığı" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" -msgstr "" +msgstr "RRDTool" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "RRDTool Plugin Configuration" -msgstr "" +msgstr "RRDTool Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:27 msgid "Report also the value for the idle metric" -msgstr "" +msgstr "Boşta kalan metriğin değerini de rapor et" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" -msgstr "" +msgstr "CPU'ya göre rapor et" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "Report by state" -msgstr "" +msgstr "Duruma göre rapor et" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:32 msgid "Report in percent" -msgstr "" +msgstr "Yüzde olarak rapor et" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:52 msgid "Rows per RRA" -msgstr "" +msgstr "RRA başına satır sayısı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:161 msgid "Rule monitoring enabled" -msgstr "" +msgstr "Kural izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/snmp6.js:7 msgid "SNMP6" -msgstr "" +msgstr "SNMP6" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:7 msgid "SNMP6 Plugin Configuration" -msgstr "" +msgstr "SNMP6 Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sqm.js:7 msgid "SQM" -msgstr "" +msgstr "SQM" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sqmcake.js:7 msgid "SQM-Cake" -msgstr "" +msgstr "SQM-Cake" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:44 msgid "Script" -msgstr "" +msgstr "Betik" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:74 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:25 @@ -990,116 +1022,116 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:70 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 msgid "Seconds" -msgstr "" +msgstr "Saniye" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" -msgstr "" +msgstr "Sensör listesi" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sensors.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" -msgstr "" +msgstr "Sensörler" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "Sensors Plugin Configuration" -msgstr "" +msgstr "Sensörler Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:58 msgid "Server host" -msgstr "" +msgstr "Sunucu ana bilgisayarı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:50 msgid "Server interfaces" -msgstr "" +msgstr "Sunucu arayüzleri" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:62 msgid "Server port" -msgstr "" +msgstr "Sunucu portu" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Set the maximum size for datagrams sent over the network" -msgstr "" +msgstr "Ağ üzerinden gönderilen datagramlar için maksimum boyutu ayarla" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:14 msgid "Sets the syslog log-level." -msgstr "" +msgstr "Sistem günlüğü günlük düzeyini ayarlar." #: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:24 msgid "Setup" -msgstr "" +msgstr "Kurulum" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:176 msgid "Setup collectd" -msgstr "" +msgstr "Collectd kurulumu" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:31 msgid "Shaping class monitoring" -msgstr "" +msgstr "Şekillendirme sınıfı izleme" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:26 msgid "Show Idle state" -msgstr "" +msgstr "Boştaki durumu göster" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:34 msgid "Show max values instead of averages" -msgstr "" +msgstr "Ortalamalar yerine maksimum değerleri göster" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 msgid "Simple CPU frequency monitoring enabled" -msgstr "" +msgstr "Basit CPU frekansı izleme etkinleştirildi" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/snmp6.json:2 msgid "Snmp6" -msgstr "" +msgstr "Snmp6" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 msgid "Socket %s active" -msgstr "" +msgstr "%s soketi etkin" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" -msgstr "" +msgstr "Soket dosyası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:19 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" -msgstr "" +msgstr "Soket grubu" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 msgid "Socket path" -msgstr "" +msgstr "Soket yolu" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" -msgstr "" +msgstr "Soket izinleri" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:22 msgid "Specifies what information to collect about links." -msgstr "" +msgstr "Bağlantılar hakkında hangi bilgilerin toplanacağını belirtir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:29 msgid "Specifies what information to collect about routes." -msgstr "" +msgstr "Rotalar hakkında hangi bilgilerin toplanacağını belirtir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:36 msgid "Specifies what information to collect about the global topology." -msgstr "" +msgstr "Genel topoloji hakkında hangi bilgilerin toplanacağını belirtir." #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/splash_leases.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" -msgstr "" +msgstr "Splash Kiraları" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:6 msgid "Splash Leases Plugin Configuration" -msgstr "" +msgstr "Splash Kiraları Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:204 #: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:3 msgid "Statistics" -msgstr "" +msgstr "İstatistik" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:127 msgid "Status" @@ -1107,137 +1139,151 @@ msgstr "Durum" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" -msgstr "" +msgstr "Depolama dizini" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" -msgstr "" +msgstr "Csv dosyaları için depolama dizini" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" -msgstr "" +msgstr "Veri değerlerini mutlak değerler yerine oranlar olarak sakla" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:38 msgid "Stored timespans" -msgstr "" +msgstr "Saklanan zaman aralıkları" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:24 msgid "Storing CSV data in %s" -msgstr "" +msgstr "CSV verilerini %s içinde sakla" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/syslog.json:2 msgid "Syslog" -msgstr "" +msgstr "Syslog" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:6 msgid "Syslog Plugin Configuration" -msgstr "" +msgstr "Syslog Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:32 msgid "Syslog enabled" -msgstr "" +msgstr "Syslog etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/load.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" -msgstr "" +msgstr "Sistem Yükü" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" -msgstr "" +msgstr "TCP Bağlantıları" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "TCPConns Plugin Configuration" -msgstr "" +msgstr "TCPConns Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:15 msgid "TTL for network packets" -msgstr "" +msgstr "Ağ paketleri için TTL" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" -msgstr "" +msgstr "Ping paketleri için TTL" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" -msgstr "" +msgstr "Tablo" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:7 msgid "The APCUPS plugin collects statistics about the APC UPS." -msgstr "" +msgstr "APCUPS eklentisi, APC UPS ile ilgili istatistikleri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:7 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." -msgstr "" +msgstr "NUT eklentisi, Kesintisiz Güç Kaynakları hakkındaki bilgileri okur." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:7 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" +"OLSRd eklentisi, OLSRd'nin txtinfo eklentisinden örgülü ağlar hakkındaki " +"bilgileri okur." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." -msgstr "" +msgstr "OpenVPN eklentisi, mevcut vpn bağlantı durumu hakkında bilgi toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/syslog.js:7 msgid "" "The SysLog plugin receives log messages from the daemon and dispatches them " "to syslog." msgstr "" +"SysLog eklentisi, arka plan programından günlük mesajlarını alır ve bunları " +"syslog'a gönderir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:132 msgid "The chain name must not contain spaces" -msgstr "" +msgstr "Zincir adı boşluk içermemelidir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:7 msgid "The chrony plugin will monitor chrony NTP server statistics" -msgstr "" +msgstr "Chrony eklentisi, chrony NTP sunucusu istatistiklerini izleyecek" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:153 msgid "The comment to match must not contain spaces" -msgstr "" +msgstr "Eşleşecek yorum boşluk içermemelidir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:7 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" +"Conntrack eklentisi, izlenen bağlantıların sayısı hakkında istatistikler " +"toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:7 msgid "The cpu plugin collects basic statistics about the processor usage." -msgstr "" +msgstr "Cpu eklentisi, işlemci kullanımıyla ilgili temel istatistikleri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:7 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" +"Csv eklentisi, toplanan verileri harici programlar tarafından daha fazla " +"işlenmek üzere csv dosyası biçiminde depolar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:8 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" +"Df eklentisi, farklı cihazlarda, bağlama noktalarında veya dosya sistemi " +"türlerinde disk alanı kullanımıyla ilgili istatistikleri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:7 msgid "The dhcpleases plugin collects information about assigned DHCP leases." -msgstr "" +msgstr "Dhcpleases eklentisi, atanan DHCP kiraları hakkında bilgi toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:8 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" +"Disk eklentisi, seçilen bölümler veya tüm diskler için ayrıntılı kullanım " +"istatistiklerini toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:8 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" +"Dns eklentisi, seçilen arayüzlerdeki dns ile ilgili trafik hakkında " +"ayrıntılı istatistikler toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:8 msgid "" @@ -1246,57 +1292,80 @@ msgid "" "to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can " "be used in other ways as well." msgstr "" +"Email eklentisi, e-posta istatistiklerini çalışan bir Collectd daemon'a " +"iletmek için kullanılabilecek bir unix soketi oluşturur. Bu eklentinin " +"öncelikle Mail::SpamAssasin::Plugin::Collectd ile birlikte kullanılması " +"amaçlanmıştır, ancak başka şekillerde de kullanılabilir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:7 msgid "The entropy plugin collects statistics about the available entropy." -msgstr "" +msgstr "Entropy eklentisi, mevcut entropi hakkında istatistikler toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:8 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" +"Exec eklentisi, değerleri okumak veya belirli eşik değerlerine ulaşıldığında " +"harici süreçleri bilgilendirmek için harici komutlar başlatır." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 msgid "The instance name must not contain spaces" -msgstr "" +msgstr "Örnek adı boşluk içermemelidir" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:8 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +"Arayüz eklentisi, seçilen arayüzler üzerindeki trafik istatistiklerini " +"toplar." + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" +"İpstatistics eklentisi, karşılaştırmak için IPv4 ve IPv6 istatistiklerini " +"toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" +"İptables eklentisi, seçilen güvenlik duvarı kurallarını izleyecek ve kural " +"başına işlenen baytlar ve paketler hakkında bilgi toplayacaktır." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:8 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" +"İrq eklentisi, seçilen her kesinti için saniye başına sayı oranını " +"izleyecektir. Herhangi bir kesinti seçilmezse, tüm kesintiler izlenir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:8 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" +"İwinfo eklentisi, kablosuz sinyal gücü, gürültü ve kalitesi hakkında " +"istatistikler toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js:7 msgid "The load plugin collects statistics about the general system load." -msgstr "" +msgstr "Load eklentisi, genel sistem yüküyle ilgili istatistikleri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:7 msgid "The memory plugin collects statistics about the memory usage." -msgstr "" +msgstr "Bellek eklentisi, bellek kullanımıyla ilgili istatistikleri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:8 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" +"Netlink eklentisi, seçilen arayüzler için qdisc, sınıf ve filtre " +"istatistikleri gibi genişletilmiş bilgileri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:7 msgid "" @@ -1305,18 +1374,26 @@ msgid "" "client mode locally collected data is transferred to a collectd server " "instance, in server mode the local instance receives data from other hosts." msgstr "" +"Ağ eklentisi, farklı toplama örnekleri arasında ağ tabanlı iletişim sağlar. " +"Collectd hem istemci hem de sunucu modunda çalışabilir. İstemci modunda " +"yerel olarak toplanan veriler bir toplu sunucu örneğine aktarılır, sunucu " +"modunda yerel örnek diğer ana bilgisayarlardan veri alır." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:7 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" +"Ping eklentisi, seçilen ana bilgisayarlara icmp yankı yanıtları gönderir ve " +"her ana bilgisayar için gidiş dönüş süresini ölçer." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:7 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" +"İşlemler eklentisi, cpu zamanı, sayfa hataları ve seçilen işlemlerin bellek " +"kullanımı gibi bilgileri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:7 msgid "" @@ -1325,28 +1402,38 @@ msgid "" "values will result in a very high memory consumption in the temporary " "directory. This can render the device unusable!</strong>" msgstr "" +"Rrdtool eklentisi, toplanan verileri diyagramların temeli olan rrd " +"veritabanı dosyalarında depolar. <br /><br /><strong> Uyarı: Yanlış " +"değerlerin ayarlanması, geçici dizinde çok yüksek bellek tüketimine neden " +"olur. Bu, cihazı kullanılamaz hale getirebilir!</strong>" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:16 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" +"Sensör eklentisi, çevresel istatistikleri toplamak için Linux Sensörleri " +"çerçevesini kullanır." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/snmp6.js:8 msgid "The snmp6 plugin collects IPv6 statistics for selected interfaces." -msgstr "" +msgstr "Snmp6 eklentisi, seçilen arayüzler için IPv6 istatistiklerini toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:7 msgid "" "The splash leases plugin uses libuci to collect statistics about splash " "leases." msgstr "" +"Splash leases eklentisi, açılış kiralamaları hakkında istatistik toplamak " +"için libuci'yi kullanır." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:7 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" +"Tcpconns eklentisi, seçili bağlantı noktalarındaki açık tcp bağlantıları " +"hakkında bilgi toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:8 msgid "" @@ -1354,133 +1441,148 @@ msgid "" "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" +"Termal eklenti, sistemin sıcaklığını izleyecektir. Veriler tipik olarak /sys/" +"class/thermal/*/temp'den okunur ('*', okunacak termal cihazı belirtir, ör. " +"Termal_zone1)" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:8 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" +"Unixsock eklentisi, toplanan verileri çalışan bir collectd örneğinden okumak " +"için kullanılabilen bir unix soketi oluşturur." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:7 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" +"Çalışma süresi eklentisi, sistemin çalışma süresi hakkında istatistikler " +"toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:170 msgid "There is no RRD data available yet to render graphs." -msgstr "" +msgstr "Grafikleri işlemek için henüz mevcut bir RRD verisi yok." #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/thermal.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" -msgstr "" +msgstr "Termal" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "Thermal Plugin Configuration" -msgstr "" +msgstr "Termal Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:7 msgid "This plugin collects statistics about the processor context switches." msgstr "" +"Bu eklenti, işlemci bağlam anahtarları hakkındaki istatistikleri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:7 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" +"Bu eklenti, işlemci frekansı ölçeklendirmesiyle ilgili istatistikleri toplar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" +"Bu bölüm, collectd'nin hangi arabirimlerin gelen bağlantıları bekleyeceğini " +"tanımlar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:51 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" +"Bu bölüm, yerel olarak toplanan verilerin hangi sunuculara gönderileceğini " +"tanımlar." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/chrony.js:25 msgid "Timeout for polling chrony" -msgstr "" +msgstr "Chrony yoklama için zaman aşımı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "Try to lookup fully qualified hostname" -msgstr "" +msgstr "Tam nitelikli ana bilgisayar adını aramayı deneyin" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/nut.js:7 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" -msgstr "" +msgstr "UPS" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "UPS Plugin Configuration" -msgstr "" +msgstr "UPS Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" -msgstr "" +msgstr "NUT ups@host formatında UPS adı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:27 msgid "URL" -msgstr "" +msgstr "URL" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" -msgstr "" +msgstr "UnixSock" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "Unixsock Plugin Configuration" -msgstr "" +msgstr "Unixsock Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js:15 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" -msgstr "Çalışma zamanı" +msgstr "Çalışma süresi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "Uptime Plugin Configuration" -msgstr "" +msgstr "Çalışma Süresi Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:10 msgid "Uptime monitoring enabled" -msgstr "" +msgstr "Çalışma süresi izleme etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:24 msgid "Use improved naming schema" -msgstr "" +msgstr "Geliştirilmiş adlandırma şeması kullanın" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Used PID file" -msgstr "" +msgstr "Kullanılan PID dosyası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:47 msgid "User" -msgstr "" +msgstr "Kullanıcı" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:21 msgid "Verbose monitoring" -msgstr "" +msgstr "Ayrıntılı izleme" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 msgid "When none selected, all disks will be monitored." -msgstr "" +msgstr "Hiçbiri seçilmediğinde, tüm diskler izlenecektir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 msgid "When none selected, all interfaces will be monitored." -msgstr "" +msgstr "Hiçbiri seçilmediğinde, tüm arayüzler izlenecektir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:21 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" +"Doğru olarak ayarlandığında, durum başına metriği raporlar (sistem, " +"kullanıcı, boşta)" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "When set to true, we request absolute values" -msgstr "" +msgstr "Doğru olarak ayarlandığında, mutlak değerler isteriz" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:33 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:18 msgid "When set to true, we request percentage values" -msgstr "" +msgstr "Doğru olarak ayarlandığında, yüzde değerleri isteriz" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 @@ -1489,30 +1591,32 @@ msgstr "Kablosuz" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "Wireless iwinfo Plugin Configuration" -msgstr "" +msgstr "Kablosuz iwinfo Eklentisi Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:97 msgid "Writing *.rrd files to %s" -msgstr "" +msgstr "*.rrd dosyaları %s 'ye yazılıyor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:171 msgid "" "You need to configure <em>collectd</em> to gather data into <em>.rrd</em> " "files." msgstr "" +"<em>collectd</em> 'yi <em> rrd</em> dosyalarına veri toplamak için " +"yapılandırmanız gerekir." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:31 msgid "cURL plugin enabled" -msgstr "" +msgstr "cURL eklentisi etkinleştirildi" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/curl.js:10 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" -msgstr "" +msgstr "cUrl" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:6 msgid "cUrl Plugin Configuration" -msgstr "" +msgstr "cUrl Eklenti Yapılandırması" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:139 msgid "none" @@ -1521,28 +1625,28 @@ msgstr "hiçbiri" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:107 msgid "one device" msgid_plural "%d devices" -msgstr[0] "" +msgstr[0] "%d cihaz" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:109 msgid "one filesystem type" msgid_plural "%d filesystem types" -msgstr[0] "" +msgstr[0] "%d dosya sistemi türü" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:39 msgid "one local port" msgid_plural "%d local ports" -msgstr[0] "" +msgstr[0] "%d yerel bağlantı noktası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:108 msgid "one mount" msgid_plural "%d mounts" -msgstr[0] "" +msgstr[0] "%d bağlamalar" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:40 msgid "one remote port" msgid_plural "%d remote ports" -msgstr[0] "" +msgstr[0] "%d uzak bağlantı noktası" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 msgid "reduces rrd size" -msgstr "" +msgstr "rrd boyutunu küçültür" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index 060319b2d3..0fdb49acf5 100644 --- a/applications/luci-app-statistics/po/uk/statistics.po +++ b/applications/luci-app-statistics/po/uk/statistics.po @@ -466,6 +466,19 @@ msgstr "Назва (ім'я) вузла" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "" @@ -649,12 +662,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1297,6 +1307,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index 468394a2f0..640dd98191 100644 --- a/applications/luci-app-statistics/po/vi/statistics.po +++ b/applications/luci-app-statistics/po/vi/statistics.po @@ -474,6 +474,19 @@ msgstr "Tên host" msgid "IP or hostname where to get the txtinfo output from" msgstr "" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "Cấu hình IRQ Plugin " @@ -657,10 +670,9 @@ msgstr "" msgid "Monitoring %s, %s, %s" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" +msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -1294,6 +1306,11 @@ msgstr "" "Giao diện plugin thu thập những thống kê lưu thông trên những giao diện được " "chọn" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/zh_Hans/statistics.po b/applications/luci-app-statistics/po/zh_Hans/statistics.po index 8af2549382..1eb16a2aab 100644 --- a/applications/luci-app-statistics/po/zh_Hans/statistics.po +++ b/applications/luci-app-statistics/po/zh_Hans/statistics.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2021-01-13 00:56+0000\n" -"Last-Translator: 孤爺仔 <7312140@qq.com>\n" +"PO-Revision-Date: 2021-05-08 11:11+0000\n" +"Last-Translator: Meano Lee <meanocat@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsstatistics/zh_Hans/>\n" "Language: zh_Hans\n" @@ -16,7 +16,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.4.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -61,7 +61,7 @@ msgstr "申请间隔»" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:47 msgid "Awaiting email input at %s" -msgstr "等待%s的电子邮件输入" +msgstr "等待 %s 的电子邮件输入" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Base Directory" @@ -161,7 +161,7 @@ msgstr "注释/规则编号" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:174 msgid "Configure…" -msgstr "设置…" +msgstr "配置…" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 @@ -473,6 +473,19 @@ msgstr "主机名" msgid "IP or hostname where to get the txtinfo output from" msgstr "获取 txtinfo 输出的 IP 地址或主机名" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "IP-Statistics" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "IP-Statistics 插件配置" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "IPv4/IPv6 统计数据已启用" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "IRQ 插件配置" @@ -652,16 +665,15 @@ msgstr "监测远程端口" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:38 msgid "Monitoring %s and %s" -msgstr "监视%s和%s" +msgstr "监视 %s 和 %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:106 msgid "Monitoring %s, %s, %s" -msgstr "监视%s,%s,%s" +msgstr "监视 %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "在主机%s,端口%d上监视APC UPS" +msgstr "监控主机 %s,端口 %d 上的APC UPS" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -678,12 +690,12 @@ msgstr[0] "监听 %d 个接口上的 DNS 查询中" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:44 msgid "Monitoring OLSRd status at %s:%d" -msgstr "在%s:%d监视OLSRd状态" +msgstr "在 %s:%d 上监视 OLSRd 的状态" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 msgid "Monitoring all but one disk" msgid_plural "Monitoring all but %d disks" -msgstr[0] "监视除 %d 磁盘外的所有磁盘" +msgstr[0] "监视除 %d 磁盘外的所有磁盘" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:36 @@ -709,7 +721,7 @@ msgstr "监视所有磁盘" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:106 msgid "Monitoring all except %s, %s, %s" -msgstr "监视除%s,%s和%s外的所有内容" +msgstr "监视除 %s, %s, %s 外的所有内容" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:34 @@ -1069,7 +1081,7 @@ msgstr "SNMP6" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 msgid "Socket %s active" -msgstr "套接字 %s 处于活动状态" +msgstr "套接字 %s 处于活动状态" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" @@ -1284,6 +1296,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "接口插件用于收集选定接口的流量统计信息。" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "Ipstatistics 插件收集 IPv4 和 IPv6 统计数据来比较它们。" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " diff --git a/applications/luci-app-statistics/po/zh_Hant/statistics.po b/applications/luci-app-statistics/po/zh_Hant/statistics.po index 6a6090e6e6..0d50acab86 100644 --- a/applications/luci-app-statistics/po/zh_Hant/statistics.po +++ b/applications/luci-app-statistics/po/zh_Hant/statistics.po @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2021-01-17 20:54+0000\n" -"Last-Translator: akibou <jinwenxin1997@icloud.com>\n" +"PO-Revision-Date: 2021-05-02 20:06+0000\n" +"Last-Translator: Trevor <wowpapa3232@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsstatistics/zh_Hant/>\n" "Language: zh_Hant\n" @@ -15,7 +15,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.5-dev\n" +"X-Generator: Weblate 4.7-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -160,7 +160,7 @@ msgstr "註解/規則號碼" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:174 msgid "Configure…" -msgstr "配置…" +msgstr "設定…" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 @@ -472,6 +472,19 @@ msgstr "主機名稱" msgid "IP or hostname where to get the txtinfo output from" msgstr "獲取 txtinfo 輸出的 IP 位址或主機名稱" +#: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ipstatistics.js:7 +#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ipstatistics.json:2 +msgid "IP-Statistics" +msgstr "IP-Statistics" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:7 +msgid "IP-Statistics Plugin Configuration" +msgstr "IP-Statistics 外掛設定" + +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:11 +msgid "IPv4/IPv6 Statistics monitoring enabled" +msgstr "IPv4/IPv6 統計資料已啟用" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "IRQ Plugin Configuration" msgstr "IRQ 插件設定" @@ -657,10 +670,10 @@ msgstr "監視 %s 和 %s" msgid "Monitoring %s, %s, %s" msgstr "監視 %s, %s, %s" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:26 +#, fuzzy msgid "Monitoring APC UPS at host %s, port %d" -msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "正在主機位置 %s 阜號 %d 的位置上監測 APC UPS" +msgstr "正在主機位置 %s 阜號 %d 的位置上監測 APC UPS" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dhcpleases.js:19 msgid "Monitoring DHCP leases enabled" @@ -915,7 +928,7 @@ msgstr "可能是已收集的錯誤。只有127.0.0.1和localhost可以工作" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" -msgstr "程序組" +msgstr "處理程序" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "Processes Plugin Configuration" @@ -1283,6 +1296,11 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Interface 插件用於統計選定介面的封包資訊。" +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ipstatistics.js:8 +msgid "" +"The ipstatistics plugin collects IPv4 and IPv6 statistics to compare them." +msgstr "Ipstatistics 外掛收集 IPv4 和 IPv6 統計資料來比較它們。" + #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:9 msgid "" "The iptables plugin will monitor selected firewall rules and collect " |