diff options
Diffstat (limited to 'applications/luci-app-statistics')
94 files changed, 689 insertions, 586 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 00b65d5b6d..092dd45522 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 @@ -1,4 +1,5 @@ 'use strict'; +'require baseclass'; 'require fs'; 'require uci'; 'require tools.prng as random'; @@ -133,7 +134,7 @@ var colors = L.Class.singleton({ var rrdtree = {}, graphdefs = {}; -return L.Class.extend({ +return baseclass.extend({ __init__: function() { this.opts = {}; }, diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js index bcebf30340..c03e38cf57 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('APC UPS'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { @@ -15,10 +16,10 @@ return L.Class.extend({ */ var ups_types = graph.dataTypes(host, plugin, plugin_instance), - ups_inst = []; + ups_inst = {}; for (var i = 0; i < ups_types.length; i++) - ups_inst.push(graph.dataInstances(host, plugin, plugin_instance, ups_types[i])); + ups_inst[ups_types[i]] = graph.dataInstances(host, plugin, plugin_instance, ups_types[i]); /* Check if hash table or array is empty or nil-filled */ function empty(t) { @@ -37,9 +38,9 @@ return L.Class.extend({ if (L.isObject(def_inst)) { for (var k in def_inst) { - if (ups_types.find(function(t) { return t == k }).length) { + if (ups_types.filter(function(t) { return t == k }).length) { for (var i = def_inst[k].length - 1; i >= 0; i--) - if (!ups_inst[k].find(function(n) { return n == def_inst[k][i] }).length) + if (!ups_inst[k].filter(function(n) { return n == def_inst[k][i] }).length) def_inst[k].splice(i, 1); if (def_inst[k].length == 0) diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js index c61d4f2912..9c54f5c914 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Conntrack'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/contextswitch.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/contextswitch.js index fc4c80a93b..8dc3cc75fb 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/contextswitch.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/contextswitch.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Context Switches'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js index 4e130704aa..464b28e8ef 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpu.js @@ -1,9 +1,10 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; 'require uci'; -return L.Class.extend({ +return baseclass.extend({ title: _('Processor'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js index 6f4d52deb2..308d58dacf 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js @@ -1,9 +1,10 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; 'require uci'; -return L.Class.extend({ +return baseclass.extend({ title: _('CPU Frequency'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/curl.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/curl.js index af78dd0b91..718aa7bbb6 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/curl.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/curl.js @@ -4,8 +4,9 @@ */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('cUrl'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/df.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/df.js index 240d1da617..34fbb9b5c4 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/df.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/df.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Disk Space Usage'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/disk.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/disk.js index 52542a1f84..12ed9568f6 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/disk.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/disk.js @@ -4,8 +4,9 @@ */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Disk Usage'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js index 9e71bb42c5..029471f801 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/dns.js @@ -4,8 +4,9 @@ */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('DNS'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js index 574724c421..b4f6f05948 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/entropy.js @@ -4,8 +4,9 @@ */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Entropy'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js index 04b1b8d1ea..ccf1849243 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Interfaces'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js index 1b9755cce3..c956c19881 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Firewall (IPv6)'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js index a115c044b3..69a3a87eb7 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Firewall'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js index 158fbce9e3..29675f77c3 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Interrupts'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js index 9eeb1d0016..638242f102 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Wireless'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/load.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/load.js index 8b1e6c2844..a104691100 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/load.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/load.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('System Load'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js index 4c52fc7811..9b0d179b0a 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js @@ -4,8 +4,9 @@ */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Memory'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js index f7d55a89db..3bf3756b04 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Netlink'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/nut.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/nut.js index a9cb770c7d..5d7a92f7fb 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/nut.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/nut.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('UPS'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js index 4ccc417da7..b311efba36 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js @@ -4,8 +4,9 @@ */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('OLSRd'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/openvpn.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/openvpn.js index 08951018f4..f78e2a491c 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/openvpn.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/openvpn.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('OpenVPN'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js index 063db21895..27624828c2 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Ping'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js index c117709701..9087b8e33c 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Processes'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sensors.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sensors.js index 72806df880..b3361e1bf4 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sensors.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sensors.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Sensors'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/splash_leases.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/splash_leases.js index 64741f16e3..33df893f86 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/splash_leases.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/splash_leases.js @@ -4,8 +4,9 @@ */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Splash Leases'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js index 4ecd532fa0..626e2c64bc 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/tcpconns.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('TCP Connections'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/thermal.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/thermal.js index 6ff303de98..a94c83bdf5 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/thermal.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/thermal.js @@ -1,8 +1,9 @@ /* Licensed to the public under the Apache License 2.0. */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Thermal'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js index c764897b54..2b6ea226a8 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js @@ -9,8 +9,9 @@ You may obtain a copy of the License at */ 'use strict'; +'require baseclass'; -return L.Class.extend({ +return baseclass.extend({ title: _('Uptime'), rrdargs: function(graph, host, plugin, plugin_instance, dtype) { 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 d92693525a..282b867c4d 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 @@ -1,10 +1,12 @@ 'use strict'; +'require view'; +'require dom'; 'require fs'; 'require ui'; 'require uci'; 'require form'; -return L.view.extend({ +return view.extend({ load: function() { return Promise.all([ fs.list('/usr/lib/collectd'), @@ -172,7 +174,7 @@ return L.view.extend({ var trEl = this.super('renderRowActions', [ section_id, _('Configure…') ]); if (!plugin || !plugin.form.addFormOptions) - L.dom.content(trEl, null); + dom.content(trEl, null); return trEl; }; diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js index 9da94681d2..838af8c661 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js @@ -1,4 +1,7 @@ 'use strict'; +'require view'; +'require dom'; +'require poll'; 'require ui'; 'require uci'; 'require statistics.rrdtool as rrdtool'; @@ -7,7 +10,7 @@ var pollFn = null, activePlugin = null, activeInstance = null; -return L.view.extend({ +return view.extend({ load: function() { return rrdtool.load(); }, @@ -22,7 +25,7 @@ return L.view.extend({ activePlugin = plugin; - L.dom.content(container, [ + dom.content(container, [ E('p', {}, [ E('em', { 'class': 'spinning' }, [ _('Loading data…') ]) ]) @@ -52,7 +55,7 @@ return L.view.extend({ })).then(function(blobs) { var multiple = blobs.length > 1; - L.dom.content(container, E('div', {}, blobs.map(function(blobs, i) { + dom.content(container, E('div', {}, blobs.map(function(blobs, i) { var plugin_instance = i ? plugin_instances[i-1] : plugin_instances.join('|'), title = '%s: %s'.format(rrdtool.pluginTitle(plugin), i ? plugin_instance : _('Overview')); @@ -85,7 +88,7 @@ return L.view.extend({ URL.revokeObjectURL(img.src); }); - L.dom.content(container, null); + dom.content(container, null); if (container.hasAttribute('data-initialized')) { container.removeAttribute('data-initialized'); @@ -147,13 +150,13 @@ return L.view.extend({ var btn = ev.currentTarget; if (pollFn) { - L.Poll.remove(pollFn); + poll.remove(pollFn); pollFn = null; } if (time.value != '0') { pollFn = L.bind(this.refreshGraphs, this, host, span, time, container); - L.Poll.add(pollFn, +time.value); + poll.add(pollFn, +time.value); } }, @@ -200,24 +203,30 @@ return L.view.extend({ var view = E([], [ E('h2', {}, [ _('Statistics') ]), E('div', {}, [ - E('div', {}, [ - hostSel, - E('button', { - 'class': 'cbi-button cbi-button-apply', - 'click': ui.createHandlerFn(this, 'updateGraphs', hostSel, spanSel, timeSel, graphDiv, ) - }, [ _('Display Host »') ]), + E('p', { 'class': 'controls' }, [ + E('span', { 'class': 'nowrap' }, [ + hostSel, + E('button', { + 'class': 'cbi-button cbi-button-apply', + 'click': ui.createHandlerFn(this, 'updateGraphs', hostSel, spanSel, timeSel, graphDiv, ) + }, [ _('Display Host »') ]), + ]), ' ', - spanSel, - E('button', { - 'class': 'cbi-button cbi-button-apply', - 'click': ui.createHandlerFn(this, 'updateGraphs', hostSel, spanSel, timeSel, graphDiv) - }, [ _('Display timespan »') ]), + E('span', { 'class': 'nowrap' }, [ + spanSel, + E('button', { + 'class': 'cbi-button cbi-button-apply', + 'click': ui.createHandlerFn(this, 'updateGraphs', hostSel, spanSel, timeSel, graphDiv) + }, [ _('Display timespan »') ]), + ]), ' ', - timeSel, - E('button', { - 'class': 'cbi-button cbi-button-apply', - 'click': ui.createHandlerFn(this, 'togglePolling', hostSel, spanSel, timeSel, graphDiv) - }, [ _('Apply interval »') ]) + E('span', { 'class': 'nowrap' }, [ + timeSel, + E('button', { + 'class': 'cbi-button cbi-button-apply', + 'click': ui.createHandlerFn(this, 'togglePolling', hostSel, spanSel, timeSel, graphDiv) + }, [ _('Apply interval »') ]) + ]) ]), E('hr'), graphDiv 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 b4f170c8a7..89b861a84b 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 @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('APCUPS Plugin Configuration'), description: _('The APCUPS plugin collects statistics about the APC UPS.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js index 23f14e846c..ac859c8553 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Conntrack Plugin Configuration'), description: _('The conntrack plugin collects statistics about the number of tracked connections.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js index f4e30fe354..d978a556c2 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('CPU Context Switches Plugin Configuration'), description: _('This plugin collects statistics about the processor context switches.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js index 3a27a67dfe..7b2963cad2 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('CPU Plugin Configuration'), description: _('The cpu plugin collects basic statistics about the processor usage.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js index 64c260877c..636ac8f7c7 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('CPU Frequency Plugin Configuration'), description: _('This plugin collects statistics about the processor frequency scaling.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js index 244a07be27..87d8c9f6b7 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('CSV Plugin Configuration'), description: _('The csv plugin stores collected data in csv file format for further processing by external programs.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js index c49c475c6b..60a167c244 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('cUrl Plugin Configuration'), addFormOptions: function(s) { diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js index 7b063869b2..9e3dc5630a 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require fs'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('DF Plugin Configuration'), description: _('The df plugin collects statistics about the disk space usage on different devices, mount points or filesystem types.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js index c737a7dbe2..c36df10258 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require fs'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Disk Plugin Configuration'), description: _('The disk plugin collects detailed usage statistics for selected partitions or whole disks.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js index 27b08cf393..8ff7052980 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require form'; 'require tools.widgets as widgets'; -return L.Class.extend({ +return baseclass.extend({ title: _('DNS Plugin Configuration'), description: _('The dns plugin collects detailed statistics about dns related traffic on selected interfaces.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js index 5306dd4cea..51f8284e48 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require form'; 'require tools.widgets as widgets'; -return L.Class.extend({ +return baseclass.extend({ title: _('E-Mail Plugin Configuration'), description: _('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.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js index cf15d98a30..ffe679194a 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Entropy Plugin Configuration'), description: _('The entropy plugin collects statistics about the available entropy.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js index ff1a5a0ad9..d197144271 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require form'; 'require tools.widgets as widgets'; -return L.Class.extend({ +return baseclass.extend({ title: _('Exec Plugin Configuration'), description: _('The exec plugin starts external commands to read values from or to notify external processes when certain threshold values have been reached.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js index 1d60d644fd..cb4d680b21 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require form'; 'require tools.widgets as widgets'; -return L.Class.extend({ +return baseclass.extend({ title: _('Interface Plugin Configuration'), description: _('The interface plugin collects traffic statistics on selected interfaces.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js index 34b75f9284..6dcaf26de6 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js @@ -1,9 +1,10 @@ 'use strict'; +'require baseclass'; 'require fs'; 'require uci'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Iptables Plugin Configuration'), description: _('The iptables plugin will monitor selected firewall rules and collect information about processed bytes and packets per rule.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js index f6bac08723..4271a8f819 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require fs'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('IRQ Plugin Configuration'), description: _('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.'), @@ -36,6 +37,8 @@ return L.Class.extend({ this.value(m[1], '%s (%s)'.format(m[1], desc || '-')); } + + return this.super('load', [section_id]); }, this)); }; diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js index 3f99872366..868c1f3035 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require form'; 'require tools.widgets as widgets'; -return L.Class.extend({ +return baseclass.extend({ title: _('Wireless iwinfo Plugin Configuration'), description: _('The iwinfo plugin collects statistics about wireless signal strength, noise and quality.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js index be6aba44cd..25755637c8 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Load Plugin Configuration'), description: _('The load plugin collects statistics about the general system load.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js index fdd55f0cf5..a4a8eb2761 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Memory Plugin Configuration'), description: _('The memory plugin collects statistics about the memory usage.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js index 3797b690ad..8910206929 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require form'; 'require tools.widgets as widgets'; -return L.Class.extend({ +return baseclass.extend({ title: _('Netlink Plugin Configuration'), description: _('The netlink plugin collects extended information like qdisc-, class- and filter-statistics for selected interfaces.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js index 5419e6d34f..2429b8ac77 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Network Plugin Configuration'), description: _('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.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js index 7148ed1124..ca20e11721 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('UPS Plugin Configuration'), description: _('The NUT plugin reads information about Uninterruptible Power Supplies.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js index 973c0858f3..4e6eca2344 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('OLSRd Plugin Configuration'), description: _('The OLSRd plugin reads information about meshed networks from the txtinfo plugin of OLSRd.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js index b3e4f19331..b48ed93a32 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require fs'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('OpenVPN Plugin Configuration'), description: _('The OpenVPN plugin gathers information about the current vpn connection status.'), @@ -29,7 +30,9 @@ return L.Class.extend({ return L.resolveDefault(fs.list('/var/run'), []).then(L.bind(function(entries) { for (var i = 0; i < entries.length; i++) if (entries[i].type == 'file' && entries[i].name.match(/^openvpn\..+\.status$/)) - o.value('/var/run/' + entries[i].name); + this.value('/var/run/' + entries[i].name); + + return this.super('load', [section_id]); }, this)); }; }, @@ -38,6 +41,6 @@ return L.Class.extend({ var stats = L.toArray(section.StatusFile); if (stats.length) - return N_(stats.length, 'Monitoring one OpenVPN instance', 'Monitoring %d OpenVPN instancees').format(stats.length); + return N_(stats.length, 'Monitoring one OpenVPN instance', 'Monitoring %d OpenVPN instances').format(stats.length); } }); diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js index 07f0f50947..33ef8e2b41 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Ping Plugin Configuration'), description: _('The ping plugin will send icmp echo replies to selected hosts and measure the roundtrip time for each host.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js index e2331998a5..d29ac87630 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Processes Plugin Configuration'), description: _('The processes plugin collects information like cpu time, page faults and memory usage of selected processes.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js index 6e0b8e6a24..4d0520471c 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('RRDTool Plugin Configuration'), description: _('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>'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js index cda59a2a91..8424966d2d 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js @@ -1,4 +1,5 @@ 'use strict'; +'require baseclass'; 'require fs'; 'require form'; @@ -10,7 +11,7 @@ var sensorTypes = [ /^(?:power)[0-9]*$/, 'power' ]; -return L.Class.extend({ +return baseclass.extend({ title: _('Sensors Plugin Configuration'), description: _('The sensors plugin uses the Linux Sensors framework to gather environmental statistics.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js index 9db7388608..34d0ca9b49 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js @@ -1,11 +1,12 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Splash Leases Plugin Configuration'), description: _('The splash leases plugin uses libuci to collect statistics about splash leases.'), configSummary: function(section) { - return _('Monitoring spash leases'); + return _('Monitoring splash leases'); } }); diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js index 9162418799..3bab72776b 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('TCPConns Plugin Configuration'), description: _('The tcpconns plugin collects information about open tcp connections on selected ports.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js index c2def46098..650e54747a 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require fs'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Thermal Plugin Configuration'), description: _('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 )'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js index c2f33a0a14..996cfda45c 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js @@ -1,8 +1,9 @@ 'use strict'; +'require baseclass'; 'require form'; 'require tools.widgets as widgets'; -return L.Class.extend({ +return baseclass.extend({ title: _('Unixsock Plugin Configuration'), description: _('The unixsock plugin creates a unix socket which can be used to read collected data from a running collectd instance.'), diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js index c31cfd2e90..2c42708ef6 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js @@ -1,7 +1,8 @@ 'use strict'; +'require baseclass'; 'require form'; -return L.Class.extend({ +return baseclass.extend({ title: _('Uptime Plugin Configuration'), description: _('The uptime plugin collects statistics about the uptime of the system.'), diff --git a/applications/luci-app-statistics/po/bg/statistics.po b/applications/luci-app-statistics/po/bg/statistics.po index 921cbf0443..d1bf74ad52 100644 --- a/applications/luci-app-statistics/po/bg/statistics.po +++ b/applications/luci-app-statistics/po/bg/statistics.po @@ -51,7 +51,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -218,11 +218,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -515,7 +515,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -619,7 +619,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -645,7 +645,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -669,9 +669,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -701,7 +701,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index 1f91a48691..a4690b3dc4 100644 --- a/applications/luci-app-statistics/po/ca/statistics.po +++ b/applications/luci-app-statistics/po/ca/statistics.po @@ -53,7 +53,7 @@ msgstr "Família d’adreces" msgid "Aggregate number of connected users" msgstr "Nombre totalitzat d’usuaris connectats" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -222,11 +222,11 @@ msgstr "Ús d'espai en disc" msgid "Disk Usage" msgstr "Ús de disc" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Mostra el host »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Mostra l'hora" @@ -526,7 +526,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -630,7 +630,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -656,7 +656,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -680,9 +680,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -712,7 +712,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index da3c904808..5fa9c38312 100644 --- a/applications/luci-app-statistics/po/cs/statistics.po +++ b/applications/luci-app-statistics/po/cs/statistics.po @@ -49,7 +49,7 @@ msgstr "Adresní rodina" msgid "Aggregate number of connected users" msgstr "Souhrnný počet připojených uživatelů" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -217,11 +217,11 @@ msgstr "Využití místa na disku" msgid "Disk Usage" msgstr "Využití disku" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Zobrazit hostitele »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Zobrazit časové rozpětí »" @@ -524,7 +524,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -632,7 +632,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -660,7 +660,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -684,9 +684,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -721,7 +721,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index d9074a3bfd..ee945f19de 100644 --- a/applications/luci-app-statistics/po/de/statistics.po +++ b/applications/luci-app-statistics/po/de/statistics.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-02-17 11:50+0000\n" -"Last-Translator: marzzzello <anmeldezeugs@top-email.net>\n" +"PO-Revision-Date: 2020-04-02 13:34+0000\n" +"Last-Translator: Kiste <christian.buschau+weblate@mailbox.org>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/de/>\n" "Language: de\n" @@ -12,16 +12,16 @@ 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.0-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" -msgstr "" +msgstr "APC USV" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" -msgstr "" +msgstr "APC USV-Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:13 msgid "Absolute values" @@ -29,11 +29,11 @@ msgstr "Absolute Werte" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:67 msgid "Add IPv4 rule selector" -msgstr "" +msgstr "Füge IPv4 Sortierregel hinzu" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:67 msgid "Add IPv6 rule selector" -msgstr "" +msgstr "Füge IPv6 Sortierregel hinzu" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:15 msgid "Add command for reading values" @@ -51,13 +51,13 @@ msgstr "Adressfamilie" msgid "Aggregate number of connected users" msgstr "Anzahl aller Verbundenen Benutzer" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" -msgstr "" +msgstr "Intervall anwenden »" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:46 msgid "Awaiting email input at %s" -msgstr "" +msgstr "Erwarte E-Mail eingabe in %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:57 msgid "Base Directory" @@ -65,19 +65,21 @@ msgstr "Basisverzeichnis" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" -msgstr "Schnittstellen einfach überwachen" +msgstr "Vereinfachte Überwachung" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:24 msgid "Basic process monitoring enabled" -msgstr "" +msgstr "Vereinfachte Überwachung von Prozessen aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" +"Wenn dies gesetzt ist, wird der CPU-Wert nicht über alle Prozessoren " +"aggregiert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" -msgstr "" +msgstr "CPU-Kontextwechsel Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/cpufreq.js:7 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 @@ -94,7 +96,7 @@ msgstr "CPU Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 msgid "CPU monitoring is enabled" -msgstr "" +msgstr "CPU Überwachung ist aktiviert" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" @@ -106,15 +108,15 @@ msgstr "CSV Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:68 msgid "Cache collected data for" -msgstr "Zwischenspeicherzeit für gesammelte Daten" +msgstr "Speichere gesammelte Daten zwischen für" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:98 msgid "Chain" -msgstr "Kette (Chain)" +msgstr "Kette" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:18 msgid "Change the ownership of the socket file to the specified group." -msgstr "" +msgstr "Ändere die Zugehörigkeit des Sockets zur angegebenen Gruppe." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:20 msgid "CollectLinks" @@ -135,41 +137,41 @@ msgstr "Collectd Einstellungen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:56 msgid "Command monitoring enabled" -msgstr "" +msgstr "Überwachung von Befehlen aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:136 msgid "Comment / Rule Number" -msgstr "" +msgstr "Kommentar / Regelnummer" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:172 msgid "Configure…" -msgstr "" +msgstr "Konfiguriere…" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/conntrack.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" -msgstr "Conntrack" +msgstr "Verbindungsverfolgung" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" -msgstr "Conntrack Plugin Einstellungen" +msgstr "Conntrack Plugin-Einstellungen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 msgid "Conntrack monitoring enabled" -msgstr "" +msgstr "Überwachung der Verbindungsverfolgung aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/contextswitch.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" -msgstr "" +msgstr "Kontextwechsel" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 msgid "Context switch monitoring enabled" -msgstr "" +msgstr "Überwachung des Kontextwechsel aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:27 msgid "Create statistics about the network plugin itself" -msgstr "" +msgstr "Erstelle Statistik des Netzwerk-Plugin selbst" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" @@ -190,15 +192,15 @@ msgstr "Daten-Sammelintervall" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:69 msgid "Datasets definition file" -msgstr "Dataset-Definitionen" +msgstr "Datensätze-Definitionsdatei" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:21 msgid "Detailled CPU frequency monitoring enabled" -msgstr "" +msgstr "Detaillierte CPU-Frequenzüberwachung aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:63 msgid "Directory for collectd plugins" -msgstr "Verzeichnis für Collectd-Plugins" +msgstr "Verzeichnis für collectd Plugins" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:60 msgid "Directory for sub-configurations" @@ -206,7 +208,7 @@ msgstr "Verzeichnis für Unterkonfigurationen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" -msgstr "Disk Plugin Konfiguration" +msgstr "Disk-Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/df.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 @@ -218,17 +220,17 @@ msgstr "Plattenspeicher" msgid "Disk Usage" msgstr "Plattenauslastung" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Anzeigeserver" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Zeitspanne zeigen »" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:192 msgid "Do not refresh" -msgstr "" +msgstr "Nicht aktualisieren" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" @@ -240,7 +242,7 @@ msgstr "Email" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:14 msgid "Empty value = monitor all" -msgstr "" +msgstr "Leerer Wert = Alles überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:20 msgid "Enable" @@ -248,11 +250,11 @@ msgstr "Aktivieren" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:24 msgid "Enable forwarding" -msgstr "" +msgstr "Weiterleitung aktivieren" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:27 msgid "Enable statistics" -msgstr "" +msgstr "Statistik aktivieren" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 @@ -299,19 +301,19 @@ msgstr "Entropie Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 msgid "Entropy monitoring enabled" -msgstr "" +msgstr "Überwachung von Entropie aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:194 msgid "Every 30 seconds" -msgstr "" +msgstr "Alle 30 Sekunden" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:193 msgid "Every 5 seconds" -msgstr "" +msgstr "Alle 5 Sekunden" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:195 msgid "Every minute" -msgstr "" +msgstr "Jede Minute" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" @@ -323,23 +325,23 @@ msgstr "Exec Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:65 msgid "Expecting decimal value lower than one" -msgstr "" +msgstr "Erwarte Dezimalwert kleiner Eins" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:32 msgid "Expecting permssions in octal notation" -msgstr "" +msgstr "Erwarte Rechte in Oktalnotation" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:47 msgid "Expecting valid time range" -msgstr "" +msgstr "Erwarte valide Zeitspanne" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" -msgstr "" +msgstr "Zusätzliche Elemente" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:13 msgid "Fetch pages" -msgstr "" +msgstr "Rufe Seiten ab" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" @@ -352,7 +354,7 @@ msgstr "Firewall" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js:6 msgid "Firewall (IPv6)" -msgstr "" +msgstr "Firewall (IPv6)" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:88 msgid "Flush cache after" @@ -364,15 +366,15 @@ msgstr "Weiterleitung zwischen Listen- und Server-Adressen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Gather compression statistics" -msgstr "" +msgstr "Sammle Kompressionsstatistik" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:84 msgid "General plugins" -msgstr "" +msgstr "Allgemeine Erweiterungen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:14 msgid "Generate a separate graph for each logged user" -msgstr "" +msgstr "Generiere einen separaten Graphen für jeden eingewählten Nutzer" #: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:14 msgid "Graphs" @@ -433,11 +435,11 @@ msgstr "Quelladressen ignorieren" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:69 msgid "Instance name" -msgstr "" +msgstr "Schnittstellenname" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" -msgstr "Interface Plugin Konfiguration" +msgstr "Schnittstellen-Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 @@ -455,13 +457,13 @@ msgstr "Intervall zwischen den Pings" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" -msgstr "Iptables Plugin Konfiguration" +msgstr "Iptables-Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:14 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -"Nichts auswählen um die zu überwachende Schnittstelle automatisch zu " -"bestimmen" +"Nichts auswählen um die zu überwachenden Schnittstellen automatisch zu " +"bestimmen." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:39 msgid "Listen host" @@ -477,30 +479,32 @@ msgstr "Listen-Schnittstelle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" -msgstr "Load Plugin Konfiguration" +msgstr "CPU-Beanspruchungs Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js:9 msgid "Load monitoring enabled" -msgstr "" +msgstr "Überwachung der CPU-Beanspruchung aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:27 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:105 msgid "Loading data…" -msgstr "" +msgstr "Lade Daten…" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:19 msgid "Match IPv4 iptables rules" -msgstr "" +msgstr "Gleiche IPv4 Iptables-Regeln ab" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:19 msgid "Match IPv6 iptables rules" -msgstr "" +msgstr "Gleiche IPv6 Iptables-Regeln ab" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:34 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" +"Maximalwerte für eine Periode können genutzt werden anstatt von " +"Durchschnittswerten, wenn 'Nur average RRAs erzeugen' nicht gesetzt ist" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:37 msgid "Maximum allowed connections" @@ -508,25 +512,25 @@ msgstr "Maximale Anzahl erlaubter Verbindungen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:19 msgid "Maximum packet size" -msgstr "" +msgstr "Maximale Paketgröße" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js:9 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" -msgstr "Hauptspeicher" +msgstr "Speicher" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" -msgstr "Memory-Plugin-Konfiguration" +msgstr "Speicher-Plugin-Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:22 msgid "Memory monitoring enabled" -msgstr "" +msgstr "Überwachung des Speichers aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -540,7 +544,7 @@ msgstr "Alle durch lokale Dienste genutzten Ports überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:14 msgid "Monitor device(s) / thermal zone(s)" -msgstr "" +msgstr "Geräte / thermische Zonen überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:14 msgid "Monitor devices" @@ -556,7 +560,7 @@ msgstr "Datesystemtypen überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:13 msgid "Monitor host" -msgstr "" +msgstr "Host überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:13 msgid "Monitor hosts" @@ -578,169 +582,169 @@ msgstr "lokale Ports überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:36 msgid "Monitor mount points" -msgstr "Mount-Punkte überwachen" +msgstr "Einhängepunkte überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:13 msgid "Monitor processes" -msgstr "Überwachte Prozesse" +msgstr "Prozesse überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:23 msgid "Monitor remote ports" -msgstr "entfernte Ports überwachen" +msgstr "Entfernte Ports überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 msgid "Monitoring %s and %s" -msgstr "" +msgstr "Überwachung von %s und %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:102 msgid "Monitoring %s, %s, %s" -msgstr "" +msgstr "Überwachung von %s, %s, %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:28 msgid "Monitoring APC UPS at host %s, port %d" msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung von APC USV am Host %s, Port %d" +msgstr[1] "Überwachung von APC USV an Hosts %s, Port %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:30 msgid "Monitoring DNS queries on all interfaces" -msgstr "" +msgstr "Überwachung der DNS-Anfragen auf allen Schnittstellen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:32 msgid "Monitoring DNS queries on one interface" msgid_plural "Monitoring DNS queries on %d interfaces" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung der DNS-Anfragen auf einer Schnittstelle" +msgstr[1] "Überwachung der DNS-Anfragen auf %d Schnittstellen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:43 msgid "Monitoring OLSRd status at %s:%d" -msgstr "" +msgstr "Überwachung des OSLRd Status von %s:%d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:42 msgid "Monitoring all but one disk" msgid_plural "Monitoring all but %d disks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung aller Festplatten, bis auf eine" +msgstr[1] "Überwachung aller Festplatten, bis auf %d" #: 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:35 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:53 msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung aller Schnittstellen, bis auf eine" +msgstr[1] "Überwachung aller Schnittstellen, bis auf %d" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung aller Interrupts, bis auf einen" +msgstr[1] "Überwachung aller Interrupts, bis auf %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:55 msgid "Monitoring all but one sensor" msgid_plural "Monitoring all but %d sensors" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung aller Sensoren, bis auf eine" +msgstr[1] "Überwachung aller Sensoren, bis auf %d" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:40 msgid "Monitoring all disks" -msgstr "" +msgstr "Überwachung aller Festplatten" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:102 msgid "Monitoring all except %s, %s, %s" -msgstr "" +msgstr "Überwachung von allem, außer %s, %s, %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:28 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:33 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:51 msgid "Monitoring all interfaces" -msgstr "" +msgstr "Überwachung aller Schnittstellen" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" -msgstr "" +msgstr "Überwachung aller Interrupts" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:100 msgid "Monitoring all partitions" -msgstr "" +msgstr "Überwachung aller Partitionen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:59 msgid "Monitoring all sensors" -msgstr "" +msgstr "Überwachung aller Sensoren" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:49 msgid "Monitoring all thermal zones" -msgstr "" +msgstr "Überwachung aller thermischen Zonen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:45 msgid "Monitoring all thermal zones except %s" -msgstr "" +msgstr "Überwachung aller thermischen Zonen außer %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 msgid "Monitoring local listen ports" -msgstr "" +msgstr "Überwachung von lokal geschalteter Ports" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" -msgstr[0] "" -msgstr[1] "" +msgid_plural "Monitoring %d OpenVPN instances" +msgstr[0] "Überwachung einer OpenVPN Instanz" +msgstr[1] "Überwachung von %d OpenVPN Instanzen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:20 msgid "Monitoring one UPS" msgid_plural "Monitoring %d UPSes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung eines USV" +msgstr[1] "Überwachung von %d USV" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:44 msgid "Monitoring one disk" msgid_plural "Monitoring %d disks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung einer Festplatte" +msgstr[1] "Überwachung von %d Festplatten" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:40 msgid "Monitoring one host" msgid_plural "Monitoring %d hosts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung eines Hosts" +msgstr[1] "Überwachung von %d Hosts" #: 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:37 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:55 msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung einer Schnittstelle" +msgstr[1] "Überwachung von %d Schnittstellen" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung eines Interrupt" +msgstr[1] "Überwachung von %d Interrupts" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:22 msgid "Monitoring one process" msgid_plural "Monitoring %d processes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung eines Prozesses" +msgstr[1] "Überwachung von %d Prozessen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:57 msgid "Monitoring one sensor" msgid_plural "Monitoring %d sensors" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Überwachung eines Sensors" +msgstr[1] "Überwachung von %d Sensoren" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 msgid "Monitoring spash leases" -msgstr "" +msgstr "Überwache Splash-Leases" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 msgid "Monitoring thermal zones %s" -msgstr "" +msgstr "Überwachung der thermischen Zonen %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" -msgstr "" +msgstr "Mehr Details über Frequenznutzung und -übergänge" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" @@ -761,11 +765,11 @@ msgstr "Netzwerk" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" -msgstr "Network Plugin Konfiguration" +msgstr "Netzwerk Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:68 msgid "Network communication enabled" -msgstr "" +msgstr "Netzwerkkommunikation aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:85 msgid "Network plugins" @@ -773,13 +777,16 @@ msgstr "Netzwerkplugins" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:166 msgid "No RRD data found" -msgstr "" +msgstr "Keine RRD Daten gefunden" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 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 "" +"Hinweis: da Seiten durch den Nutzer 'nobody' gerendert werden, müssen *.rrd " +"Daten, der Speicherordner sowie dessen übergeordnete Ordner für jedermann " +"lesbar sein." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:75 msgid "Number of threads for data collection" @@ -805,11 +812,11 @@ msgstr "OpenVPN" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" -msgstr "" +msgstr "OpenVPN Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:26 msgid "OpenVPN status files" -msgstr "" +msgstr "OpenVPN Statusdateien" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:86 msgid "Output plugins" @@ -817,11 +824,11 @@ msgstr "Ausgabeplugins" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:57 msgid "Overview" -msgstr "" +msgstr "Übersicht" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:17 msgid "Percent values" -msgstr "" +msgstr "Prozentwerte" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 @@ -834,7 +841,7 @@ msgstr "Ping Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:134 msgid "Plugin is disabled" -msgstr "" +msgstr "Plugin ist deaktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:17 msgid "Port" @@ -842,7 +849,7 @@ msgstr "Port" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:18 msgid "Port for apcupsd communication" -msgstr "" +msgstr "Port zur 'apcupsd' Kommunikation" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/processes.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 @@ -884,15 +891,15 @@ msgstr "RRDTool Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:13 msgid "Report by CPU" -msgstr "" +msgstr "Berichte je CPU" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" -msgstr "" +msgstr "Berichte je Prozesszustand" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 msgid "Report in percent" -msgstr "" +msgstr "Berichte in Prozent" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:50 msgid "Rows per RRA" @@ -900,7 +907,7 @@ msgstr "Spalten pro RRA" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:160 msgid "Rule monitoring enabled" -msgstr "" +msgstr "Monitoring von Regeln aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:23 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:43 @@ -918,16 +925,16 @@ msgstr "Sekunden" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:22 msgid "Sensor list" -msgstr "" +msgstr "Sensorenliste" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/sensors.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" -msgstr "" +msgstr "Sensoren" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" -msgstr "" +msgstr "Sensoren Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:57 msgid "Server host" @@ -935,7 +942,7 @@ msgstr "Server-Host" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:49 msgid "Server interfaces" -msgstr "" +msgstr "Server-Schnittstellen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:61 msgid "Server port" @@ -944,14 +951,15 @@ msgstr "Server-Port" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:19 msgid "Set the maximum size for datagrams sent over the network" msgstr "" +"Setze die maximale Größe der über das Netzwerk zu sendenden Datenpakete" #: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:23 msgid "Setup" -msgstr "" +msgstr "Setup" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:173 msgid "Setup collectd" -msgstr "" +msgstr "Richte collectd ein" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" @@ -959,15 +967,15 @@ msgstr "Shapingklassen überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:33 msgid "Show max values instead of averages" -msgstr "" +msgstr "Zeige Maximal statt Durschnittswerte" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:22 msgid "Simple CPU frequency monitoring enabled" -msgstr "" +msgstr "Vereinfachte Überwachung der CPU-Frequenz aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:33 msgid "Socket %s active" -msgstr "" +msgstr "Socket %s aktiv" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:14 msgid "Socket file" @@ -980,7 +988,7 @@ msgstr "Socket-Nutzergruppe" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:14 msgid "Socket path" -msgstr "" +msgstr "Socket-Pfad" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:23 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:24 @@ -1002,11 +1010,11 @@ msgstr "Bestimmt die zu sammelnden Informationen der globalen Topologie." #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/splash_leases.js:9 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" -msgstr "" +msgstr "Splash Leases" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" -msgstr "" +msgstr "Splash Leases Plugin-Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:201 #: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:3 @@ -1035,7 +1043,7 @@ msgstr "gespeicherte Zeitspannen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js:23 msgid "Storing CSV data in %s" -msgstr "" +msgstr "Speichere CSV-Daten in %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/load.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 @@ -1065,12 +1073,13 @@ msgstr "Tabelle" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." -msgstr "" +msgstr "Das APC USV Plugin sammelt Statistiken über APC USV." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -"Das NUT-Plugin liest Informationen über Unterbrechungsfreie Stromversorgungen" +"Das NUT-Plugin liest Informationen über unterbrechungsfreie " +"Stromversorgungen." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" @@ -1085,14 +1094,16 @@ msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" +"Das OpenVPN-Plugin sammelt Informationen über den aktuellen VPN-" +"Verbindungsstatus." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:131 msgid "The chain name must not contain spaces" -msgstr "" +msgstr "Der Name der Chain darf kein Leerzeichen enthalten" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:152 msgid "The comment to match must not contain spaces" -msgstr "" +msgstr "Der zu vergleichende Kommentar darf keine Leerzeichen beinhalten" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" @@ -1153,7 +1164,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." -msgstr "" +msgstr "Das Entropie-Plugin sammelt Statistiken über verfügbare Entropie." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" @@ -1165,7 +1176,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:79 msgid "The instance name must not contain spaces" -msgstr "" +msgstr "Der Instanzname darf keine Leerzeichen beinhalten" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" @@ -1243,7 +1254,7 @@ msgid "" "memory usage of selected processes." msgstr "" "Das Prozess-Plugin sammelt Statistiken über Prozess-Zeit, Speicher-Fehler " -"und Speicher-Verbrauch ausgewählter Prozesse" +"und Speicher-Verbrauch ausgewählter Prozesse." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" @@ -1263,12 +1274,16 @@ msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" +"Das Sensorik-Plugin nutzt das 'Linux Sensors Framework' um " +"Umgebungsstatistiken zu sammeln." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:6 msgid "" "The splash leases plugin uses libuci to collect statistics about splash " "leases." msgstr "" +"Das Splash-Leases-Plugin nutzt libuci um Statistiken über Splash-Leases zu " +"sammeln." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" @@ -1284,6 +1299,9 @@ msgid "" "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" +"Das Thermik Plugin überwacht die Temperatur des Systems. Daten werden " +"typischer Weiße von /sys/class/thermal/*/temp gelesen ( '*' beschreibt das " +"zu lesende, thermische Gerät, wie z.B. thermal_zone1 )" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" @@ -1295,28 +1313,28 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." -msgstr "" +msgstr "Das Laufzeit Plugin sammelt Statistiken über die Laufzeit des Systems." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:167 msgid "There is no RRD data available yet to render graphs." -msgstr "" +msgstr "Es sind noch keine RRD-Daten verfügbar um Diagramme zu rendern." #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/thermal.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" -msgstr "" +msgstr "Thermik" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" -msgstr "" +msgstr "Thermik Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." -msgstr "" +msgstr "Das Plugin sammelt Statistiken über Prozessorkontextwechsel." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." -msgstr "" +msgstr "Das Plugin sammelt Statistiken über Prozessorfrequenzskalierung." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:32 msgid "" @@ -1349,7 +1367,7 @@ msgstr "Einstellungen des USV-Plugins" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:13 msgid "UPS name in NUT ups@host format" -msgstr "Name der USV in NUT im Format usv@host " +msgstr "Name der USV in NUT im Format usv@host" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" @@ -1370,15 +1388,15 @@ msgstr "Laufzeit" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" -msgstr "" +msgstr "Laufzeit Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 msgid "Uptime monitoring enabled" -msgstr "" +msgstr "Überwachung der Laufzeit aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:23 msgid "Use improved naming schema" -msgstr "" +msgstr "Verwende das erweitertes Namensschema" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:66 msgid "Used PID file" @@ -1395,24 +1413,26 @@ msgstr "Schnittstellen detailliert überwachen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "When none selected, all disks will be monitored." -msgstr "" +msgstr "Sofern nichts ausgewählt, werden alle Festplatten überwacht." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 msgid "When none selected, all interfaces will be monitored." -msgstr "" +msgstr "Sofern nichts ausgwählt, werden alle Schnittstellen überwacht." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" +"Sofern auf 'true' gesetzt, wird je Prozesszustand berichtet (System, User, " +"Idle)" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:13 msgid "When set to true, we request absolute values" -msgstr "" +msgstr "Wenn auf 'true' gesetzt, werden absolute Werte angefragt" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:26 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:17 msgid "When set to true, we request percentage values" -msgstr "" +msgstr "Sofern auf 'true' gesetzt, fordern wir prozentuale Werte" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 @@ -1425,60 +1445,62 @@ msgstr "Wireless-iwinfo Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:95 msgid "Writing *.rrd files to %s" -msgstr "" +msgstr "Schreibe *.rrd Dateien nach %s" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:168 msgid "" "You need to configure <em>collectd</em> to gather data into <em>.rrd</em> " "files." msgstr "" +"<em>collectd</em> muss konfiguriert sein, um Daten in <em>.rrd</em>-Dateien " +"zu sammeln." #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 msgid "cURL plugin enabled" -msgstr "" +msgstr "cUrl Plugin aktiviert" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/curl.js:9 #: 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:5 msgid "cUrl Plugin Configuration" -msgstr "" +msgstr "cUrl Plugin Konfiguration" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:137 msgid "none" -msgstr "" +msgstr "keine" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:103 msgid "one device" msgid_plural "%d devices" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ein Gerät" +msgstr[1] "%d Geräte" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:105 msgid "one filesystem type" msgid_plural "%d filesystem types" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ein Dateisystemtyp" +msgstr[1] "%d Dateisystemtypen" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:37 msgid "one local port" msgid_plural "%d local ports" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ein lokaler Port" +msgstr[1] "% lokale Ports" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:104 msgid "one mount" msgid_plural "%d mounts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ein Einhängepunkt" +msgstr[1] "%d Einhängepunkte" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:38 msgid "one remote port" msgid_plural "%d remote ports" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ein ferner Port" +msgstr[1] "%d ferne Ports" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "reduces rrd size" diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index 5bb7a259df..0c581c3b75 100644 --- a/applications/luci-app-statistics/po/el/statistics.po +++ b/applications/luci-app-statistics/po/el/statistics.po @@ -51,7 +51,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -220,11 +220,11 @@ msgstr "Χρήση Χώρου στον δίσκο" msgid "Disk Usage" msgstr "Χρήση Δίσκου" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Εμφάνιση χρονικού εύρους »" @@ -517,7 +517,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -621,7 +621,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -647,7 +647,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -671,9 +671,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -703,7 +703,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index 19fc380049..31621ae104 100644 --- a/applications/luci-app-statistics/po/en/statistics.po +++ b/applications/luci-app-statistics/po/en/statistics.po @@ -50,7 +50,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -217,11 +217,11 @@ msgstr "Disk Space Usage" msgid "Disk Usage" msgstr "Disk Usage" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Display timespan »" @@ -521,7 +521,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -625,7 +625,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -651,7 +651,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -675,9 +675,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -707,7 +707,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index cdfb8903ea..37f3256593 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/statistics.po @@ -51,7 +51,7 @@ msgstr "Familia de direcciones" msgid "Aggregate number of connected users" msgstr "Agregar número de usuarios conectados" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "Aplicar intervalo »" @@ -220,11 +220,11 @@ msgstr "Uso de espacio en disco" msgid "Disk Usage" msgstr "Uso de disco" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Mostrar Host »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Mostrar lapso de tiempo »" @@ -525,7 +525,7 @@ msgstr "Monitoreo de memoria activado" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -629,7 +629,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "Monitoreo de todas las interfaces menos una" msgstr[1] "Monitoreo de todas las interfaces excepto %d" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "Monitoreo de todas menos una interrupción" @@ -655,7 +655,7 @@ msgstr "Monitoreo de todos excepto %s, %s, %s" msgid "Monitoring all interfaces" msgstr "Monitorear todas las interfaces" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "Monitorear todas las interrupciones" @@ -679,9 +679,9 @@ msgstr "Monitoreo de todas las zonas térmicas excepto %s" msgid "Monitoring local listen ports" msgstr "Monitoreo de puertos de escucha locales" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "Monitoreo de una instancia de OpenVPN" msgstr[1] "Monitoreo de %d instancias OpenVPN" @@ -711,7 +711,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "Monitoreo de una interfaz" msgstr[1] "Monitoreo de %d interfaces" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "Monitorear una interrupción" @@ -945,7 +945,8 @@ msgstr "Puerto del servidor" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:19 msgid "Set the maximum size for datagrams sent over the network" -msgstr "Establecer el tamaño máximo para datagramas enviados a través de la red" +msgstr "" +"Establecer el tamaño máximo para datagramas enviados a través de la red" #: applications/luci-app-statistics/root/usr/share/luci/menu.d/luci-app-statistics.json:23 msgid "Setup" diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index d894cd3138..c7ac09c9cb 100644 --- a/applications/luci-app-statistics/po/fr/statistics.po +++ b/applications/luci-app-statistics/po/fr/statistics.po @@ -51,7 +51,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -218,11 +218,11 @@ msgstr "Utilisation de l'espace-disque" msgid "Disk Usage" msgstr "Espace-disque" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Période affichée »" @@ -523,7 +523,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -627,7 +627,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -653,7 +653,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -677,9 +677,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -709,7 +709,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index a8fee1d130..538c05ec21 100644 --- a/applications/luci-app-statistics/po/he/statistics.po +++ b/applications/luci-app-statistics/po/he/statistics.po @@ -50,7 +50,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -217,11 +217,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -514,7 +514,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -618,7 +618,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -644,7 +644,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -668,9 +668,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -700,7 +700,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/hi/statistics.po b/applications/luci-app-statistics/po/hi/statistics.po index 088ed3c844..f156116c31 100644 --- a/applications/luci-app-statistics/po/hi/statistics.po +++ b/applications/luci-app-statistics/po/hi/statistics.po @@ -51,7 +51,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -218,11 +218,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -515,7 +515,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -619,7 +619,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -645,7 +645,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -669,9 +669,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -701,7 +701,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index cf4580330b..82ad589b2b 100644 --- a/applications/luci-app-statistics/po/hu/statistics.po +++ b/applications/luci-app-statistics/po/hu/statistics.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-02-15 09:27+0000\n" -"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n" +"PO-Revision-Date: 2020-03-31 13:27+0000\n" +"Last-Translator: Tamas Szanto <taszanto@gmail.com>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/hu/>\n" "Language: hu\n" @@ -10,7 +10,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.0-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -49,7 +49,7 @@ msgstr "Címcsalád" msgid "Aggregate number of connected users" msgstr "Kapcsolódott felhasználók összesített száma" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -217,11 +217,11 @@ msgstr "Lemezterület-használat" msgid "Disk Usage" msgstr "Lemezhasználat" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Gép megjelenítése »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Időszak megjelenítése »" @@ -526,7 +526,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -630,7 +630,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -656,7 +656,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -680,9 +680,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -712,7 +712,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" @@ -820,7 +820,7 @@ msgstr "Kimeneti bővítmények" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:57 msgid "Overview" -msgstr "" +msgstr "Áttekintés" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:17 msgid "Percent values" diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index 1e990ee34a..a1cd52da03 100644 --- a/applications/luci-app-statistics/po/it/statistics.po +++ b/applications/luci-app-statistics/po/it/statistics.po @@ -51,7 +51,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -218,11 +218,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -522,7 +522,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -626,7 +626,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -652,7 +652,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -676,9 +676,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -708,7 +708,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index 0fcb20d0c6..4802d885fb 100644 --- a/applications/luci-app-statistics/po/ja/statistics.po +++ b/applications/luci-app-statistics/po/ja/statistics.po @@ -51,7 +51,7 @@ msgstr "アドレス ファミリ" msgid "Aggregate number of connected users" msgstr "接続ユーザー数の総計" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "間隔を適用 »" @@ -220,11 +220,11 @@ msgstr "ディスク スペース使用量" msgid "Disk Usage" msgstr "ディスクの使用" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "ホストを表示 »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "期間表示 »" @@ -525,7 +525,7 @@ msgstr "メモリー監視が有効" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -625,7 +625,7 @@ msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" msgstr[0] "%d 個を除いた全インターフェースを監視中" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "%d 個を除いた全割り込みを監視中" @@ -649,7 +649,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "全インターフェースを監視中" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "全割り込みを監視中" @@ -673,9 +673,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "ローカルの待ち受けポートを監視中" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:20 @@ -700,7 +700,7 @@ msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" msgstr[0] "%d 個のインターフェースを監視中" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "%d 個の割り込みを監視中" diff --git a/applications/luci-app-statistics/po/ko/statistics.po b/applications/luci-app-statistics/po/ko/statistics.po index 1f223055c8..eb4c6fba39 100644 --- a/applications/luci-app-statistics/po/ko/statistics.po +++ b/applications/luci-app-statistics/po/ko/statistics.po @@ -51,7 +51,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -218,11 +218,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -515,7 +515,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -615,7 +615,7 @@ msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -639,7 +639,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -663,9 +663,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:20 @@ -690,7 +690,7 @@ msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/mr/statistics.po b/applications/luci-app-statistics/po/mr/statistics.po index 826b0f053b..d15c2c66cf 100644 --- a/applications/luci-app-statistics/po/mr/statistics.po +++ b/applications/luci-app-statistics/po/mr/statistics.po @@ -51,7 +51,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -218,11 +218,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -515,7 +515,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -619,7 +619,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -645,7 +645,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -669,9 +669,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -701,7 +701,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index 6eceb252cf..16bb73a0cf 100644 --- a/applications/luci-app-statistics/po/ms/statistics.po +++ b/applications/luci-app-statistics/po/ms/statistics.po @@ -51,7 +51,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -218,11 +218,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -515,7 +515,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -615,7 +615,7 @@ msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -639,7 +639,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -663,9 +663,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:20 @@ -690,7 +690,7 @@ msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/nb_NO/statistics.po b/applications/luci-app-statistics/po/nb_NO/statistics.po index 3ff6ad3b03..b63df4cdc8 100644 --- a/applications/luci-app-statistics/po/nb_NO/statistics.po +++ b/applications/luci-app-statistics/po/nb_NO/statistics.po @@ -47,7 +47,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -214,11 +214,11 @@ msgstr "Disk Forbruk" msgid "Disk Usage" msgstr "Disk Anvendelse" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Vis tidsperiode »" @@ -516,7 +516,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -620,7 +620,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -646,7 +646,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -670,9 +670,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -702,7 +702,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index 9c3c58af5f..282ef4b838 100644 --- a/applications/luci-app-statistics/po/pl/statistics.po +++ b/applications/luci-app-statistics/po/pl/statistics.po @@ -52,7 +52,7 @@ msgstr "Rodzina adresów" msgid "Aggregate number of connected users" msgstr "Łączna liczba podłączonych użytkowników" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "Zastosuj interwał »" @@ -220,11 +220,11 @@ msgstr "Zużycie przestrzeni dyskowej" msgid "Disk Usage" msgstr "Użycie dysku" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Wyświetl Host >" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Przedział czasu wyświetlania »" @@ -528,7 +528,7 @@ msgstr "Monitorowanie pamięci włączone" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -636,7 +636,7 @@ msgstr[0] "Monitorowanie wszystkich interfejsów oprócz jednego" msgstr[1] "Monitorowanie wszystkich interfejsów oprócz %d" msgstr[2] "Monitorowanie wszystkich interfejsów oprócz %d" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "Monitorowanie wszystkich przerwań z wyjątkiem jednego" @@ -664,7 +664,7 @@ msgstr "Monitorowanie wszystkich z wyjątkiem %s, %s, %s" msgid "Monitoring all interfaces" msgstr "Monitorowanie wszystkich interfejsów" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "Monitorowanie wszystkich przerwań" @@ -688,9 +688,9 @@ msgstr "Monitorowanie wszystkich stref termicznych z wyjątkiem %s" msgid "Monitoring local listen ports" msgstr "Monitorowanie lokalnych portów nasłuchiwania" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "Monitorowanie jednej instancji OpenVPN" msgstr[1] "Monitorowanie %d instancji OpenVPN" msgstr[2] "Monitorowanie innych instancji OpenVPN" @@ -725,7 +725,7 @@ msgstr[0] "Monitorowanie jednego interfejsu" msgstr[1] "Monitorowanie %d interfejsów" msgstr[2] "Monitorowanie innych interfejsów" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "Monitorowanie jednego przerwania" diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index b322f5b841..4de92cbacd 100644 --- a/applications/luci-app-statistics/po/pt/statistics.po +++ b/applications/luci-app-statistics/po/pt/statistics.po @@ -51,7 +51,7 @@ msgstr "Família de endereços" msgid "Aggregate number of connected users" msgstr "Numero agregado de utilizadores conectados" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -219,11 +219,11 @@ msgstr "Utilização de espaço em disco" msgid "Disk Usage" msgstr "Utilização do Disco" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Mostrar Host »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Mostrar intervalo »" @@ -527,7 +527,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -631,7 +631,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -657,7 +657,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -681,9 +681,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -713,7 +713,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/pt_BR/statistics.po b/applications/luci-app-statistics/po/pt_BR/statistics.po index 7380460901..9feb6836b8 100644 --- a/applications/luci-app-statistics/po/pt_BR/statistics.po +++ b/applications/luci-app-statistics/po/pt_BR/statistics.po @@ -51,7 +51,7 @@ msgstr "Família de endereços" msgid "Aggregate number of connected users" msgstr "Numero agregado de usuários conectados" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "Aplicar intervalo »" @@ -219,11 +219,11 @@ msgstr "Utilização de espaço em disco" msgid "Disk Usage" msgstr "Utilização do Disco" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Mostrar Host" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Mostrar intervalo »" @@ -528,7 +528,7 @@ msgstr "Monitoramento de memória ativado" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -632,7 +632,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "Monitorando tudo, menos uma interface" msgstr[1] "Monitorando tudo, menos %d interfaces" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "Monitorando tudo, menos uma interrupção" @@ -658,7 +658,7 @@ msgstr "Monitorando todos exceto %s, %s, %s" msgid "Monitoring all interfaces" msgstr "Monitorando todas as interfaces" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "Monitorando todas as interrupções" @@ -682,9 +682,9 @@ msgstr "Monitorando todas as zonas térmicas, exceto %s" msgid "Monitoring local listen ports" msgstr "Monitorando portas locais de escuta" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "Monitorando uma instância openVPN" msgstr[1] "Monitorando %d instâncias openVPN" @@ -714,7 +714,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "Monitorando uma interface" msgstr[1] "Monitorando %d interfaces" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "Monitorando uma interrupção" diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index 23b8696810..255382117b 100644 --- a/applications/luci-app-statistics/po/ro/statistics.po +++ b/applications/luci-app-statistics/po/ro/statistics.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-01-14 15:22+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2020-03-29 21:21+0000\n" +"Last-Translator: Cristian Ionescu <joker_op@yahoo.com>\n" "Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/ro/>\n" "Language: ro\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.0-dev\n" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/apcups.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 @@ -52,7 +52,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -219,11 +219,11 @@ msgstr "Utilizarea spatiului pe disc" msgid "Disk Usage" msgstr "Utilizarea discului" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -409,7 +409,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:49 msgid "Hostname" -msgstr "Numele de host" +msgstr "Numele gazdei ( hostname )" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "IP or hostname where to get the txtinfo output from" @@ -516,7 +516,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -624,7 +624,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -652,7 +652,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -676,9 +676,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -713,7 +713,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" @@ -748,7 +748,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" -msgstr "" +msgstr "Nume" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 @@ -842,7 +842,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:17 msgid "Port" -msgstr "" +msgstr "Port" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:18 msgid "Port for apcupsd communication" diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index 3ff50fded7..461ed20b64 100644 --- a/applications/luci-app-statistics/po/ru/statistics.po +++ b/applications/luci-app-statistics/po/ru/statistics.po @@ -53,7 +53,7 @@ msgstr "Тип адреса" msgid "Aggregate number of connected users" msgstr "Общее число подключенных пользователей" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "Применить интервал »" @@ -222,11 +222,11 @@ msgstr "Использовано места на диске" msgid "Disk Usage" msgstr "Использование диска" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Показать хост »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Показать за промежуток »" @@ -530,7 +530,7 @@ msgstr "Мониторинг памяти включён" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -638,7 +638,7 @@ msgstr[0] "Мониторинг всех интерфейсов, кроме од msgstr[1] "Мониторинг всех интерфейсов, кроме %d" msgstr[2] "Мониторинг всех интерфейсов, кроме %d" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "Мониторинг всех прерываний, кроме одного" @@ -666,7 +666,7 @@ msgstr "Мониторинг всего, кроме %s, %s, %s" msgid "Monitoring all interfaces" msgstr "Мониторинг всех интерфейсов" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "Мониторинг всех прерываний" @@ -690,9 +690,9 @@ msgstr "Мониторинг всех термальных зон, кроме %s msgid "Monitoring local listen ports" msgstr "Мониторинг локальных прослушиваемых портов" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "Мониторинг одного экземпляра OpenVPN" msgstr[1] "Мониторинг %d экземпляров OpenVPN" msgstr[2] "Мониторинг %d экземпляров OpenVPN" @@ -727,7 +727,7 @@ msgstr[0] "Мониторинг одного интерфейса" msgstr[1] "Мониторинг %d интерфейсов" msgstr[2] "Мониторинг %d интерфейсов" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "Мониторинг одного прерывания" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 2311ea88b5..095e35972f 100644 --- a/applications/luci-app-statistics/po/sk/statistics.po +++ b/applications/luci-app-statistics/po/sk/statistics.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-03-09 14:33+0000\n" -"Last-Translator: Chaoos <all@chaoos.com>\n" +"PO-Revision-Date: 2020-04-04 17:34+0000\n" +"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsstatistics/sk/>\n" "Language: sk\n" @@ -49,7 +49,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -216,11 +216,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -346,7 +346,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iptables.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" -msgstr "" +msgstr "Brána Firewall" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ip6tables.js:6 msgid "Firewall (IPv6)" @@ -406,7 +406,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:49 msgid "Hostname" -msgstr "" +msgstr "Názov hostiteľa" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "IP or hostname where to get the txtinfo output from" @@ -431,7 +431,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/interface.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" -msgstr "" +msgstr "Rozhrania" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/irq.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 @@ -500,7 +500,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/memory.js:9 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" -msgstr "" +msgstr "Pamäť" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" @@ -513,7 +513,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -621,7 +621,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -649,7 +649,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -673,9 +673,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -710,7 +710,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" @@ -745,7 +745,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" -msgstr "" +msgstr "Názov" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/netlink.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 @@ -758,7 +758,7 @@ msgstr "" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" -msgstr "" +msgstr "Sieť" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" @@ -818,7 +818,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:57 msgid "Overview" -msgstr "" +msgstr "Prehľad" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js:17 msgid "Percent values" @@ -827,7 +827,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/ping.js:6 #: 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:5 msgid "Ping Plugin Configuration" @@ -839,7 +839,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:17 msgid "Port" -msgstr "" +msgstr "Port" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:18 msgid "Port for apcupsd communication" @@ -1016,7 +1016,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js:125 msgid "Status" -msgstr "" +msgstr "Stav" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:13 msgid "Storage directory" @@ -1062,7 +1062,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:84 msgid "Table" -msgstr "" +msgstr "Tabuľka" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." @@ -1313,7 +1313,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/uptime.js:14 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" -msgstr "" +msgstr "Doba spustenia" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" @@ -1364,7 +1364,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/iwinfo.js:6 #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" -msgstr "" +msgstr "Bezdrôtová sieť" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index 913e4992e8..48552baf59 100644 --- a/applications/luci-app-statistics/po/sv/statistics.po +++ b/applications/luci-app-statistics/po/sv/statistics.po @@ -49,7 +49,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -216,11 +216,11 @@ msgstr "Användning av diskutrymme" msgid "Disk Usage" msgstr "Användning av disk" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "Visa värd »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Visa tidsspann »" @@ -513,7 +513,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -617,7 +617,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -643,7 +643,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -667,9 +667,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -699,7 +699,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index 89f772f256..1e866cf55a 100644 --- a/applications/luci-app-statistics/po/templates/statistics.pot +++ b/applications/luci-app-statistics/po/templates/statistics.pot @@ -38,7 +38,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -205,11 +205,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -502,7 +502,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -606,7 +606,7 @@ msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -632,7 +632,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -656,9 +656,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" @@ -688,7 +688,7 @@ msgid_plural "Monitoring %d interfaces" msgstr[0] "" msgstr[1] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index 2f00dcd4c2..5dde7f8dea 100644 --- a/applications/luci-app-statistics/po/tr/statistics.po +++ b/applications/luci-app-statistics/po/tr/statistics.po @@ -49,7 +49,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -216,11 +216,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -513,7 +513,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -613,7 +613,7 @@ msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -637,7 +637,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -661,9 +661,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:20 @@ -688,7 +688,7 @@ msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index f52be3918e..c56a8fdff8 100644 --- a/applications/luci-app-statistics/po/uk/statistics.po +++ b/applications/luci-app-statistics/po/uk/statistics.po @@ -52,7 +52,7 @@ msgstr "Тип адреси" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -219,11 +219,11 @@ msgstr "" msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "" @@ -516,7 +516,7 @@ msgstr "Моніторинг памʼяті увімкнуто" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -624,7 +624,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -652,7 +652,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -676,9 +676,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -713,7 +713,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index de82b84b5e..327ea3c234 100644 --- a/applications/luci-app-statistics/po/vi/statistics.po +++ b/applications/luci-app-statistics/po/vi/statistics.po @@ -53,7 +53,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -220,11 +220,11 @@ msgstr "Khoảng trống trên đĩa" msgid "Disk Usage" msgstr "Disk Usage" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "Display timespan" @@ -524,7 +524,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -624,7 +624,7 @@ msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -648,7 +648,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -672,9 +672,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:20 @@ -699,7 +699,7 @@ msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/zh_Hans/statistics.po b/applications/luci-app-statistics/po/zh_Hans/statistics.po index 6439396472..fa2bc9ba91 100644 --- a/applications/luci-app-statistics/po/zh_Hans/statistics.po +++ b/applications/luci-app-statistics/po/zh_Hans/statistics.po @@ -55,7 +55,7 @@ msgstr "地址簇" msgid "Aggregate number of connected users" msgstr "连接用户总数" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -222,11 +222,11 @@ msgstr "磁盘空间使用情况" msgid "Disk Usage" msgstr "磁盘使用情况" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "显示主机" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "显示时间段" @@ -523,7 +523,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -623,7 +623,7 @@ msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -647,7 +647,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -671,9 +671,9 @@ msgstr "" msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:20 @@ -698,7 +698,7 @@ msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" diff --git a/applications/luci-app-statistics/po/zh_Hant/statistics.po b/applications/luci-app-statistics/po/zh_Hant/statistics.po index ea09e3cceb..742335e2f3 100644 --- a/applications/luci-app-statistics/po/zh_Hant/statistics.po +++ b/applications/luci-app-statistics/po/zh_Hant/statistics.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2020-03-09 14:34+0000\n" +"PO-Revision-Date: 2020-04-06 12:20+0000\n" "Last-Translator: Trevor <wowpapa3232@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsstatistics/zh_Hant/>\n" @@ -54,7 +54,7 @@ msgstr "" msgid "Aggregate number of connected users" msgstr "連線使用者總數" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:220 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:225 msgid "Apply interval »" msgstr "" @@ -68,7 +68,7 @@ msgstr "基本目錄" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" -msgstr "基本監控" +msgstr "基本監測" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js:24 msgid "Basic process monitoring enabled" @@ -97,7 +97,7 @@ msgstr "CPU 插件設定" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 msgid "CPU monitoring is enabled" -msgstr "" +msgstr "CPU 監測已啟用" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" @@ -221,17 +221,17 @@ msgstr "磁碟空間使用情況" msgid "Disk Usage" msgstr "磁碟使用情況" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:208 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:209 msgid "Display Host »" msgstr "顯示主機 »" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:214 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:217 msgid "Display timespan »" msgstr "顯示時間段 »" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/graphs.js:192 msgid "Do not refresh" -msgstr "" +msgstr "請勿重整" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" @@ -243,7 +243,7 @@ msgstr "電子郵件" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:14 msgid "Empty value = monitor all" -msgstr "留空 = 監控所有" +msgstr "留空 = 監測所有" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js:20 msgid "Enable" @@ -407,7 +407,7 @@ msgstr "" msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." -msgstr "在這裡,您可以定義各種監控 iptables 規則臨界值。" +msgstr "在這裡,您可以定義各種監測 iptables 規則臨界值。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:13 msgid "Host" @@ -457,7 +457,7 @@ msgstr "Iptables 插件設定" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:14 msgid "Leave unselected to automatically determine interfaces to monitor." -msgstr "自動保留對未選中介面的監控。" +msgstr "自動保留對未選中介面的監測。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:39 msgid "Listen host" @@ -522,7 +522,7 @@ msgstr "記憶體監測已啟用" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:88 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:31 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js:19 -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:42 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:44 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:24 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:46 @@ -536,7 +536,7 @@ msgstr "監測所有本地監聽埠" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:14 msgid "Monitor device(s) / thermal zone(s)" -msgstr "監控裝置/溫感區域" +msgstr "監測裝置/溫感區域" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js:14 msgid "Monitor devices" @@ -595,7 +595,7 @@ msgstr "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js:28 msgid "Monitoring APC UPS at host %s, port %d" msgid_plural "Monitoring APC UPS at hosts %s, port %d" -msgstr[0] "" +msgstr[0] "正在主機位置 %s 阜號 %d 的位置上監測 APC UPS" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:30 msgid "Monitoring DNS queries on all interfaces" @@ -622,7 +622,7 @@ msgid "Monitoring all but one interface" msgid_plural "Monitoring all but %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 msgid "Monitoring all but one interrupt" msgid_plural "Monitoring all but %d interrupts" msgstr[0] "" @@ -646,7 +646,7 @@ msgstr "" msgid "Monitoring all interfaces" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:51 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:53 msgid "Monitoring all interrupts" msgstr "" @@ -660,19 +660,19 @@ msgstr "監測所有感測器" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:49 msgid "Monitoring all thermal zones" -msgstr "" +msgstr "監測所有溫控區" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js:45 msgid "Monitoring all thermal zones except %s" -msgstr "" +msgstr "監測除 %s 外的所有溫控區" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:41 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:43 msgid "Monitoring one OpenVPN instance" -msgid_plural "Monitoring %d OpenVPN instancees" +msgid_plural "Monitoring %d OpenVPN instances" msgstr[0] "" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js:20 @@ -697,7 +697,7 @@ msgid "Monitoring one interface" msgid_plural "Monitoring %d interfaces" msgstr[0] "" -#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:55 +#: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js:57 msgid "Monitoring one interrupt" msgid_plural "Monitoring %d interrupts" msgstr[0] "" @@ -739,7 +739,7 @@ msgstr "Netlink 插件配置" #: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" -msgstr "Network" +msgstr "網路" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" @@ -884,7 +884,7 @@ msgstr "行/RRA" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:160 msgid "Rule monitoring enabled" -msgstr "規則監控已啟用" +msgstr "規則監測已啟用" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:23 #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js:43 @@ -939,7 +939,7 @@ msgstr "設定 collectd" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" -msgstr "整形類監控" +msgstr "整形類監測" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:33 msgid "Show max values instead of averages" @@ -1116,8 +1116,9 @@ msgid "" "to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can " "be used in other ways as well." msgstr "" -"郵件插件建立一個 unix 套接字用於為 Collectd 守護程序傳送統計資訊到電子郵件系統。這個插件主要目的是結合使用 " -"Mail::SpamAssasin::Pulgin::Collectd,但可以用在其他方面。" +"郵件插件建立一個 unix 套接字用於為 Collectd 守護程序傳送統計資訊到電子郵件系" +"統。這個插件主要目的是結合使用 Mail::SpamAssasin::Pulgin::Collectd,但可以用" +"在其他方面。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." @@ -1127,7 +1128,7 @@ msgstr "entropy 插件收集可用熵的統計資訊。" 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 插件用於當某些監控值已到達閾值時,啟動外部指令讀值或通知外部程式。" +msgstr "exec 插件用於當某些監測值已到達閾值時,啟動外部指令讀值或通知外部程式。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js:79 msgid "The instance name must not contain spaces" @@ -1148,7 +1149,7 @@ msgstr "iptables 插件將監測選定防火牆規則和收集關於每個規則 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 "irq 插件用於監控選定中斷的每秒鐘產生的中斷數。如果沒有中斷被選中,則表示對所有中斷進行監測。" +msgstr "irq 插件用於監測選定中斷的每秒鐘產生的中斷數。如果沒有中斷被選中,則表示對所有中斷進行監測。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" @@ -1177,8 +1178,9 @@ 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 "" -"network 插件提供了基於網路的不同 Collectd 例項。Collectd 可以工作在客戶端和服務器兩個模式。在客戶端模式下收集本地資訊," -"然後轉移到一個 Collectd 伺服器例項中,在伺服器模式將從其他主機收集資訊。" +"network 插件提供了基於網路的不同 Collectd 例項。Collectd 可以工作在客戶端和服" +"務器兩個模式。在客戶端模式下收集本地資訊,然後轉移到一個 Collectd 伺服器例項" +"中,在伺服器模式將從其他主機收集資訊。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" @@ -1199,8 +1201,9 @@ msgid "" "values will result in a very high memory consumption in the temporary " "directory. This can render the device unusable!</strong>" msgstr "" -"rrdtool 插件將收集資料以圖表的形式儲存在 RRD 資料庫檔案中。<br /><br " -"/><strong>警告:錯誤的引數設定,將導致非常高的臨時記憶體消耗。這可能會使裝置無法使用!</strong>" +"rrdtool 插件將收集資料以圖表的形式儲存在 RRD 資料庫檔案中。<br /><br /" +"><strong>警告:錯誤的引數設定,將導致非常高的臨時記憶體消耗。這可能會使裝置無" +"法使用!</strong>" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" @@ -1226,7 +1229,7 @@ msgid "" "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -"溫感插件將會監控系統溫度。資料主要取自 /sys/class/thermal/*/temp ('*' " +"溫感插件將會監測系統溫度。資料主要取自 /sys/class/thermal/*/temp ('*' " "表示溫感裝置的名字,例如:thermal_zone1)" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 @@ -1312,7 +1315,7 @@ msgstr "上線時間插件設定" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 msgid "Uptime monitoring enabled" -msgstr "上線時間監控已啟用" +msgstr "上線時間監測已啟用" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:23 msgid "Use improved naming schema" @@ -1333,11 +1336,11 @@ msgstr "詳細監測" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "When none selected, all disks will be monitored." -msgstr "未選取時將監控所有硬碟。" +msgstr "未選取時將監測所有硬碟。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 msgid "When none selected, all interfaces will be monitored." -msgstr "未選取時將監控所有介面。" +msgstr "未選取時將監測所有介面。" #: applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" |