diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-02-08 22:12:17 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-02-12 11:59:41 +0100 |
commit | e7d22dce50b4a0c50c9f8ae8c18eeb5a37a51b3e (patch) | |
tree | 19a86aed11fae3741f8aa4f773d979f30ba13a1d | |
parent | 2df2958fd6f0206f56116e88693cb7b748e736fa (diff) |
luci-app-statistics: convert collectd configuration to client side views
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
100 files changed, 21349 insertions, 12600 deletions
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 new file mode 100644 index 000000000..6ba571e8b --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/collectd.js @@ -0,0 +1,160 @@ +'use strict'; +'require fs'; +'require ui'; +'require uci'; +'require form'; + +return L.view.extend({ + load: function() { + return Promise.all([ + fs.list('/usr/lib/collectd'), + fs.list('/usr/share/luci/statistics/plugins') + ]).then(function(data) { + var installed = data[0], + plugins = data[1], + tasks = []; + + for (var i = 0; i < plugins.length; i++) { + tasks.push(fs.read_direct('/usr/share/luci/statistics/plugins/' + plugins[i].name, 'json').then(L.bind(function(name, spec) { + return L.resolveDefault(L.require('view.statistics.plugins.' + name)).then(function(form) { + return { + name: name, + spec: spec, + form: form, + installed: installed.filter(function(e) { return e.name == name + '.so' }).length > 0 + }; + }); + }, this, plugins[i].name.replace(/\.json$/, '')))); + } + + return Promise.all(tasks); + }); + }, + + render: function(plugins) { + var m, s, o; + + for (var i = 0; i < plugins.length; i++) + plugins[plugins[i].name] = plugins[i]; + + m = new form.Map('luci_statistics', _('Collectd Settings')); + m.tabbed = true; + + s = m.section(form.NamedSection, 'collectd', 'statistics', _('Collectd Settings')); + + o = s.option(form.Value, 'Hostname', _('Hostname')); + o.load = function() { + return fs.trimmed('/proc/sys/kernel/hostname').then(L.bind(function(name) { + this.placeholder = name; + return uci.get('collectd', 'statistics', 'hostname'); + }, this)); + }; + + o = s.option(form.Value, 'BaseDir', _('Base Directory')); + o.default = '/var/run/collectd'; + + o = s.option(form.Value, 'Include', _('Directory for sub-configurations')); + o.default = '/etc/collectd/conf.d/*.conf'; + + o = s.option(form.Value, 'PluginDir', _('Directory for collectd plugins')); + o.default = '/usr/lib/collectd/'; + + o = s.option(form.Value, 'PIDFile', _('Used PID file')); + o.default = '/var/run/collectd.pid'; + + o = s.option(form.Value, 'TypesDB', _('Datasets definition file')); + o.default = '/etc/collectd/types.db'; + + o = s.option(form.Value, 'Interval', _('Data collection interval'), _('Seconds')); + o.default = '60'; + + o = s.option(form.Value, 'ReadThreads', _('Number of threads for data collection')); + o.default = '5'; + + o = s.option(form.Flag, 'FQDNLookup', _('Try to lookup fully qualified hostname')); + o.default = o.disabled; + o.optional = true; + o.depends('Hostname', ''); + + var groupNames = [ + 'general', _('General plugins'), + 'network', _('Network plugins'), + 'output', _('Output plugins') + ]; + + for (var i = 0; i < groupNames.length; i += 2) { + s = m.section(form.GridSection, 'statistics_' + groupNames[i], groupNames[i + 1]); + + s.cfgsections = L.bind(function(category) { + return this.map.data.sections('luci_statistics', 'statistics') + .map(function(s) { return s['.name'] }) + .filter(function(section_id) { + var name = section_id.replace(/^collectd_/, ''), + plugin = plugins[name]; + + return (section_id.indexOf('collectd_') == 0 && plugin != null && + plugin.installed && plugin.spec.category == category); + }); + }, s, groupNames[i]); + + s.sectiontitle = function(section_id) { + var name = section_id.replace(/^collectd_/, ''), + plugin = plugins[name]; + + return plugin ? plugin.spec.title : name + }; + + o = s.option(form.Flag, 'enable', _('Enabled')); + o.editable = true; + o.modalonly = false; + + o = s.option(form.DummyValue, '_dummy', _('Status')); + o.width = '50%'; + o.modalonly = false; + o.textvalue = function(section_id) { + var name = section_id.replace(/^collectd_/, ''), + section = uci.get('luci_statistics', section_id), + plugin = plugins[name]; + + if (section.enable != '1') + return E('em', {}, [_('Plugin is disabled')]); + + var summary = plugin ? plugin.form.configSummary(section) : null; + return summary || E('em', _('none')); + }; + + s.modaltitle = function(section_id) { + var name = section_id.replace(/^collectd_/, ''), + plugin = plugins[name]; + + return plugin ? plugin.form.title : null; + }; + + s.addModalOptions = function(s) { + var name = s.section.replace(/^collectd_/, ''), + plugin = plugins[name]; + + if (!plugin) + return; + + s.description = plugin.form.description; + + plugin.form.addFormOptions(s); + }; + + s.renderRowActions = function(section_id) { + var name = section_id.replace(/^collectd_/, ''), + plugin = plugins[name]; + + var trEl = this.super('renderRowActions', [ section_id, _('Configure…') ]); + + if (!plugin || !plugin.form.addFormOptions) + L.dom.content(trEl, null); + + return trEl; + }; + } + + return m.render(); + } +}); 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 new file mode 100644 index 000000000..d30599442 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/apcups.js @@ -0,0 +1,33 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('APCUPS Plugin Configuration'), + description: _('The APCUPS plugin collects statistics about the APC UPS.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.DynamicList, 'Host', _('Monitor host')); + o.default = 'localhost'; + o.datatype = 'host'; + o.depends('enable', '1'); + + o = s.option(form.Value, 'Port', _('Port for apcupsd communication')); + o.default = '3551'; + o.datatype = 'port'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var hosts = L.toArray(section.Host); + if (hosts.length) + return N_(hosts.length, + 'Monitoring APC UPS at host %s, port %d', + 'Monitoring APC UPS at hosts %s, port %d' + ).format(hosts.join(', '), section.Port || 3551); + } +}); 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 new file mode 100644 index 000000000..23f14e846 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/conntrack.js @@ -0,0 +1,11 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('Conntrack Plugin Configuration'), + description: _('The conntrack plugin collects statistics about the number of tracked connections.'), + + configSummary: function(section) { + return _('Conntrack monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..f4e30fe35 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js @@ -0,0 +1,11 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('CPU Context Switches Plugin Configuration'), + description: _('This plugin collects statistics about the processor context switches.'), + + configSummary: function(section) { + return _('Context switch monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..71e9c47f3 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpu.js @@ -0,0 +1,33 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('CPU Plugin Configuration'), + description: _('The cpu plugin collects basic statistics about the processor usage.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Flag, 'ReportByCpu', _('Report by CPU'), + _('By setting this, CPU is not aggregate of all processors on the system')); + o.default = '1'; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'ReportByState', _('Report by state'), + _('When set to true, reports per-state metric (system, user, idle)')); + o.default = '1'; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'ValuesPercentage', _('Report in percent'), + _('When set to true, we request percentage values')); + o.default = '0'; + o.depends({ 'enable': '1', 'ReportByCpu': '1', 'ReportByState': '1' }); + }, + + configSummary: function(section) { + return _('CPU monitoring is enabled'); + } +}); 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 new file mode 100644 index 000000000..ab3f69172 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js @@ -0,0 +1,26 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('CPU Frequency Plugin Configuration'), + description: _('This plugin collects statistics about the processor frequency scaling.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Flag, 'ExtraItems', _('Extra items'), + _('More details about frequency usage and transitions')); + o.default = '0'; + o.optional = true; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + return (section.ExtraItems == '1') + ? _('Detailled CPU frequency monitoring enabled') + : _('Simple CPU frequency monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..683843ec5 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/csv.js @@ -0,0 +1,27 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('CSV Plugin Configuration'), + description: _('The csv plugin stores collected data in csv file format for further processing by external programs.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Value, 'DataDir', _('Storage directory for the csv files')); + o.default = '127.0.0.1'; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'StoreRates', _('Store data values as rates instead of absolute values')); + o.default = '0'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + if (section.DataDir) + return _('Storing CSV data in %s').format(section.DataDir); + } +}); 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 new file mode 100644 index 000000000..1ae76f1a8 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/curl.js @@ -0,0 +1,32 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('cUrl Plugin Configuration'), + + addFormOptions: function(s) { + var o, ss; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.SectionValue, '__pages', form.TableSection, 'collectd_curl_page'); + o.title = _('Fetch pages'); + o.depends('enable', '1'); + + ss = o.subsection; + ss.anonymous = true; + ss.addremove = true; + + o = ss.option(form.Flag, 'enable', _('Enable')); + o.default = '1'; + + o = ss.option(form.Value, 'name', _('Name')); + + o = ss.option(form.Value, 'url', _('URL')); + }, + + configSummary: function(section) { + return _('cURL plugin enabled'); + } +}); 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 new file mode 100644 index 000000000..fafe4afe1 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/df.js @@ -0,0 +1,110 @@ +'use strict'; +'require fs'; +'require form'; + +return L.Class.extend({ + title: _('DF Plugin Configuration'), + description: _('The df plugin collects statistics about the disk space usage on different devices, mount points or filesystem types.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.DynamicList, 'Devices', _('Monitor devices')); + o.optional = true; + o.depends('enable', '1'); + o.load = function(section_id) { + return fs.lines('/proc/partitions').then(L.bind(function(lines) { + var parts = []; + + for (var i = 0; i < lines.length; i++) { + var line = L.toArray(lines[i]); + if (!isNaN(line[0])) + parts.push('/dev/' + line[3]); + } + + parts.sort(); + + for (var i = 0; i < parts.length; i++) + this.value(parts[i]); + + return this.super('load', [section_id]); + }, this)); + }; + + o = s.option(form.DynamicList, 'MountPoints', _('Monitor mount points')); + o.default = '/overlay'; + o.optional = true; + o.depends('enable', '1'); + o.load = function(section_id) { + return fs.lines('/proc/mounts').then(L.bind(function(lines) { + var mounts = {}; + + for (var i = 0; i < lines.length; i++) { + var line = L.toArray(lines[i]); + mounts[line[1]] = true; + } + + mounts = Object.keys(mounts).sort(); + + for (var i = 0; i < mounts.length; i++) + this.value(mounts[i]); + + return this.super('load', [section_id]); + }, this)); + }; + + o = s.option(form.DynamicList, 'FSTypes', _('Monitor filesystem types')); + o.default = 'tmpfs'; + o.optional = true; + o.depends('enable', '1'); + o.load = function(section_id) { + return Promise.all([ + fs.lines('/etc/filesystems'), + fs.lines('/proc/filesystems') + ]).then(L.bind(function(lines) { + var fslines = lines[0].concat(lines[1]), + fstypes = {}; + + for (var i = 0; i < fslines.length; i++) { + var line = L.toArray(fslines[i]); + + if (line.length == 2 && line[0] == 'nodev') + continue; + + fstypes[line.pop()] = true; + } + + fstypes = Object.keys(fstypes).sort(); + + for (var i = 0; i < fstypes.length; i++) + this.value(fstypes[i]); + + return this.super('load', [section_id]); + }, this)); + }; + + o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified')); + o.default = '0'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var devs = L.toArray(section.Devices), + mounts = L.toArray(section.MountPoints), + fstypes = L.toArray(section.FSTypes), + count = devs.length + mounts.length + count.length, + invert = section.IgnoreSelected == '1'; + + if (count == 0) + return _('Monitoring all partitions'); + else + return (invert ? _('Monitoring all except %s, %s, %s') : _('Monitoring %s, %s, %s')).format( + N_(devs.length, 'one device', '%d devices').format(devs.length), + N_(mounts.length, 'one mount', '%d mounts').format(mounts.length), + N_(fstypes.length, 'one filesystem type', '%d filesystem types').format(fstypes.length) + ); + } +}); 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 new file mode 100644 index 000000000..a2664d4eb --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/disk.js @@ -0,0 +1,49 @@ +'use strict'; +'require fs'; +'require form'; + +return L.Class.extend({ + title: _('Disk Plugin Configuration'), + description: _('The disk plugin collects detailed usage statistics for selected partitions or whole disks.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.DynamicList, 'Disks', _('Monitor disks and partitions'), + _('When none selected, all disks will be monitored.')); + o.rmempty = true; + o.depends('enable', '1'); + o.load = function(section_id) { + return fs.trimmed('/proc/partitions').then(L.bind(function(str) { + var lines = (str || '').split(/\n/); + + for (var i = 0; i < lines.length; i++) { + var m = lines[i].match(/^ +[0-9]+ +[0-9]+ +[0-9]+ (\S+)$/); + if (m) + this.value(m[1]); + } + + return this.super('load', [section_id]); + }, this)); + }; + + o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified')); + o.default = '0'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var disks = L.toArray(section.Disks), + invert = section.IgnoreSelected == '1'; + + if (disks.length == 0) + return _('Monitoring all disks'); + else if (invert) + return N_(disks.length, 'Monitoring all but one disk', 'Monitoring all but %d disks').format(disks.length); + else + return N_(disks.length, 'Monitoring one disk', 'Monitoring %d disks').format(disks.length); + } +}); 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 new file mode 100644 index 000000000..bdca0d65e --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/dns.js @@ -0,0 +1,35 @@ +'use strict'; +'require form'; +'require tools.widgets as widgets'; + +return L.Class.extend({ + title: _('DNS Plugin Configuration'), + description: _('The dns plugin collects detailed statistics about dns related traffic on selected interfaces.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(widgets.DeviceSelect, 'Interfaces', _('Monitor interfaces'), + _('When none selected, all interfaces will be monitored.')); + o.multiple = true; + o.noaliases = true; + o.depends('enable', '1'); + + o = s.option(form.DynamicList, 'IgnoreSources', _('Ignore source addresses')); + o.datatype = 'ipaddr("nomask")'; + o.default = '127.0.0.1'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var ifaces = L.toArray(section.Interfaces); + + if (ifaces.length == 0) + return _('Monitoring DNS queries on all interfaces'); + else + return N_(ifaces.length, 'Monitoring DNS queries on one interface', 'Monitoring DNS queries on %d interfaces').format(ifaces.length); + } +}); 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 new file mode 100644 index 000000000..2e0c6340f --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/email.js @@ -0,0 +1,52 @@ +'use strict'; +'require form'; +'require tools.widgets as widgets'; + +return L.Class.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.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Value, 'SocketFile', _('Socket file')); + o.default = '/var/run/collect-email.sock'; + o.depends('enable', '1'); + + o = s.option(widgets.GroupSelect, 'SocketGroup', _('Socket group')); + o.default = 'nogroup'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Value, 'SocketPerms', _('Socket permissions')); + o.default = '0770'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + o.validate = function(section_id, v) { + if (v == '') + return true; + + if (!v.match(/^[0-7]{1,4}$/)) + return _('Expecting permssions in octal notation'); + + return true; + }; + + o = s.option(form.Value, 'MaxConns', _('Maximum allowed connections')); + o.datatype = 'range(1,16384)'; + o.default = '5'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + if (section.SocketFile) + return _('Awaiting email input at %s').format(section.SocketFile); + } +}); 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 new file mode 100644 index 000000000..cf15d98a3 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/entropy.js @@ -0,0 +1,11 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('Entropy Plugin Configuration'), + description: _('The entropy plugin collects statistics about the available entropy.'), + + configSummary: function(section) { + return _('Entropy monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..093f3fddb --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/exec.js @@ -0,0 +1,63 @@ +'use strict'; +'require form'; +'require tools.widgets as widgets'; + +return L.Class.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.'), + + addFormOptions: function(s) { + var o, ss; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.SectionValue, '__input', form.TableSection, 'collectd_exec_input'); + o.title = _('Add command for reading values'); + o.description = _('Here you can define external commands which will be started by collectd in order to read certain values. The values will be read from stdout.'); + o.depends('enable', '1'); + + ss = o.subsection; + ss.anonymous = true; + ss.addremove = true; + + o = ss.option(form.Value, 'cmdline', _('Script')); + o.default = '/usr/bin/stat-dhcpusers'; + + o = ss.option(widgets.UserSelect, 'cmduser', _('User')); + o.default = 'nobody'; + o.optional = true; + o.rmempty = true; + + o = ss.option(widgets.GroupSelect, 'cmdgroup', _('Group')); + o.default = 'nogroup'; + o.optional = true; + o.rmempty = true; + + o = s.option(form.SectionValue, '__notify', form.TableSection, 'collectd_exec_notify'); + o.title = _('Add notification command'); + o.description = _('Here you can define external commands which will be started by collectd when certain threshold values have been reached. The values leading to invocation will be fed to the the called programs stdin.'); + o.depends('enable', '1'); + + ss = o.subsection; + ss.anonymous = true; + ss.addremove = true; + + o = ss.option(form.Value, 'cmdline', _('Script')); + o.default = '/usr/bin/stat-dhcpusers'; + + o = ss.option(widgets.UserSelect, 'cmduser', _('User')); + o.default = 'nobody'; + o.optional = true; + o.rmempty = true; + + o = ss.option(widgets.GroupSelect, 'cmdgroup', _('Group')); + o.default = 'nogroup'; + o.optional = true; + o.rmempty = true; + }, + + configSummary: function(section) { + return _('Command monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..178b510a2 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/interface.js @@ -0,0 +1,36 @@ +'use strict'; +'require form'; +'require tools.widgets as widgets'; + +return L.Class.extend({ + title: _('Interface Plugin Configuration'), + description: _('The interface plugin collects traffic statistics on selected interfaces.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(widgets.DeviceSelect, 'Interfaces', _('Monitor interfaces')); + o.multiple = true; + o.noaliases = true; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified')); + o.default = '0'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var ifaces = L.toArray(section.Interfaces), + invert = section.IgnoreSelected == '1'; + + if (ifaces.length == 0) + return _('Monitoring all interfaces'); + else if (invert) + return N_(ifaces.length, 'Monitoring all but one interface', 'Monitoring all but %d interfaces').format(ifaces.length); + else + return N_(ifaces.length, 'Monitoring one interface', 'Monitoring %d interfaces').format(ifaces.length); + } +}); 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 new file mode 100644 index 000000000..a1b67c1b1 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iptables.js @@ -0,0 +1,166 @@ +'use strict'; +'require fs'; +'require uci'; +'require form'; + +return L.Class.extend({ + title: _('Iptables Plugin Configuration'), + description: _('The iptables plugin will monitor selected firewall rules and collect information about processed bytes and packets per rule.'), + + addFormOptions: function(s) { + var o, ss; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + for (var family = 4; family <= 6; family += 2) { + var suffix = (family == 4 ? '' : '6'); + + o = s.option(form.SectionValue, '__match' + suffix, form.TableSection, 'collectd_iptables_match' + suffix, + suffix ? _('Match IPv6 iptables rules') : _('Match IPv4 iptables rules'), + _('Here you can define various criteria by which the monitored iptables rules are selected.')); + + o.depends('enable', '1'); + o.load = L.bind(function(suffix, section_id) { + return L.resolveDefault(fs.exec_direct('/usr/sbin/ip' + suffix + 'tables-save', []), '').then(L.bind(function(res) { + var lines = res.split(/\n/), + table, chain, count, iptables = {}; + + for (var i = 0; i < lines.length; i++) { + var m; + + if ((m = lines[i].match(/^\*(\S+)$/)) != null) { + table = m[1]; + count = {}; + } + else if ((m = lines[i].match(/^-A (.+?) (-.+)$/)) != null) { + count[m[1]] = (count[m[1]] || 0) + 1; + + iptables[table] = iptables[table] || {}; + iptables[table][m[1]] = iptables[table][m[1]] || {}; + iptables[table][m[1]][count[m[1]]] = E('span', { + 'style': 'overflow:hidden; text-overflow:ellipsis; max-width:200px', + 'data-tooltip': m[2] + }, [ + '#%d: '.format(count[m[1]]), + m[2].replace(/-m comment --comment "(.+?)" /, '') + ]); + + /* + * collectd currently does not support comments with spaces: + * https://github.com/collectd/collectd/issues/2766 + */ + var c = m[2].match(/-m comment --comment "(.+)" -/); + if (c && c[1] != '!fw3' && !c[1].match(/[ \t\n]/)) + iptables[table][m[1]][c[1]] = E('span', {}, [ c[1] ]); + } + } + + this.subsection.iptables = iptables; + + return form.SectionValue.prototype.load.apply(this, [section_id]); + }, this)); + }, o, suffix); + + ss = o.subsection; + ss.anonymous = true; + ss.addremove = true; + ss.addbtntitle = suffix ? _('Add IPv6 rule selector') : _('Add IPv4 rule selector'); + + o = ss.option(form.Value, 'name', _('Instance name')); + o.datatype = 'maxlength(63)'; + o.validate = function(section_id, v) { + var table_opt = this.section.children.filter(function(o) { return o.option == 'table' })[0], + table_elem = table_opt.getUIElement(section_id); + + table_elem.clearChoices(); + table_elem.addChoices(Object.keys(this.section.iptables).sort()); + + if (v != '' && v.match(/[ \t\n]/)) + return _('The instance name must not contain spaces'); + + return true; + }; + + o = ss.option(form.Value, 'table', _('Table')); + o.default = 'filter'; + o.optional = true; + o.rmempty = true; + o.transformChoices = function() { return this.super('transformChoices', []) || {} }; + o.validate = function(section_id, table) { + var chain_opt = this.section.children.filter(function(o) { return o.option == 'chain' })[0], + chain_elem = chain_opt.getUIElement(section_id); + + chain_elem.clearChoices(); + chain_elem.addChoices(Object.keys(this.section.iptables[table]).sort()); + + return true; + }; + + o = ss.option(form.Value, 'chain', _('Chain')); + o.optional = true; + o.rmempty = true; + o.transformChoices = function() { return this.super('transformChoices', []) || {} }; + o.validate = function(section_id, chain) { + var table_opt = this.section.children.filter(function(o) { return o.option == 'table' })[0], + rule_opt = this.section.children.filter(function(o) { return o.option == 'rule' })[0], + rule_elem = rule_opt.getUIElement(section_id), + table = table_opt.formvalue(section_id); + + rule_elem.clearChoices(); + + if (this.section.iptables[table][chain]) { + var keys = Object.keys(this.section.iptables[table][chain]).sort(function(a, b) { + var x = a.match(/^(\d+)/), + y = b.match(/^(\d+)/); + + if (x && y) + return +x[1] > +y[1]; + else if (x || y) + return +!!x > +!!y; + else + return a > b; + }); + + var labels = {}; + + for (var i = 0; i < keys.length; i++) + labels[keys[i]] = this.section.iptables[table][chain][keys[i]].cloneNode(true); + + rule_elem.addChoices(keys, labels); + } + + if (chain != '' && chain.match(/[ \t\n]/)) + return _('The chain name must not contain spaces'); + + return true; + }; + + o = ss.option(form.Value, 'rule', _('Comment / Rule Number')); + o.optional = true; + o.rmempty = true; + o.transformChoices = function() { return this.super('transformChoices', []) || {} }; + o.load = function(section_id) { + var table = uci.get('luci_statistics', section_id, 'table'), + chain = uci.get('luci_statistics', section_id, 'chain'), + rule = uci.get('luci_statistics', section_id, 'rule'), + ipt = this.section.iptables; + + if (ipt[table] && ipt[table][chain] && ipt[table][chain][rule]) + this.value(rule, ipt[table][chain][rule].cloneNode(true)); + + return rule; + }; + o.validate = function(section_id, rule) { + if (rule != '' && rule.match(/[ \t\n]/)) + return _('The comment to match must not contain spaces'); + + return true; + }; + } + }, + + configSummary: function(section) { + return _('Rule monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..073b9008a --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/irq.js @@ -0,0 +1,60 @@ +'use strict'; +'require fs'; +'require form'; + +return L.Class.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.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.DynamicList, 'Irqs', _('Monitor interrupts')); + o.optional = true; + o.multiple = true; + o.depends('enable', '1'); + o.load = function(section_id) { + return fs.trimmed('/proc/interrupts').then(L.bind(function(str) { + var lines = str.split(/\n/), + cpus = L.toArray(lines[0]); + + for (var i = 1; i < lines.length; i++) { + var line = lines[i], + m = lines[i].match(/^\s*([^\s:]+):/); + + if (!m) + continue; + + line = line.replace(/^[^:]+:\s+/, ''); + + for (var j = 0; j < cpus.length; j++) + line = line.replace(/^\d+\s*/, ''); + + var desc = line.split(/ {2,}/).join(', '); + + this.value(m[1], '%s (%s)'.format(m[1], desc || '-')); + } + }, this)); + }; + + o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified')); + o.default = '0'; + o.optional = 'true'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var irqs = L.toArray(section.Irqs), + invert = section.IgnoreSelected == '1'; + + if (irqs.length == 0) + return _('Monitoring all interrupts'); + else if (invert) + return N_(irqs.length, 'Monitoring all but one interrupt', 'Monitoring all but %d interrupts').format(irqs.length); + else + return N_(irqs.length, 'Monitoring one interrupt', 'Monitoring %d interrupts').format(irqs.length); + } +}); 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 new file mode 100644 index 000000000..5f9f73ad3 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js @@ -0,0 +1,41 @@ +'use strict'; +'require form'; +'require tools.widgets as widgets'; + +return L.Class.extend({ + title: _('Wireless iwinfo Plugin Configuration'), + description: _('The iwinfo plugin collects statistics about wireless signal strength, noise and quality.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(widgets.DeviceSelect, 'Interfaces', _('Monitor interfaces'), _('Leave unselected to automatically determine interfaces to monitor.')); + o.multiple = true; + o.noaliases = true; + o.noinactive = true; + o.depends('enable', '1'); + o.filter = function(section_id, name) { + var dev = this.devices.filter(function(dev) { return dev.getName() == name })[0]; + return (dev && dev.getType() == 'wifi'); + }; + + o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified')); + o.default = '0'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var ifaces = L.toArray(section.Interfaces), + invert = section.IgnoreSelected == '1'; + + if (ifaces.length == 0) + return _('Monitoring all interfaces'); + else if (invert) + return N_(ifaces.length, 'Monitoring all but one interface', 'Monitoring all but %d interfaces').format(ifaces.length); + else + return N_(ifaces.length, 'Monitoring one interface', 'Monitoring %d interfaces').format(ifaces.length); + } +}); 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 new file mode 100644 index 000000000..be6aba44c --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/load.js @@ -0,0 +1,11 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('Load Plugin Configuration'), + description: _('The load plugin collects statistics about the general system load.'), + + configSummary: function(section) { + return _('Load monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..cba3a7bdf --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/memory.js @@ -0,0 +1,30 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('Memory Plugin Configuration'), + description: _('The memory plugin collects statistics about the memory usage.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Flag, 'ValuesAbsolute', _('Absolute values'), + _('When set to true, we request absolute values')); + o.default = '1'; + o.optional = false; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'ValuesPercentage', _('Percent values'), + _('When set to true, we request percentage values')); + o.default = '0'; + o.optional = false; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + return _('Memory monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..ab5163275 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/netlink.js @@ -0,0 +1,58 @@ +'use strict'; +'require form'; +'require tools.widgets as widgets'; + +return L.Class.extend({ + title: _('Netlink Plugin Configuration'), + description: _('The netlink plugin collects extended information like qdisc-, class- and filter-statistics for selected interfaces.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(widgets.DeviceSelect, 'Interfaces', _('Basic monitoring')); + o.multiple = true; + o.noaliases = true; + o.depends('enable', '1'); + + o = s.option(widgets.DeviceSelect, 'VerboseInterfaces', _('Verbose monitoring')); + o.multiple = true; + o.noaliases = true; + o.depends('enable', '1'); + + o = s.option(widgets.DeviceSelect, 'QDiscs', _('Qdisc monitoring')); + o.multiple = true; + o.noaliases = true; + o.depends('enable', '1'); + + o = s.option(widgets.DeviceSelect, 'Classes', _('Shaping class monitoring')); + o.multiple = true; + o.noaliases = true; + o.depends('enable', '1'); + + o = s.option(widgets.DeviceSelect, 'Filters', _('Filter class monitoring')); + o.multiple = true; + o.noaliases = true; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified')); + o.default = '0'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var basic = L.toArray(section.Interfaces), + verbose = L.toArray(section.VerboseInterfaces), + count = basic.length + verbose.length, + invert = section.IgnoreSelected == '1'; + + if (invert && count == 0) + return _('Monitoring all interfaces'); + else if (invert) + return N_(count, 'Monitoring all but one interface', 'Monitoring all but %d interfaces').format(count); + else if (count) + return N_(count, 'Monitoring one interface', 'Monitoring %d interfaces').format(count); + } +}); 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 new file mode 100644 index 000000000..5fd42ab1e --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/network.js @@ -0,0 +1,72 @@ +'use strict'; +'require form'; + +return L.Class.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.'), + + addFormOptions: function(s) { + var o, ss; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Value, 'TimeToLive', _('TTL for network packets')); + o.default = '128'; + o.datatype = 'range(0, 255)'; + o.optional = true; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'Forward', _('Forwarding between listen and server addresses')); + o.default = '0'; + o.optional = true; + o.depends('enable', '1'); + + o = s.option(form.Value, 'CacheFlush', _('Cache flush interval'), + _('Seconds')); + o.default = '86400'; + o.datatype = 'uinteger'; + o.optional = true; + o.depends('enable', '1'); + + o = s.option(form.SectionValue, '__listeners', form.TableSection, 'collectd_network_listen'); + o.title = _('Listener interfaces'); + o.description = _('This section defines on which interfaces collectd will wait for incoming connections.'); + o.depends('enable', '1'); + + ss = o.subsection; + ss.anonymous = true; + ss.addremove = true; + + o = ss.option(form.Value, 'host', _('Listen host')); + o.default = '0.0.0.0'; + o.datatype = 'ipaddr("nomask")'; + + o = ss.option(form.Value, 'port', _('Listen port')); + o.default = '25826'; + o.datatype = 'port'; + //o.optional = true; + + o = s.option(form.SectionValue, '__servers', form.TableSection, 'collectd_network_server'); + o.title = _('Server interfaces'); + o.description = _('This section defines to which servers the locally collected data is sent to.'); + o.depends('enable', '1'); + + ss = o.subsection; + ss.anonymous = true; + ss.addremove = true; + + o = ss.option(form.Value, 'host', _('Server host')); + o.default = '0.0.0.0'; + o.datatype = 'ipaddr("nomask")'; + + o = ss.option(form.Value, 'port', _('Server port')); + o.default = '25826'; + o.datatype = 'port'; + //o.optional = true; + }, + + configSummary: function(section) { + return _('Network communication enabled'); + } +}); 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 new file mode 100644 index 000000000..09845dd3b --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/nut.js @@ -0,0 +1,24 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('UPS Plugin Configuration'), + description: _('The NUT plugin reads information about Uninterruptible Power Supplies.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Value, 'UPS', _('UPS'), _('UPS name in NUT ups@host format')); + o.rmempty = true; + }, + + configSummary: function(section) { + var ups = L.toArray(section.UPS); + + if (ups.length) + return N_(ups.length, 'Monitoring one UPS', 'Monitoring %d UPSes').format(ups.length); + } +}); 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 new file mode 100644 index 000000000..72cce1265 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/olsrd.js @@ -0,0 +1,51 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('OLSRd Plugin Configuration'), + description: _('The OLSRd plugin reads information about meshed networks from the txtinfo plugin of OLSRd.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Value, 'Host', _('Host'), + _('IP or hostname where to get the txtinfo output from')); + o.datatype = 'host'; + o.rmempty = true; + + o = s.option(form.Value, 'Port', _('Port')); + o.datatype = 'port'; + o.rmempty = true; + + o = s.option(form.ListValue, 'CollectLinks', _('CollectLinks'), + _('Specifies what information to collect about links.')); + o.default = 'Detail'; + o.value('No'); + o.value('Summary'); + o.value('Detail'); + + o = s.option(form.ListValue, 'CollectRoutes', _('CollectRoutes'), + _('Specifies what information to collect about routes.')); + o.default = 'Summary'; + o.value('No'); + o.value('Summary'); + o.value('Detail'); + + o = s.option(form.ListValue, 'CollectTopology', _('CollectTopology'), + _('Specifies what information to collect about the global topology.')); + o.default = 'Summary'; + o.value('No'); + o.value('Summary'); + o.value('Detail'); + }, + + configSummary: function(section) { + return _('Monitoring OLSRd status at %s:%d').format( + section.Host || 'localhost', + section.Port || 2006 + ); + } +}); 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 new file mode 100644 index 000000000..882fc4c34 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/openvpn.js @@ -0,0 +1,53 @@ +'use strict'; +'require fs'; +'require form'; + +return L.Class.extend({ + title: _('OpenVPN Plugin Configuration'), + description: _('The OpenVPN plugin gathers information about the current vpn connection status.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Flag, 'CollectIndividualUsers', _('Generate a separate graph for each logged user')); + o.default = '0'; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'CollectUserCount', _('Aggregate number of connected users')); + o.default = '0'; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'CollectCompression', _('Gather compression statistics')); + o.default = '0'; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'ImprovedNamingSchema', _('Use improved naming schema')); + o.default = '0'; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.DynamicList, 'StatusFile', _('OpenVPN status files')); + o.rmempty = true; + o.depends('enable', '1'); + o.load = function(section_id) { + 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)); + }; + }, + + configSummary: function(section) { + var stats = L.toArray(section.StatusFile); + + if (stats.length) + return N_(stats.length, 'Monitoring one OpenVPN instance', 'Monitoring %d OpenVPN instancees').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 new file mode 100644 index 000000000..62958e848 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js @@ -0,0 +1,43 @@ +'use strict'; +'require form'; + +return L.Class.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.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.DynamicList, 'Hosts', _('Monitor hosts')); + o.default = '127.0.0.1'; + o.datatype = 'ipaddr("nomask")'; + o.depends('enable', '1'); + + o = s.option(form.ListValue, 'AddressFamily', _('Address family')); + o.default = 'any'; + o.depends('enable', '1'); + o.value('any'); + o.value('ipv4'); + o.value('ipv6'); + + o = s.option(form.Value, 'TTL', _('TTL for ping packets')); + o.default = '128'; + o.datatype = 'range(0, 255)'; + o.depends('enable', '1'); + + o = s.option(form.Value, 'Interval', _('Interval for pings'), _('Seconds')); + o.default = '1.0'; + o.datatype = 'ufloat'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var hosts = L.toArray(section.Hosts); + + if (hosts.length) + return N_(hosts.length, 'Monitoring one host', 'Monitoring %d hosts').format(hosts.length); + } +}); 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 new file mode 100644 index 000000000..fe2bbccd9 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js @@ -0,0 +1,27 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('Processes Plugin Configuration'), + description: _('The processes plugin collects information like cpu time, page faults and memory usage of selected processes.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.DynamicList, 'Processes', _('Monitor processes')); + o.default = 'uhttpd dropbear dnsmasq'; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var processes = L.toArray(section.Processes); + + if (processes.length) + return N_(processes.length, 'Monitoring one process', 'Monitoring %d processes').format(processes.length); + else + return _('Basic process monitoring enabled'); + } +}); 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 new file mode 100644 index 000000000..82688cac6 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js @@ -0,0 +1,92 @@ +'use strict'; +'require form'; + +return L.Class.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>'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Value, 'DataDir', _('Storage directory'), + _('Note: as pages are rendered by user \'nobody\', the *.rrd files, the storage directory and all its parent directories need to be world readable.')); + o.default = '/tmp'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Value, 'StepSize', _('RRD step interval'), + _('Seconds')); + o.default = '30'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Value, 'HeartBeat', _('RRD heart beat interval'), + _('Seconds')); + o.default = '60'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'RRASingle', _('Only create average RRAs'), + _('reduces rrd size')); + o.default = 'true'; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'RRAMax', _('Show max values instead of averages'), + _('Max values for a period can be used instead of averages when not using \'only average RRAs\'')); + o.default = 'false'; + o.rmempty = true; + o.depends('RRASingle', '0'); + + o = s.option(form.DynamicList, 'RRATimespans', _('Stored timespans')); + o.default = '10min 1day 1week 1month 1year'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + o.validate = function(section_id, value) { + if (value == '') + return true; + + if (value.match(/^[0-9]+(?:y|m|w|d|h|min|years?|months?|weeks?|days?|hours?)?$/)) + return true; + + return _('Expecting valid time range'); + }; + + o = s.option(form.Value, 'RRARows', _('Rows per RRA')); + o.default = '100'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Value, 'XFF', _('RRD XFiles Factor')); + o.default = '0.1'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Value, 'CacheTimeout', _('Cache collected data for'), + _('Seconds')); + o.default = '100'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Value, 'CacheFlush', _('Flush cache after'), + _('Seconds')); + o.default = '100'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + if (section.DataDir) + return _('Writing *.rrd files to %s').format(section.DataDir); + } +}); 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 new file mode 100644 index 000000000..0cf848253 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/sensors.js @@ -0,0 +1,64 @@ +'use strict'; +'require fs'; +'require form'; + +var sensorTypes = [ + /^[0-9]+(?:\.[0-9]+)?v$/, 'voltage', + /^(?:ain|in|vccp|vdd|vid|vin|volt|voltbatt|vrm)[0-9]*$/, 'voltage', + /^(?:cpu_temp|remote_temp|temp)[0-9]*$/, 'temperature', + /^(?:fan)[0-9]*$/, 'fanspeed', + /^(?:power)[0-9]*$/, 'power' +]; + +return L.Class.extend({ + title: _('Sensors Plugin Configuration'), + description: _('The sensors plugin uses the Linux Sensors framework to gather environmental statistics.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.DynamicList, 'Sensor', _('Sensor list')); + o.rmempty = true; + o.size = 18; + o.depends('enable', '1'); + o.load = function(section_id) { + return fs.exec_direct('/usr/sbin/sensors', ['-j'], 'json').then(L.bind(function(output) { + for (var bus in output) { + for (var sensor in output[bus]) { + if (!L.isObject(output[bus][sensor])) + continue; + + for (var j = 0; j < sensorTypes.length; j += 2) { + if (sensor.match(sensorTypes[j])) { + this.value('%s/%s-%s'.format(bus, sensorTypes[j + 1], sensor)); + break; + } + } + } + } + + return this.super('load', [section_id]); + }, this)); + }; + + o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified')); + o.default = '0'; + o.rmempty = true; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var sensors = L.toArray(section.Sensor), + invert = section.IgnoreSelected == '1'; + + if (invert && sensors.length) + return N_(sensors.length, 'Monitoring all but one sensor', 'Monitoring all but %d sensors').format(sensors.length); + else if (sensors.length) + return N_(sensors.length, 'Monitoring one sensor', 'Monitoring %d sensors').format(sensors.length); + else + return _('Monitoring all sensors'); + } +}); 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 new file mode 100644 index 000000000..9db738860 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js @@ -0,0 +1,11 @@ +'use strict'; +'require form'; + +return L.Class.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'); + } +}); 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 new file mode 100644 index 000000000..2040f86bc --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js @@ -0,0 +1,39 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('TCPConns Plugin Configuration'), + description: _('The tcpconns plugin collects information about open tcp connections on selected ports.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Flag, 'ListeningPorts', _('Monitor all local listen ports')); + o.default = '1'; + o.depends('enable', '1'); + + o = s.option(form.Value, 'LocalPorts', _('Monitor local ports')); + o.optional = true; + o.depends({ enable: '1', ListeningPorts: '0' }); + + o = s.option(form.Value, 'RemotePorts', _('Monitor remote ports')); + o.optional = true; + o.depends({ enable: '1', ListeningPorts: '0' }); + }, + + configSummary: function(section) { + var lports = L.toArray(section.LocalPorts), + rports = L.toArray(section.RemotePorts); + + if (section.ListeningPorts == '1') + return _('Monitoring local listen ports'); + else + return _('Monitoring %s and %s').format( + N_(lports.length, 'one local port', '%d local ports').format(lports.length), + N_(rports.length, 'one remote port', '%d remote ports').format(rports.length) + ); + } +}); 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 new file mode 100644 index 000000000..bd83944b4 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/thermal.js @@ -0,0 +1,52 @@ +'use strict'; +'require fs'; +'require form'; + +return L.Class.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 )'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.DynamicList, 'Device', _('Monitor device(s) / thermal zone(s)'), _('Empty value = monitor all')); + o.load = function(section_id) { + return Promise.all([ + L.resolveDefault(fs.list('/sys/class/thermal'), []), + L.resolveDefault(fs.list('/proc/acpi/thermal_zone'), []) + ]).then(L.bind(function(res) { + var entries = res[0].concat(res[1]); + + for (var i = 0; i < entries.length; i++) + if (entries[i].type == 'directory' && !entries[i].name.match(/^cooling_device/)) + o.value(entries[i].name); + + return this.super('load', [ section_id ]); + }, this)); + }; + + o.optional = true; + o.depends('enable', '1'); + + o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified')); + o.default = '0'; + o.optional = true; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + var zones = L.toArray(section.Device), + invert = section.IgnoreSelected == '1'; + + if (zones.length) + return (invert + ? _('Monitoring all thermal zones except %s') + : _('Monitoring thermal zones %s') + ).format(zones.join(', ')); + else + return _('Monitoring all thermal zones'); + } +}); 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 new file mode 100644 index 000000000..1cbdb5f86 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/unixsock.js @@ -0,0 +1,36 @@ +'use strict'; +'require form'; +'require tools.widgets as widgets'; + +return L.Class.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.'), + + addFormOptions: function(s) { + var o; + + o = s.option(form.Flag, 'enable', _('Enable this plugin')); + o.default = '0'; + + o = s.option(form.Value, 'SocketFile', _('Socket path')); + o.default = '/var/run/collect-query.socket'; + o.depends('enable', '1'); + + o = s.option(widgets.GroupSelect, 'SocketGroup', _('Socket group'), _('Change the ownership of the socket file to the specified group.')); + o.placeholder = 'nogroup'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + + o = s.option(form.Value, 'SocketPerms', _('Socket permissions')); + o.placeholder = '0770'; + o.optional = true; + o.rmempty = true; + o.depends('enable', '1'); + }, + + configSummary: function(section) { + if (section.SocketFile) + return _('Socket %s active').format(section.SocketFile); + } +}); 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 new file mode 100644 index 000000000..c31cfd2e9 --- /dev/null +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/uptime.js @@ -0,0 +1,11 @@ +'use strict'; +'require form'; + +return L.Class.extend({ + title: _('Uptime Plugin Configuration'), + description: _('The uptime plugin collects statistics about the uptime of the system.'), + + configSummary: function(section) { + return _('Uptime monitoring enabled'); + } +}); diff --git a/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua b/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua index 529cc2335..9bf8bcfb0 100644 --- a/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua @@ -9,66 +9,12 @@ function index() require("nixio.fs") require("luci.util") require("luci.statistics.datatree") - require("luci.jsonc") - - -- override entry(): check for existence <plugin>.so where <plugin> is derived from the called path - function _entry( path, ... ) - local file = path[5] or path[4] - if nixio.fs.access( "/usr/lib/collectd/" .. file .. ".so" ) then - entry( path, ... ) - end - end - - local labels = { - s_output = _("Output plugins"), - s_general = _("General plugins"), - s_network = _("Network plugins"), - } - - -- our collectd menu - local collectd_menu = { - output = { }, - general = { }, - network = { } - } - - local plugin_dir = "/usr/share/luci/statistics/plugins/" - for filename in nixio.fs.dir(plugin_dir) do - local plugin_def = luci.jsonc.parse(nixio.fs.readfile(plugin_dir .. filename)) - if type(plugin_def) == "table" then - local name = filename:gsub("%.json", "") - table.insert(collectd_menu[plugin_def.category], name) - labels[name] = plugin_def.title - end - end -- create toplevel menu nodes local st = entry({"admin", "statistics"}, template("admin_statistics/index"), _("Statistics"), 80) st.index = true - entry({"admin", "statistics", "collectd"}, cbi("luci_statistics/collectd"), _("Setup"), 20).subindex = true - - - -- populate collectd plugin menu - local index = 1 - for section, plugins in luci.util.kspairs( collectd_menu ) do - local e = entry( - { "admin", "statistics", "collectd", section }, - firstchild(), labels["s_"..section], index * 10 - ) - - e.index = true - - for j, plugin in luci.util.vspairs( plugins ) do - _entry( - { "admin", "statistics", "collectd", section, plugin }, - cbi("luci_statistics/" .. plugin ), - labels[plugin] or plugin, j * 10 - ) - end - - index = index + 1 - end + entry({"admin", "statistics", "collectd"}, view("statistics/collectd"), _("Setup"), 20).subindex = true -- output views local page = entry( { "admin", "statistics", "graph" }, template("admin_statistics/index"), _("Graphs"), 10) diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua deleted file mode 100644 index 49e28c7cf..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua +++ /dev/null @@ -1,28 +0,0 @@ --- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("APCUPS Plugin Configuration"), - translate( - "The APCUPS plugin collects statistics about the APC UPS." - )) - --- collectd_apcups config section -s = m:section( NamedSection, "collectd_apcups", "luci_statistics" ) - --- collectd_apcups.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_apcups.host (Host) -host = s:option( Value, "Host", translate("Monitor host"), translate ("Add multiple hosts separated by space.")) -host.default = "localhost" -host:depends( "enable", 1 ) - --- collectd_apcups.port (Port) -port = s:option( Value, "Port", translate("Port for apcupsd communication") ) -port.isinteger = true -port.default = 3551 -port:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua deleted file mode 100644 index b380febac..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua +++ /dev/null @@ -1,62 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local sys = require("luci.sys") - - -m = Map("luci_statistics", - translate("Collectd Settings"), - translate( - "Collectd is a small daemon for collecting data from " .. - "various sources through different plugins. On this page " .. - "you can change general settings for the collectd daemon." - )) - --- general config section -s = m:section( NamedSection, "collectd", "luci_statistics" ) - --- general.hostname (Hostname) -hostname = s:option( Value, "Hostname", translate("Hostname") ) -hostname.default = sys.hostname() -hostname.optional = true - --- general.basedir (BaseDir) -basedir = s:option( Value, "BaseDir", translate("Base Directory") ) -basedir.default = "/var/run/collectd" - --- general.include (Include) -include = s:option( Value, "Include", translate("Directory for sub-configurations") ) -include.default = "/etc/collectd/conf.d/*.conf" - --- general.plugindir (PluginDir) -plugindir = s:option( Value, "PluginDir", translate("Directory for collectd plugins") ) -plugindir.default = "/usr/lib/collectd/" - --- general.pidfile (PIDFile) -pidfile = s:option( Value, "PIDFile", translate("Used PID file") ) -pidfile.default = "/var/run/collectd.pid" - --- general.typesdb (TypesDB) -typesdb = s:option( Value, "TypesDB", translate("Datasets definition file") ) -typesdb.default = "/etc/collectd/types.db" - --- general.interval (Interval) -interval = s:option( Value, "Interval", translate("Data collection interval"), translate("Seconds") ) -interval.default = 60 -interval.isnumber = true - --- general.readthreads (ReadThreads) -readthreads = s:option( Value, "ReadThreads", translate("Number of threads for data collection") ) -readthreads.default = 5 -readthreads.isnumber = true - --- general.fqdnlookup (FQDNLookup) -fqdnlookup = s:option( Flag, "FQDNLookup", translate("Try to lookup fully qualified hostname") ) -fqdnlookup.enabled = "true" -fqdnlookup.disabled = "false" -fqdnlookup.default = "false" -fqdnlookup.optional = true -fqdnlookup:depends( "Hostname", "" ) - - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua deleted file mode 100644 index 608144f13..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua +++ /dev/null @@ -1,13 +0,0 @@ --- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Conntrack Plugin Configuration"), - translate("The conntrack plugin collects statistics about the number of tracked connections.")) - -s = m:section( NamedSection, "collectd_conntrack", "luci_statistics" ) - -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua deleted file mode 100644 index 7ae6b24ba..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua +++ /dev/null @@ -1,14 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("CPU Context Switches Plugin Configuration"), - translate("This plugin collects statistics about the processor context switches.")) - --- collectd_contextswitch config section -s = m:section( NamedSection, "collectd_contextswitch", "luci_statistics" ) - --- collectd_contextswitch.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua deleted file mode 100644 index 56af1cc96..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua +++ /dev/null @@ -1,36 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("CPU Plugin Configuration"), - translate("The cpu plugin collects basic statistics about the processor usage.")) - --- collectd_cpu config section -s = m:section( NamedSection, "collectd_cpu", "luci_statistics" ) - --- collectd_cpu.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_cpu.reportbycpu (ReportByCpu) -reportbycpu = s:option( Flag, "ReportByCpu", - translate("Report by CPU"), - translate("By setting this, CPU is not aggregate of all processors on the system")) -reportbycpu.default = 1 -reportbycpu:depends( "enable", 1 ) - --- collectd_cpu.reportbystate (ReportByState) -reportbystate = s:option( Flag, "ReportByState", - translate("Report by state"), - translate("When set to true, reports per-state metric (system, user, idle)")) -reportbystate.default = 1 -reportbystate:depends( "enable", 1 ) - --- collectd_cpu.valuespercentage (ValuesPercentage) -valuespercentage = s:option( Flag, "ValuesPercentage", - translate("Report in percent"), - translate("When set to true, we request percentage values")) -valuespercentage.default = 0 -valuespercentage:depends({ enable = 1, ReportByCpu = 1, ReportByState = 1 }) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua deleted file mode 100644 index 435f186e0..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua +++ /dev/null @@ -1,20 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("CPU Frequency Plugin Configuration"), - translate("This plugin collects statistics about the processor frequency scaling.")) - --- collectd_cpufreq config section -s = m:section( NamedSection, "collectd_cpufreq", "luci_statistics" ) - --- collectd_cpufreq.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_cpufreq.extraitems -extraitems = s:option( Flag, "ExtraItems", translate("Extra items"), translate("More details about frequency usage and transitions")) -extraitems.default = "0" -extraitems.optional = true -extraitems:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua deleted file mode 100644 index ec45a677b..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua +++ /dev/null @@ -1,29 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("CSV Plugin Configuration"), - translate( - "The csv plugin stores collected data in csv file format " .. - "for further processing by external programs." - )) - --- collectd_csv config section -s = m:section( NamedSection, "collectd_csv", "luci_statistics" ) - --- collectd_csv.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_csv.datadir (DataDir) -datadir = s:option( Value, "DataDir", translate("Storage directory for the csv files") ) -datadir.default = "127.0.0.1" -datadir:depends( "enable", 1 ) - --- collectd_csv.storerates (StoreRates) -storerates = s:option( Flag, "StoreRates", translate("Store data values as rates instead of absolute values") ) -storerates.default = 0 -storerates:depends( "enable", 1 ) - -return m - diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua deleted file mode 100644 index 606e1cb0d..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua +++ /dev/null @@ -1,24 +0,0 @@ --- Copyright 2018 Chizhong Jin <pjincz@gmail.com> --- Licensed to the public under the BSD 3-clause license - -m = Map("luci_statistics", - translate("cUrl Plugin Configuration")) - -s = m:section(NamedSection, "collectd_curl") -s_enable = s:option(Flag, "enable", translate("Enable this plugin")) -s_enable.default = 0 - -page = m:section(TypedSection, "collectd_curl_page") -page.addremove = true -page.anonymous = true -page.template = "cbi/tblsection" -page.sortable = true - -page_enable = page:option(Flag, "enable", translate("Enable")) -page_enable.default = 1 - -page_name = page:option(Value, "name", translate("Name")) - -page_addr = page:option(Value, "url", translate("URL")) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua deleted file mode 100644 index c6031fdc5..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua +++ /dev/null @@ -1,41 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("DF Plugin Configuration"), - translate( - "The df plugin collects statistics about the disk space " .. - "usage on different devices, mount points or filesystem types." - )) - --- collectd_df config section -s = m:section( NamedSection, "collectd_df", "luci_statistics" ) - --- collectd_df.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_df.devices (Device) -devices = s:option( Value, "Devices", translate("Monitor devices") ) -devices.default = "/dev/mtdblock/4" -devices.optional = true -devices:depends( "enable", 1 ) - --- collectd_df.mountpoints (MountPoint) -mountpoints = s:option( Value, "MountPoints", translate("Monitor mount points") ) -mountpoints.default = "/overlay" -mountpoints.optional = true -mountpoints:depends( "enable", 1 ) - --- collectd_df.fstypes (FSType) -fstypes = s:option( Value, "FSTypes", translate("Monitor filesystem types") ) -fstypes.default = "tmpfs" -fstypes.optional = true -fstypes:depends( "enable", 1 ) - --- collectd_df.ignoreselected (IgnoreSelected) -ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") ) -ignoreselected.default = 0 -ignoreselected:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua deleted file mode 100644 index d336a7e51..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua +++ /dev/null @@ -1,29 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Disk Plugin Configuration"), - translate( - "The disk plugin collects detailed usage statistics " .. - "for selected partitions or whole disks." - )) - --- collectd_disk config section -s = m:section( NamedSection, "collectd_disk", "luci_statistics" ) - --- collectd_disk.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_disk.disks (Disk) -devices = s:option( Value, "Disks", translate("Monitor disks and partitions") ) -devices.default = "hda1 hdb" -devices.rmempty = true -devices:depends( "enable", 1 ) - --- collectd_disk.ignoreselected (IgnoreSelected) -ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") ) -ignoreselected.default = 0 -ignoreselected:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua deleted file mode 100644 index 424501866..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua +++ /dev/null @@ -1,36 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local sys = require("luci.sys") - - -m = Map("luci_statistics", - translate("DNS Plugin Configuration"), - translate( - "The dns plugin collects detailed statistics about dns " .. - "related traffic on selected interfaces." - )) - --- collectd_dns config section -s = m:section( NamedSection, "collectd_dns", "luci_statistics" ) - --- collectd_dns.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_dns.interfaces (Interface) -interfaces = s:option( MultiValue, "Interfaces", translate("Monitor interfaces") ) -interfaces.widget = "select" -interfaces.size = 5 -interfaces:depends( "enable", 1 ) -interfaces:value("any") -for k, v in pairs(sys.net.devices()) do - interfaces:value(v) -end - --- collectd_dns.ignoresources (IgnoreSource) -ignoresources = s:option( Value, "IgnoreSources", translate("Ignore source addresses") ) -ignoresources.default = "127.0.0.1" -ignoresources:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua deleted file mode 100644 index e6ed4392f..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua +++ /dev/null @@ -1,48 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("E-Mail Plugin Configuration"), - translate( - "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." - )) - --- collectd_email config section -s = m:section( NamedSection, "collectd_email", "luci_statistics" ) - --- collectd_email.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_email.socketfile (SocketFile) -socketfile = s:option( Value, "SocketFile", translate("Socket file") ) -socketfile.default = "/var/run/collect-email.sock" -socketfile:depends( "enable", 1 ) - --- collectd_email.socketgroup (SocketGroup) -socketgroup = s:option( Value, "SocketGroup", translate("Socket group") ) -socketgroup.default = "nobody" -socketgroup.rmempty = true -socketgroup.optional = true -socketgroup:depends( "enable", 1 ) - --- collectd_email.socketperms (SocketPerms) -socketperms = s:option( Value, "SocketPerms", translate("Socket permissions") ) -socketperms.default = "0770" -socketperms.rmempty = true -socketperms.optional = true -socketperms:depends( "enable", 1 ) - --- collectd_email.maxconns (MaxConns) -maxconns = s:option( Value, "MaxConns", translate("Maximum allowed connections") ) -maxconns.default = 5 -maxconns.isinteger = true -maxconns.rmempty = true -maxconns.optional = true -maxconns:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua deleted file mode 100644 index d18bf910f..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua +++ /dev/null @@ -1,14 +0,0 @@ --- Copyright 2015 Hannu Nyman <hannu.nyman@iki.fi> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Entropy Plugin Configuration"), - translate("The entropy plugin collects statistics about the available entropy.")) - -s = m:section( NamedSection, "collectd_entropy", "luci_statistics" ) - -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - -return m - diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua deleted file mode 100644 index 9c8e3e188..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua +++ /dev/null @@ -1,77 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Exec Plugin Configuration"), - translate( - "The exec plugin starts external commands to read values " .. - "from or to notify external processes when certain threshold " .. - "values have been reached." - )) - --- collectd_exec config section -s = m:section( NamedSection, "collectd_exec", "luci_statistics" ) - --- collectd_exec.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - - --- collectd_exec_input config section (Exec directives) -exec = m:section( TypedSection, "collectd_exec_input", - translate("Add command for reading values"), - translate( - "Here you can define external commands which will be " .. - "started by collectd in order to read certain values. " .. - "The values will be read from stdout." - )) -exec.addremove = true -exec.anonymous = true - --- collectd_exec_input.cmdline -exec_cmdline = exec:option( Value, "cmdline", translate("Script") ) -exec_cmdline.default = "/usr/bin/stat-dhcpusers" - --- collectd_exec_input.cmdline -exec_cmduser = exec:option( Value, "cmduser", translate("User") ) -exec_cmduser.default = "nobody" -exec_cmduser.rmempty = true -exec_cmduser.optional = true - --- collectd_exec_input.cmdline -exec_cmdgroup = exec:option( Value, "cmdgroup", translate("Group") ) -exec_cmdgroup.default = "nogroup" -exec_cmdgroup.rmempty = true -exec_cmdgroup.optional = true - - --- collectd_exec_notify config section (NotifyExec directives) -notify = m:section( TypedSection, "collectd_exec_notify", - translate("Add notification command"), - translate( - "Here you can define external commands which will be " .. - "started by collectd when certain threshold values have " .. - "been reached. The values leading to invocation will be " .. - "fed to the the called programs stdin." - )) -notify.addremove = true -notify.anonymous = true - --- collectd_notify_input.cmdline -notify_cmdline = notify:option( Value, "cmdline", translate("Script") ) -notify_cmdline.default = "/usr/bin/stat-dhcpusers" - --- collectd_notify_input.cmdline -notify_cmduser = notify:option( Value, "cmduser", translate("User") ) -notify_cmduser.default = "nobody" -notify_cmduser.rmempty = true -notify_cmduser.optional = true - --- collectd_notify_input.cmdline -notify_cmdgroup = notify:option( Value, "cmdgroup", translate("Group") ) -notify_cmdgroup.default = "nogroup" -notify_cmdgroup.rmempty = true -notify_cmdgroup.optional = true - - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua deleted file mode 100644 index 60c88d072..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua +++ /dev/null @@ -1,35 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local sys = require("luci.sys") - - -m = Map("luci_statistics", - translate("Interface Plugin Configuration"), - translate( - "The interface plugin collects traffic statistics on " .. - "selected interfaces." - )) - --- collectd_interface config section -s = m:section( NamedSection, "collectd_interface", "luci_statistics" ) - --- collectd_interface.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_interface.interfaces (Interface) -interfaces = s:option( MultiValue, "Interfaces", translate("Monitor interfaces") ) -interfaces.widget = "select" -interfaces.size = 5 -interfaces:depends( "enable", 1 ) -for k, v in pairs(sys.net.devices()) do - interfaces:value(v) -end - --- collectd_interface.ignoreselected (IgnoreSelected) -ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") ) -ignoreselected.default = 0 -ignoreselected:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua deleted file mode 100644 index 375a15bf1..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua +++ /dev/null @@ -1,119 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local ip = require("luci.sys.iptparser").IptParser() - -local chains = { } -local targets = { } - -for i, rule in ipairs( ip:find() ) do - if rule.chain and rule.target then - chains[rule.chain] = true - targets[rule.target] = true - end -end - - -m = Map("luci_statistics", - translate("Iptables Plugin Configuration"), - translate( - "The iptables plugin will monitor selected firewall rules and " .. - "collect information about processed bytes and packets per rule." - )) - --- collectd_iptables config section -s = m:section( NamedSection, "collectd_iptables", "luci_statistics" ) - --- collectd_iptables.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - - --- collectd_iptables_match config section (Chain directives) -rule = m:section( TypedSection, "collectd_iptables_match", - translate("Add matching rule"), - translate( - "Here you can define various criteria by which the monitored " .. - "iptables rules are selected." - )) -rule.addremove = true -rule.anonymous = true - - --- collectd_iptables_match.name -rule_table = rule:option( Value, "name", - translate("Name of the rule"), translate("max. 16 chars") ) - --- collectd_iptables_match.table -rule_table = rule:option( ListValue, "table", translate("Table") ) -rule_table.default = "filter" -rule_table.rmempty = true -rule_table.optional = true -rule_table:value("") -rule_table:value("filter") -rule_table:value("nat") -rule_table:value("mangle") - - --- collectd_iptables_match.chain -rule_chain = rule:option( ListValue, "chain", translate("Chain") ) -rule_chain.rmempty = true -rule_chain.optional = true -rule_chain:value("") - -for chain, void in pairs( chains ) do - rule_chain:value( chain ) -end - - --- collectd_iptables_match.target -rule_target = rule:option( ListValue, "target", translate("Action (target)") ) -rule_target.rmempty = true -rule_target.optional = true -rule_target:value("") - -for target, void in pairs( targets ) do - rule_target:value( target ) -end - - --- collectd_iptables_match.protocol -rule_protocol = rule:option( ListValue, "protocol", translate("Network protocol") ) -rule_protocol.rmempty = true -rule_protocol.optional = true -rule_protocol:value("") -rule_protocol:value("tcp") -rule_protocol:value("udp") -rule_protocol:value("icmp") - --- collectd_iptables_match.source -rule_source = rule:option( Value, "source", translate("Source ip range") ) -rule_source.default = "0.0.0.0/0" -rule_source.rmempty = true -rule_source.optional = true - --- collectd_iptables_match.destination -rule_destination = rule:option( Value, "destination", translate("Destination ip range") ) -rule_destination.default = "0.0.0.0/0" -rule_destination.rmempty = true -rule_destination.optional = true - --- collectd_iptables_match.inputif -rule_inputif = rule:option( Value, "inputif", - translate("Incoming interface"), translate("e.g. br-lan") ) -rule_inputif.rmempty = true -rule_inputif.optional = true - --- collectd_iptables_match.outputif -rule_outputif = rule:option( Value, "outputif", - translate("Outgoing interface"), translate("e.g. br-ff") ) -rule_outputif.rmempty = true -rule_outputif.optional = true - --- collectd_iptables_match.options -rule_options = rule:option( Value, "options", - translate("Options"), translate("e.g. reject-with tcp-reset") ) -rule_options.rmempty = true -rule_options.optional = true - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua deleted file mode 100644 index 6a8c22761..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua +++ /dev/null @@ -1,30 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("IRQ Plugin Configuration"), - translate( - "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." - )) - --- collectd_irq config section -s = m:section( NamedSection, "collectd_irq", "luci_statistics" ) - --- collectd_irq.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_irq.irqs (Irq) -irqs = s:option( Value, "Irqs", translate("Monitor interrupts") ) -irqs.optional = true -irqs:depends( "enable", 1 ) - --- collectd_irq.ignoreselected (IgnoreSelected) -ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") ) -ignoreselected.default = 0 -ignoreselected.optional = "true" -ignoreselected:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua deleted file mode 100644 index e3601710e..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua +++ /dev/null @@ -1,26 +0,0 @@ --- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local m, s, o - -m = Map("luci_statistics", - translate("Wireless iwinfo Plugin Configuration"), - translate("The iwinfo plugin collects statistics about wireless signal strength, noise and quality.")) - -s = m:section(NamedSection, "collectd_iwinfo", "luci_statistics") - -o = s:option(Flag, "enable", translate("Enable this plugin")) -o.default = 0 - -o = s:option(DynamicList, "Interfaces", translate("Monitor interfaces"), - translate("Leave unselected to automatically determine interfaces to monitor.")) -o.template = "cbi/network_ifacelist" -o.widget = "checkbox" -o.nocreate = true -o:depends("enable", 1) - -o = s:option(Flag, "IgnoreSelected", translate("Monitor all except specified")) -o.default = 0 -o:depends("enable", 1) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua deleted file mode 100644 index 6578291d8..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua +++ /dev/null @@ -1,17 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Load Plugin Configuration"), - translate( - "The load plugin collects statistics about the general system load." - )) - --- collectd_wireless config section -s = m:section( NamedSection, "collectd_load", "luci_statistics" ) - --- collectd_wireless.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua deleted file mode 100644 index 2e09ea9a7..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua +++ /dev/null @@ -1,29 +0,0 @@ --- Copyright 2011 Manuel Munz <freifunk at somakoma dot de> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Memory Plugin Configuration"), - translate("The memory plugin collects statistics about the memory usage.")) - -s = m:section( NamedSection, "collectd_memory", "luci_statistics" ) - -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_memory.valuesabsolute (ValuesAbsolute) -valuesabsolute = s:option( Flag, "ValuesAbsolute", - translate("Absolute values"), - translate("When set to true, we request absolute values")) -valuesabsolute.default = 1 -valuesabsolute.optional = false -valuesabsolute:depends( "enable", 1 ) - --- collectd_memory.valuespercentage (ValuesPercentage) -valuespercentage = s:option( Flag, "ValuesPercentage", - translate("Percent values"), - translate("When set to true, we request percentage values")) -valuespercentage.default = 0 -valuespercentage.optional = false -valuespercentage:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua deleted file mode 100644 index 784ad1fdb..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua +++ /dev/null @@ -1,83 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local sys = require("luci.sys") - -local devices = sys.net.devices() - - -m = Map("luci_statistics", - translate("Netlink Plugin Configuration"), - translate( - "The netlink plugin collects extended information like " .. - "qdisc-, class- and filter-statistics for selected interfaces." - )) - --- collectd_netlink config section -s = m:section( NamedSection, "collectd_netlink", "luci_statistics" ) - --- collectd_netlink.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_netlink.interfaces (Interface) -interfaces = s:option( MultiValue, "Interfaces", translate("Basic monitoring") ) -interfaces.widget = "select" -interfaces.optional = true -interfaces.size = #devices + 1 -interfaces:depends( "enable", 1 ) -interfaces:value("") -for i, v in ipairs(devices) do - interfaces:value(v) -end - --- collectd_netlink.verboseinterfaces (VerboseInterface) -verboseinterfaces = s:option( MultiValue, "VerboseInterfaces", translate("Verbose monitoring") ) -verboseinterfaces.widget = "select" -verboseinterfaces.optional = true -verboseinterfaces.size = #devices + 1 -verboseinterfaces:depends( "enable", 1 ) -verboseinterfaces:value("") -for i, v in ipairs(devices) do - verboseinterfaces:value(v) -end - --- collectd_netlink.qdiscs (QDisc) -qdiscs = s:option( MultiValue, "QDiscs", translate("Qdisc monitoring") ) -qdiscs.widget = "select" -qdiscs.optional = true -qdiscs.size = #devices + 1 -qdiscs:depends( "enable", 1 ) -qdiscs:value("") -for i, v in ipairs(devices) do - qdiscs:value(v) -end - --- collectd_netlink.classes (Class) -classes = s:option( MultiValue, "Classes", translate("Shaping class monitoring") ) -classes.widget = "select" -classes.optional = true -classes.size = #devices + 1 -classes:depends( "enable", 1 ) -classes:value("") -for i, v in ipairs(devices) do - classes:value(v) -end - --- collectd_netlink.filters (Filter) -filters = s:option( MultiValue, "Filters", translate("Filter class monitoring") ) -filters.widget = "select" -filters.optional = true -filters.size = #devices + 1 -filters:depends( "enable", 1 ) -filters:value("") -for i, v in ipairs(devices) do - filters:value(v) -end - --- collectd_netlink.ignoreselected (IgnoreSelected) -ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") ) -ignoreselected.default = 0 -ignoreselected:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua deleted file mode 100644 index 547badf56..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua +++ /dev/null @@ -1,85 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Network Plugin Configuration"), - translate( - "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." - )) - --- collectd_network config section -s = m:section( NamedSection, "collectd_network", "luci_statistics" ) - --- collectd_network.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - - --- collectd_network_listen config section (Listen) -listen = m:section( TypedSection, "collectd_network_listen", - translate("Listener interfaces"), - translate( - "This section defines on which interfaces collectd will wait " .. - "for incoming connections." - )) -listen.addremove = true -listen.anonymous = true - --- collectd_network_listen.host -listen_host = listen:option( Value, "host", translate("Listen host") ) -listen_host.default = "0.0.0.0" - --- collectd_network_listen.port -listen_port = listen:option( Value, "port", translate("Listen port") ) -listen_port.default = 25826 -listen_port.isinteger = true -listen_port.optional = true - - --- collectd_network_server config section (Server) -server = m:section( TypedSection, "collectd_network_server", - translate("server interfaces"), - translate( - "This section defines to which servers the locally collected " .. - "data is sent to." - )) -server.addremove = true -server.anonymous = true - --- collectd_network_server.host -server_host = server:option( Value, "host", translate("Server host") ) -server_host.default = "0.0.0.0" - --- collectd_network_server.port -server_port = server:option( Value, "port", translate("Server port") ) -server_port.default = 25826 -server_port.isinteger = true -server_port.optional = true - --- collectd_network.timetolive (TimeToLive) -ttl = s:option( Value, "TimeToLive", translate("TTL for network packets") ) -ttl.default = 128 -ttl.isinteger = true -ttl.optional = true -ttl:depends( "enable", 1 ) - --- collectd_network.forward (Forward) -forward = s:option( Flag, "Forward", translate("Forwarding between listen and server addresses") ) -forward.default = 0 -forward.optional = true -forward:depends( "enable", 1 ) - --- collectd_network.cacheflush (CacheFlush) -cacheflush = s:option( Value, "CacheFlush", - translate("Cache flush interval"), translate("Seconds") ) -cacheflush.default = 86400 -cacheflush.isinteger = true -cacheflush.optional = true -cacheflush:depends( "enable", 1 ) - - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua deleted file mode 100644 index 03ec29e13..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua +++ /dev/null @@ -1,17 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("UPS Plugin Configuration"), - translate("The NUT plugin reads information about Uninterruptible Power Supplies.")) - -s = m:section(NamedSection, "collectd_nut", "luci_statistics" ) - -enable = s:option(Flag, "enable", translate("Enable this plugin")) -enable.default = 0 - -host = s:option(Value, "UPS", translate("UPS"), translate("UPS name in NUT ups@host format")) -host.placeholder = "myupsname" -host.datatype = "string" -host.rmempty = true - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua deleted file mode 100644 index 950d7a797..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua +++ /dev/null @@ -1,45 +0,0 @@ --- Copyright 2011 Manuel Munz <freifunk at somakoma dot de> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("OLSRd Plugin Configuration"), - translate("The OLSRd plugin reads information about meshed networks from the txtinfo plugin of OLSRd.")) - -s = m:section(NamedSection, "collectd_olsrd", "luci_statistics" ) - -enable = s:option(Flag, "enable", translate("Enable this plugin")) -enable.default = 0 - -host = s:option(Value, "Host", translate("Host"), translate("IP or hostname where to get the txtinfo output from")) -host.placeholder = "127.0.0.1" -host.datatype = "host(1)" -host.rmempty = true - -port = s:option(Value, "Port", translate("Port")) -port.placeholder = "2006" -port.datatype = "range(0,65535)" -port.rmempty = true -port.cast = "string" - -cl = s:option(ListValue, "CollectLinks", translate("CollectLinks"), - translate("Specifies what information to collect about links.")) -cl:value("No") -cl:value("Summary") -cl:value("Detail") -cl.default = "Detail" - -cr = s:option(ListValue, "CollectRoutes", translate("CollectRoutes"), - translate("Specifies what information to collect about routes.")) -cr:value("No") -cr:value("Summary") -cr:value("Detail") -cr.default = "Summary" - -ct = s:option(ListValue, "CollectTopology", translate("CollectTopology"), - translate("Specifies what information to collect about the global topology.")) -ct:value("No") -ct:value("Summary") -ct:value("Detail") -ct.default = "Summary" - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua deleted file mode 100644 index f0a5ab593..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua +++ /dev/null @@ -1,53 +0,0 @@ --- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local m, s, o - -m = Map("luci_statistics", - translate("OpenVPN Plugin Configuration"), - translate("The OpenVPN plugin gathers information about the current vpn connection status.")) - -s = m:section( NamedSection, "collectd_openvpn", "luci_statistics" ) - - -o = s:option( Flag, "enable", translate("Enable this plugin") ) -o.default = "0" - - -o = s:option(Flag, "CollectIndividualUsers", translate("Generate a separate graph for each logged user")) -o.default = "0" -o.rmempty = true -o:depends("enable", 1) - - -o = s:option(Flag, "CollectUserCount", translate("Aggregate number of connected users")) -o.default = "0" -o.rmempty = true -o:depends("enable", 1) - - -o = s:option(Flag, "CollectCompression", translate("Gather compression statistics")) -o.default = "0" -o.rmempty = true -o:depends("enable", 1) - - -o = s:option(Flag, "ImprovedNamingSchema", translate("Use improved naming schema")) -o.default = "0" -o.rmempty = true -o:depends("enable", 1) - - -o = s:option(DynamicList, "StatusFile", translate("OpenVPN status files")) -o.rmempty = true -o:depends("enable", 1) - -local status_files = nixio.fs.glob("/var/run/openvpn.*.status") -if status_files then - local status_file - for status_file in status_files do - o:value(status_file) - end -end - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua deleted file mode 100644 index bcee6efe0..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua +++ /dev/null @@ -1,43 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Ping Plugin Configuration"), - translate( - "The ping plugin will send icmp echo replies to selected " .. - "hosts and measure the roundtrip time for each host." - )) - --- collectd_ping config section -s = m:section( NamedSection, "collectd_ping", "luci_statistics" ) - --- collectd_ping.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_ping.hosts (Host) -hosts = s:option( Value, "Hosts", translate("Monitor hosts"), translate ("Add multiple hosts separated by space.")) -hosts.default = "127.0.0.1" -hosts:depends( "enable", 1 ) - --- collectd_ping.adressfamily (AddressFamily) -addressfamily = s:option( ListValue, "AddressFamily", translate("Address family") ) -addressfamily.default = "any" -addressfamily:value( "any" ) -addressfamily:value( "ipv4" ) -addressfamily:value( "ipv6" ) -addressfamily:depends( "enable", 1 ) - --- collectd_ping.ttl (TTL) -ttl = s:option( Value, "TTL", translate("TTL for ping packets") ) -ttl.isinteger = true -ttl.default = 128 -ttl:depends( "enable", 1 ) - --- collectd_ping.interval (Interval) -interval = s:option( Value, "Interval", translate("Interval for pings"), translate ("Seconds") ) -interval.isinteger = true -interval.default = 30 -interval:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua deleted file mode 100644 index c0a18a9c1..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua +++ /dev/null @@ -1,24 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Processes Plugin Configuration"), - translate( - "The processes plugin collects information like cpu time, " .. - "page faults and memory usage of selected processes." - )) - --- collectd_processes config section -s = m:section( NamedSection, "collectd_processes", "luci_statistics" ) - --- collectd_processes.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_processes.processes (Process) -processes = s:option( Value, "Processes", translate("Monitor processes"), - translate("Processes to monitor separated by space") ) -processes:depends( "enable", 1 ) -processes.default = "uhttpd dropbear dnsmasq" - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua deleted file mode 100644 index fa00bbbf5..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua +++ /dev/null @@ -1,107 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("RRDTool Plugin Configuration"), - translate( - "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>" - )) - --- collectd_rrdtool config section -s = m:section( NamedSection, "collectd_rrdtool", "luci_statistics" ) - --- collectd_rrdtool.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 1 - --- collectd_rrdtool.datadir (DataDir) -datadir = s:option( Value, "DataDir", - translate("Storage directory"), - translate("Note: as pages are rendered by user 'nobody', the *.rrd files, " .. - "the storage directory and all its parent directories need " .. - "to be world readable." - )) -datadir.default = "/tmp" -datadir.rmempty = true -datadir.optional = true -datadir:depends( "enable", 1 ) - --- collectd_rrdtool.stepsize (StepSize) -stepsize = s:option( Value, "StepSize", - translate("RRD step interval"), translate("Seconds") ) -stepsize.default = 30 -stepsize.isinteger = true -stepsize.rmempty = true -stepsize.optional = true -stepsize:depends( "enable", 1 ) - --- collectd_rrdtool.heartbeat (HeartBeat) -heartbeat = s:option( Value, "HeartBeat", - translate("RRD heart beat interval"), translate("Seconds") ) -heartbeat.default = 60 -heartbeat.isinteger = true -heartbeat.rmempty = true -heartbeat.optional = true -heartbeat:depends( "enable", 1 ) - --- collectd_rrdtool.rrasingle (RRASingle) -rrasingle = s:option( Flag, "RRASingle", - translate("Only create average RRAs"), translate("reduces rrd size") ) -rrasingle.default = true -rrasingle:depends( "enable", 1 ) - --- collectd_rrdtool.rramax (RRAMax) -rramax = s:option( Flag, "RRAMax", - translate("Show max values instead of averages"), - translate("Max values for a period can be used instead of averages when not using 'only average RRAs'") ) -rramax.default = false -rramax.rmempty = true -rramax:depends( "RRASingle", 0 ) - --- collectd_rrdtool.rratimespans (RRATimespan) -rratimespans = s:option( Value, "RRATimespans", - translate("Stored timespans"), translate("seconds; multiple separated by space") ) -rratimespans.default = "600 86400 604800 2678400 31622400" -rratimespans.rmempty = true -rratimespans.optional = true -rratimespans:depends( "enable", 1 ) - --- collectd_rrdtool.rrarows (RRARows) -rrarows = s:option( Value, "RRARows", translate("Rows per RRA") ) -rrarows.isinteger = true -rrarows.default = 100 -rrarows.rmempty = true -rrarows.optional = true -rrarows:depends( "enable", 1 ) - --- collectd_rrdtool.xff (XFF) -xff = s:option( Value, "XFF", translate("RRD XFiles Factor") ) -xff.default = 0.1 -xff.isnumber = true -xff.rmempty = true -xff.optional = true -xff:depends( "enable", 1 ) - --- collectd_rrdtool.cachetimeout (CacheTimeout) -cachetimeout = s:option( Value, "CacheTimeout", - translate("Cache collected data for"), translate("Seconds") ) -cachetimeout.isinteger = true -cachetimeout.default = 100 -cachetimeout.rmempty = true -cachetimeout.optional = true -cachetimeout:depends( "enable", 1 ) - --- collectd_rrdtool.cacheflush (CacheFlush) -cacheflush = s:option( Value, "CacheFlush", - translate("Flush cache after"), translate("Seconds") ) -cacheflush.isinteger = true -cacheflush.default = 100 -cacheflush.rmempty = true -cacheflush.optional = true -cacheflush:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua deleted file mode 100644 index 69066880c..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua +++ /dev/null @@ -1,123 +0,0 @@ --- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local m, s, o -local sensor_types = { - ["12v"] = "voltage", - ["2.0v"] = "voltage", - ["2.5v"] = "voltage", - ["3.3v"] = "voltage", - ["5.0v"] = "voltage", - ["5v"] = "voltage", - ["ain1"] = "voltage", - ["ain2"] = "voltage", - ["cpu_temp"] = "temperature", - ["fan1"] = "fanspeed", - ["fan2"] = "fanspeed", - ["fan3"] = "fanspeed", - ["fan4"] = "fanspeed", - ["fan5"] = "fanspeed", - ["fan6"] = "fanspeed", - ["fan7"] = "fanspeed", - ["in0"] = "voltage", - ["in10"] = "voltage", - ["in2"] = "voltage", - ["in3"] = "voltage", - ["in4"] = "voltage", - ["in5"] = "voltage", - ["in6"] = "voltage", - ["in7"] = "voltage", - ["in8"] = "voltage", - ["in9"] = "voltage", - ["power1"] = "power", - ["remote_temp"] = "temperature", - ["temp1"] = "temperature", - ["temp2"] = "temperature", - ["temp3"] = "temperature", - ["temp4"] = "temperature", - ["temp5"] = "temperature", - ["temp6"] = "temperature", - ["temp7"] = "temperature", - ["temp"] = "temperature", - ["vccp1"] = "voltage", - ["vccp2"] = "voltage", - ["vdd"] = "voltage", - ["vid1"] = "voltage", - ["vid2"] = "voltage", - ["vid3"] = "voltage", - ["vid4"] = "voltage", - ["vid5"] = "voltage", - ["vid"] = "voltage", - ["vin1"] = "voltage", - ["vin2"] = "voltage", - ["vin3"] = "voltage", - ["vin4"] = "voltage", - ["volt12"] = "voltage", - ["volt5"] = "voltage", - ["voltbatt"] = "voltage", - ["vrm"] = "voltage" - -} - - -m = Map("luci_statistics", - translate("Sensors Plugin Configuration"), - translate("The sensors plugin uses the Linux Sensors framework to gather environmental statistics.")) - -s = m:section( NamedSection, "collectd_sensors", "luci_statistics" ) - - -o = s:option( Flag, "enable", translate("Enable this plugin") ) -o.default = 0 - - -o = s:option(Flag, "__all", translate("Monitor all sensors")) -o:depends("enable", 1) -o.default = 1 -o.write = function() end -o.cfgvalue = function(self, sid) - local v = self.map:get(sid, "Sensor") - if v == nil or (type(v) == "table" and #v == 0) or (type(v) == "string" and #v == 0) then - return "1" - end -end - - -o = s:option(MultiValue, "Sensor", translate("Sensor list"), translate("Hold Ctrl to select multiple items or to deselect entries.")) -o:depends({enable = 1, __all = "" }) -o.widget = "select" -o.rmempty = true -o.size = 0 - -local sensorcli = io.popen("/usr/sbin/sensors -u -A") -if sensorcli then - local bus, sensor - - while true do - local ln = sensorcli:read("*ln") - if not ln then - break - elseif ln:match("^[%w-]+$") then - bus = ln - elseif ln:match("^[%w-]+:$") then - sensor = ln:sub(0, -2):lower() - if bus and sensor_types[sensor] then - o:value("%s/%s-%s" %{ bus, sensor_types[sensor], sensor }) - o.size = o.size + 1 - end - elseif ln == "" then - bus = nil - sensor = nil - end - end - - sensorcli:close() -end - - -o = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") ) -o.default = 0 -o.rmempty = true -o:depends({ enable = 1, __all = "" }) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua deleted file mode 100644 index 4ddfacc11..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua +++ /dev/null @@ -1,14 +0,0 @@ --- Copyright 2013 Freifunk Augsburg / Michael Wendland <michael@michiwend.com> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Splash Leases Plugin Configuration"), - translate("The splash leases plugin uses libuci to collect statistics about splash leases.")) - -s = m:section( NamedSection, "collectd_splash_leases", "luci_statistics" ) - -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 1 - -return m - diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua deleted file mode 100644 index a02b2be4f..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua +++ /dev/null @@ -1,33 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("TCPConns Plugin Configuration"), - translate( - "The tcpconns plugin collects information about open tcp " .. - "connections on selected ports." - )) - --- collectd_tcpconns config section -s = m:section( NamedSection, "collectd_tcpconns", "luci_statistics" ) - --- collectd_tcpconns.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_tcpconns.listeningports (ListeningPorts) -listeningports = s:option( Flag, "ListeningPorts", translate("Monitor all local listen ports") ) -listeningports.default = 1 -listeningports:depends( "enable", 1 ) - --- collectd_tcpconns.localports (LocalPort) -localports = s:option( Value, "LocalPorts", translate("Monitor local ports") ) -localports.optional = true -localports:depends( "enable", 1 ) - --- collectd_tcpconns.remoteports (RemotePort) -remoteports = s:option( Value, "RemotePorts", translate("Monitor remote ports") ) -remoteports.optional = true -remoteports:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua deleted file mode 100644 index bdf41b79b..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua +++ /dev/null @@ -1,29 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Thermal Plugin Configuration"), - translate("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 )") - ) - --- collectd_thermal config section -s = m:section( NamedSection, "collectd_thermal", "luci_statistics" ) - --- collectd_thermal.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_thermal.tz (Device) -tz = s:option( Value, "Device", translate("Monitor device(s) / thermal zone(s)"), - translate("Empty value = monitor all") ) -tz.optional = true -tz:depends( "enable", 1 ) - --- collectd_thermal.ignoreselected (IgnoreSelected) -ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") ) -ignoreselected.default = 0 -ignoreselected.optional = true -ignoreselected:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua deleted file mode 100644 index be79543b2..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua +++ /dev/null @@ -1,37 +0,0 @@ --- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Unixsock Plugin Configuration"), - translate( - "The unixsock plugin creates a unix socket which can be used " .. - "to read collected data from a running collectd instance." - )) - --- collectd_unixsock config section -s = m:section( NamedSection, "collectd_unixsock", "luci_statistics" ) - --- collectd_unixsock.enable -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - --- collectd_unixsock.socketfile (SocketFile) -socketfile = s:option( Value, "SocketFile" ) -socketfile.default = "/var/run/collect-query.socket" -socketfile:depends( "enable", 1 ) - --- collectd_unixsock.socketgroup (SocketGroup) -socketgroup = s:option( Value, "SocketGroup" ) -socketgroup.default = "nobody" -socketgroup.rmempty = true -socketgroup.optional = true -socketgroup:depends( "enable", 1 ) - --- collectd_unixsock.socketperms (SocketPerms) -socketperms = s:option( Value, "SocketPerms" ) -socketperms.default = "0770" -socketperms.rmempty = true -socketperms.optional = true -socketperms:depends( "enable", 1 ) - -return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua deleted file mode 100644 index 5e32da7ff..000000000 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua +++ /dev/null @@ -1,14 +0,0 @@ --- Copyright 2013 Thomas Endt <tmo26@gmx.de> --- Licensed to the public under the Apache License 2.0. - -m = Map("luci_statistics", - translate("Uptime Plugin Configuration"), - translate("The uptime plugin collects statistics about the uptime of the system.")) - -s = m:section( NamedSection, "collectd_uptime", "luci_statistics" ) - -enable = s:option( Flag, "enable", translate("Enable this plugin") ) -enable.default = 0 - -return m - diff --git a/applications/luci-app-statistics/po/bg/statistics.po b/applications/luci-app-statistics/po/bg/statistics.po index d70e78172..6fbe685c6 100644 --- a/applications/luci-app-statistics/po/bg/statistics.po +++ b/applications/luci-app-statistics/po/bg/statistics.po @@ -14,829 +14,1048 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -844,54 +1063,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -899,19 +1122,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -919,192 +1142,222 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" msgstr "" diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index 117176d12..2572385bb 100644 --- a/applications/luci-app-statistics/po/ca/statistics.po +++ b/applications/luci-app-statistics/po/ca/statistics.po @@ -16,306 +16,342 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Acció (objectiu)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Afegeix ordre per llegir valors" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Afegeix regla coincident" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Afegeix múltiples hosts separats per espai." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Afegeix ordre de notificació" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Família d’adreces" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Nombre totalitzat d’usuaris connectats" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Directori base" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Monitoratge bàsic" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" "En definir això, la CPU no serà una agregació de tots els processadors del " "sistema" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "Configuració de connectors dels commutadors de context de CPU" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "Freqüència de la CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "Configuració del connector de freqüència de CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Configuració del connector de CPU" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "Sortida CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Configuració del connector CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Emmagatzema en memòria cau les dades recollides de" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Interval de neteja de memòria cau" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Cadena" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Configuració Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -"Collectd és un petit dimoni per recollir dades de diverses fonts a través " -"dels connectors. En aquesta pàgina podeu canviar la configuració general del " -"dimoni Collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Configuració del connector Conntrack" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Configuració del connector DF" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Configuració del connector DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Interval de recol·lecció de dades" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Fitxer de definició de dades" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Interval d’IP de destinació" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Directori per als connectors del connectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Directori per a les subconfiguracions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Configuració del connector de disc" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Ús d'espai en disc" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Ús de disc" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Mostra el host »" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Mostra l'hora" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Configuració del connector d'adreça electrònica" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Adreça electrònica" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Activa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Activa aquest connector" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Configuració del connector exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Monitoreig de classe filter" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Tallafocs" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Neteja la memòria cau després de" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Readreçant entre adreces que reben connexions i adreces de servidors" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Connectors generals" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Gràfics" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Grup" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -323,7 +359,7 @@ msgstr "" "Ací pots definir ordres externes que s'iniciaran pel collectd per llegir " "certs valors. Els valors es llegiran des del stdout" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -333,7 +369,7 @@ msgstr "" "uns certs valors llindars. Els valors que condueixin a la invocació, " "alimentaran als programes stdin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -341,495 +377,675 @@ msgstr "" "Ací pots definir diversos criteris pels que es seleccionaran les regles " "iptables monitoritzades ." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Amfitrió" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Nom de l’amfitrió" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Configuració de connector IRQ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignora adreces origen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Interfície entrant" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Configuració de connector d'interfície" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfícies" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Interrupcions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Configuració del connector iptables" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Màquina que rep connexions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Port que rep connexions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Interfícies que reben connexions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Configuració de connector de càrrega" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Connexions màximes permeses" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Memòria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Configuració del connector de memòria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Monitoritza tots els ports locals que reben connexions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Monitoritza dispositius" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Monitoritza els discs i les particions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Monitoritza els tipus de sistema de fitxers" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Monitoritza màquines" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Monitoritza hosts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Monitoritza interrupcions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Monitoritza els ports locals" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Monitoritza punts de muntatge" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Monitoritza processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Monitoritza els ports remots" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Nom" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Nom de la regla" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Enllaç de xarxa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Configuració del connector d'enllaç de xarxa" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Xarxa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Configuració del connector de xarxa" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Connectors de xarxa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Protocol de xarxa" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Número de fils de recol·lecció de dades" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "Configuració del connector OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Crea només RRAs mitjans" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Opcions" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Interfície sortint" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Connectors de sortida" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Configuració del connector ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Configuració del connector de processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Processador" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Monitoreig Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "Factor RRD XFiles" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "Interval de batec de cor RRD" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "Interval de pas RRD" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Configuració del connector RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Files per RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Segons" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "Llista de sensors" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Sensors" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Configuració del connector Sensors" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Amfitrió del servidor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Port del servidor" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Monitoreig de classe shaping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Fitxer d'endoll" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Grup d'endoll" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Permisos d'endoll" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Rang d'IP origen" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Especifica què informació es recull sobre enllaços." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Especifica què informació es recull sobre rutes." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Especifica què informació es recull sobre la topologia global." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Estadístiques" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Directori d'emmagatzematge" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Directori d'emmagatzematge dels fitxers CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" "Emmagatzema els valors de dades com a relacions en comptes de com a valors " "absoluts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Marques de temps emmagatzemades" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Càrrega de sistema" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Connexions TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Configuració de connector TCPConns" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL pels paquets de xarxa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL per paquets ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Taula" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" "El connector de cpu recull estadístiques bàsiques sobre l'ús del processador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -837,7 +1053,7 @@ msgstr "" "El connector CSV desa les dades recollides en format CSV per ser processades " "posteriorment per programes externs." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -845,7 +1061,7 @@ msgstr "" "El connector DF recull dades sobre l'ús d'espai en disc de diferents " "dispositius, punts de muntatge i tipus de sistema de fitxers." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -853,7 +1069,7 @@ msgstr "" "El connector de disc recull estadístiques d'ús detallades per les particions " "seleccionades o per tot el disc." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -861,7 +1077,7 @@ msgstr "" "El connector DNS recull estadístiques detallades sobre el tràfic DNS a les " "interfícies seleccionades." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -873,11 +1089,11 @@ msgstr "" "es fa servir en conjunció amb Mail::SpamAssassin::Plugin. Plugin::Collectd " "també es pot utilitzar d'altres maneres." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -885,14 +1101,18 @@ msgstr "" "El connector exec inicia ordres externes per llegir valors des de o a " "processos externs quan s'arriba a certs valors de llindar." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "El connector d'interfície recull estadístiques de tràfic a les interfícies " "seleccionades." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -900,7 +1120,7 @@ msgstr "" "El connector iptables monitoritzarà les regles de tallafocs seleccionades i " "recollirà informacions sobre els bytes i paquests processats per regla." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -909,7 +1129,7 @@ msgstr "" "interrupció seleccionada. Si no se selecciona cap interrupció, es " "monitoritzen totes les interrupcions." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." @@ -917,17 +1137,17 @@ msgstr "" "El connector iwinfo recull estadístiques sobre la força de senyal, soroll i " "qualitat sense fil." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" "El connector de càrrega recull estadístiques sobre la càrrega de sistema " "general." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "El connector de memòria recull estadístiques sobre l'ús de memòria." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -935,7 +1155,7 @@ msgstr "" "El connector d'enllaç de xarxa recull informació extensa com estadístiques " "de qdisc-, class- i filter- per les interfícies seleccionades." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -948,7 +1168,7 @@ msgstr "" "transferiran a la instància del servidor de collectd, en el mode servidor la " "instància rep dades de les altres màquines." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -956,7 +1176,7 @@ msgstr "" "El connector de ping enviarà ICMP Echo Replies a les màquines seleccionades " "i mesurarà el temps d'anada i tornada en cada màquina." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -964,7 +1184,7 @@ msgstr "" "El connector de processor recollirà informacions com el temps de cpu, errors " "de pàgina i ús de memòria dels processos seleccionats." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -976,26 +1196,26 @@ msgstr "" "incorrectes comportarà un consum molt alt de memòria al directori temporal. " "Això pot inutilitzar el dispositiu!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1003,14 +1223,14 @@ msgstr "" "El connector TCPConns recull informació sobre les connexions TCP obertes en " "els ports seleccionats." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1018,28 +1238,28 @@ msgstr "" "El connector unixsock crea un socket Unix que es pot fer servir per llegir " "dades recollides d'una instància collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1047,129 +1267,216 @@ msgstr "" "Aquesta secció defineix en quines interfícies el collectd rebrà connexions " "entrants." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Aquesta secció defineix a quins servidors s'enviaran les dades recollides " "localment." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Intenta resoldre el nom de màquina (fqdn)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Configuració del connector UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "Nom UPS en format NUT ups@host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "Sock Unix" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Configuració de connector Unixsock" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Fitxer PID usat" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Usuari" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Monitoreig detallat" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Wireless" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "p.e. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "p.e. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "p.e. reject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "màx. 16 caràcters" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "redueix mida RRD" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "segons; múltiples separats per espais" +#~ msgid "Action (target)" +#~ msgstr "Acció (objectiu)" + +#~ msgid "Add matching rule" +#~ msgstr "Afegeix regla coincident" + +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Afegeix múltiples hosts separats per espai." + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd és un petit dimoni per recollir dades de diverses fonts a través " +#~ "dels connectors. En aquesta pàgina podeu canviar la configuració general " +#~ "del dimoni Collectd." + +#~ msgid "Destination ip range" +#~ msgstr "Interval d’IP de destinació" + +#~ msgid "Incoming interface" +#~ msgstr "Interfície entrant" + +#~ msgid "Name of the rule" +#~ msgstr "Nom de la regla" + +#~ msgid "Network protocol" +#~ msgstr "Protocol de xarxa" + +#~ msgid "Options" +#~ msgstr "Opcions" + +#~ msgid "Outgoing interface" +#~ msgstr "Interfície sortint" + +#~ msgid "Source ip range" +#~ msgstr "Rang d'IP origen" + +#~ msgid "e.g. br-ff" +#~ msgstr "p.e. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "p.e. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "p.e. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "màx. 16 caràcters" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "segons; múltiples separats per espais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "interfícies de servidor" +#~ msgid "server interfaces" +#~ msgstr "interfícies de servidor" diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index c99029531..e861feceb 100644 --- a/applications/luci-app-statistics/po/cs/statistics.po +++ b/applications/luci-app-statistics/po/cs/statistics.po @@ -12,306 +12,342 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "APC UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "Konfigurace modulu APCUPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Absolutní hodnoty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Akce (cíl)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Přidat příkaz pro čtení hodnot" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Přidat pravidlo pro výběr" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Přidat více hostů, oddělených mezerou" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Přidat příkaz pro upozornění" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Adresní rodina" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Souhrnný počet připojených uživatelů" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Základní adresář" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Základní sledování" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 #, fuzzy msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "Tímto nastavením nebude CPU souhrnem všech procesorů v systému" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "Konfigurace modulu Přepínání kontextu CPU" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "Frekvence CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "Konfigurace pluginu pro frekvenci CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Nastavení CPU pluginu" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV výstup" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Nastavení CSV pluginu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Mezipamět pro ukládání dat" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Interval vyprazdňování mezipaměti" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Řetěz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "CollectLinks" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "CollectRoutes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "CollectTopology" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Nastavení Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd je malý daemon pro shromažďování dat z nejrůznějších zdrojů zkrz " -"rozdílné pluginy. Na této stránce můžete změnit obecná nastavení daemonu " -"collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Nastavení pluginu Conntrack" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "Přepínaní kontextu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Nastavení pluginu DF" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Nastavení DNS pluginu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Interval sběru dat" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Definiční soubor DataSets" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Rozsah cílových IP adres" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Adresář s pluginy pro collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Adresář pro pod-nastavení" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Nastavení Disk pluginu" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Využití místa na disku" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Využití disku" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Zobrazit hostitele »" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Zobrazit časové rozpětí »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Nastavení E-Mail pluginu" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "E-mail" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "Prázdná hodnota = sledovat vše" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Povolit" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Povolit tento plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Entropie" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Konfigurace modulu entropie" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Nastavení pluginu Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "Další položky" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Sledování třídy filtrů" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Brána firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Vyprázdnit cache po" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 #, fuzzy msgid "Forwarding between listen and server addresses" msgstr "Přesměrování mezi naslouchajícími a serverovými adresami" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "Shromažďovat kompresní statistiku" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Obecné pluginy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "Vytvářet samostatný graf pro každého přihlášeného uživatele" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Grafy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Skupina" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -320,7 +356,7 @@ msgstr "" "daemonem collectd. Ze standardního výstupu příkazů vezme collectd potřebné " "hodnoty." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -330,7 +366,7 @@ msgstr "" "při dosažení určitých mezních hodnot. Hodnoty vedoucí ke spuštění budou " "předány volanému programu na standardní vstup." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -338,496 +374,688 @@ msgstr "" "Zde můžete definovat různá kritéria, podle kterých budou vybrána sledovaná " "pravidla iptables." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" -"Chcete-li vybrat více nebo zrušit výběr některých položek, podržte klávesu " -"Ctrl." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Hostitel" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Název počítače" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "IP nebo hostname, odkud získá výstup z txtinfo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Nastavení IRQ pluginu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignorovat zdrojové adresy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Příchozí rozhraní" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Nastavení Interface pluginu" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Síťová rozhraní" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Přerušení" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Interval pro ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Nastavení Iptables pluginu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "Pokud nic nevyberete, rozhraní pro monitoring budou určena automaticky." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Naslouchající hostitel" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Naslouchající port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Rozhraní naslouchajícího" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Načíst nastavení pluginů" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Maximální množství povolených spojení" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Paměť" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Nastavení pluginu Memory (Paměť)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Sledovat vše kromě vybraných" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Monitorovat všechny naslouchající porty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Sledovat všechny senzory" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "Sledovat zařízení/teplotní zónu(y)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Sledovat zařízení" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Sledovat disky a oddíly" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Sledovat typy souborových systémů" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "Sledovat hostitele" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Sledovat hostitele" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Sledovat rozhraní" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Sledovat přerušení" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Sledovat místní porty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Sledovat přípojné body" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Sledovat procesy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Sledovat vzdálené porty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "Další podrobnosti o využití frekvencí a přechodech" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Název" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Název pravidla" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Nastavení pluginu Netlink" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Síť" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Nastavení pluginu Síť" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Síťové pluginy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Síťový protokol" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Počet vláken pro sběr dat" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "Nastavení pluginu OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "Nastavení OpenVPN pluginu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "Stavové soubory OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Možnosti" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Odchozí rozhraní" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Výstupní pluginy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "Procentní hodnoty" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Nastavení pluginu Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "Port pro komunikaci apcupsd" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Procesy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Nastavení pluginu Procesy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "Sledované procesy (oddělte mezerou)" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Procesor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Sledování Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 #, fuzzy msgid "RRD XFiles Factor" msgstr "RRD XFiles Factor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Nastavení pluginu RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "Zpráva o CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "Zpráva o stavu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "Zpráva v procentech" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Řádky na jeden RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Skript" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Sekundy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "Seznam senzorů" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Sensory" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Nastavení pluginu pro sensory" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Hostitel serveru" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Port serveru" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "Nastavení" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Sledování omezení šířky pásma" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "Zobrazit maximální hodnoty místo průměrů" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Soubor socketu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Skupina socketů" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Oprávnění socketu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Rozsah zdrojových IP" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Určuje, jaké informace sbírat o odkazech." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Určuje, jaké informace sbírat o cestách" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Určuje, jaké informace sbírat o globální topologii" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Statistiky" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Úložný adresář" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Úložný adresář pro soubory CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Ukládat data jako poměrné hodnoty místo absolutních" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Uložené časové rozsahy" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Zatížení systému" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP spojení" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Nastavení pluginu TCPConns" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL pro síťové pakety" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL pro pakety pingu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tabulka" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "Modul APCUPS shromažďuje statistické údaje o UPS zařízeních firmy APC." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "Modul NUT čte informace o nepřerušitelných zdrojích napájení (UPS)." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "Modul OLSRd čte informace o mesh sítích z txtinfo pluginu OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "Modul OpenVPN shromažďuje informace o aktuálním stavu připojení VPN." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "Plugin Conntrack shromažďuje statistiky o počtu sledovaných spojení." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "Plugin CPU shromažďuje základní statistiky o vytížení procesoru." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -835,7 +1063,7 @@ msgstr "" "Plugin CSV ukládá shromážděná data ve formátu CSV. Data mohou být později " "zpracována externími programy." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -843,7 +1071,7 @@ msgstr "" "Plugin DF shromažďuje statistiky o využití diskového prostoru na různých " "zařízeních, přípojných bodech nebo typech souborových systémů." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -851,7 +1079,7 @@ msgstr "" "Plugin Disk shromažďuje podrobné statistiky o využívání vybraného oddílu " "nebo celého disku." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -859,7 +1087,7 @@ msgstr "" "Plugin DNS shromažďuje podrobné statistky o provozu, vztahující se k DNS, na " "vybraných rozhraních." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -871,11 +1099,11 @@ msgstr "" "použití ve spojení s Mail::SpamAssasin::Plugin::Collectd, ale stejně dobře " "může být využit jinak." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "Modul entropie shromažďuje statistiku o dostupné entropii." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -883,13 +1111,17 @@ msgstr "" "Modul exec spouští externí příkazy pro čtení hodnot z externích procesů nebo " "pro jejich oznamování při dosažení určitých mezních hodnot." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "Plugin Interface shromažďuje statistiky o provozu na vybraných rozhraních." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -897,7 +1129,7 @@ msgstr "" "Plugin Iptables monitoruje vybraná pravidla firewallu a shromažďuje " "informace o zpracovaných bajtech a paketech pro každé pravidlo." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -905,7 +1137,7 @@ msgstr "" "Plugin IRQ monitoruje množství požadavků na přerušení pro každé vybrané " "přerušení. Pokud není vybráno žádné přerušení, jsou monitorována všechna." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." @@ -913,15 +1145,15 @@ msgstr "" "Plugin Iwinfo shromažďuje statistiky o síle, šumu a kvalitě bezdrátového " "signálu." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "Plugin Load shromažďuje statistiky o obecné zátěži systému." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "Plugin Memory shromažďuje statistiky o využití paměti." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -929,7 +1161,7 @@ msgstr "" "Plugin Netlink shromažďuje rozšířené informace jako statistiky qdisk, class " "a filtru pro vybraná rozhraní." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -941,7 +1173,7 @@ msgstr "" "klienta jsou lokálně shromažďovaná data odeslána instanci serveru, jako " "server naopak collectd přijímá data z ostatních hostitelů." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -949,7 +1181,7 @@ msgstr "" "Plugin Ping bude odesílat ICMP echo odpovědi vybraným hostům a měřit " "zpáteční čas pro každého hosta." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -957,7 +1189,7 @@ msgstr "" "Plugin Processes shromažďuje informace o procesorovém času, výpadcích " "stránky a využití paměti vybranými programy." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -969,7 +1201,7 @@ msgstr "" "spotřebu paměti v dočasném adresáří. Zařízení ze tak může stát nepoužitelným!" "</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -977,13 +1209,13 @@ msgstr "" "Modul senzorů používá rozhraní Linux Sensors ke shromažďování " "environmentálních statistik." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -993,7 +1225,7 @@ msgstr "" "sběru dat a <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> pro " "vykreslování diagramů." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1001,7 +1233,7 @@ msgstr "" "Plugin Tcpconns shromažďuje informace o otevřených TCP spojeních na " "vybraných portech." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -1011,7 +1243,7 @@ msgstr "" "class/thermal/*/temp ('*' označuje zařízení, které se má číst, např. " "thermal_zone1)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1019,28 +1251,28 @@ msgstr "" "Plugin Unixsock vytváří unixový socket, které může být využit pro čtení dat " "z běžící instance collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "Modul uptime shromažďuje statistiku o době běhu systému." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "Teploty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "Nastavení pluginu pro teploty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "Tento modul shromažďuje statistiku přepnutí kontextu procesoru." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "Tento modul shromažďuje statistiku o škálování frekvence procesoru." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1048,131 +1280,234 @@ msgstr "" "Tato sekce určuje, na kterých rozhraních bude collectd čekat na příchozí " "spojení." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "Tato sekce určuje, na které servery budou odeslána shromážděná data." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Zkuste vyhledat plně kvalifikovaný název hostitele" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Konfigurace pluginu UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "Název UPS ve formátu NUT ups@hostitel" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Konfigurace pluginu Unixsock" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Doba běhu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "Nastavení pluginu Uptime" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "Použít vylepšené schéma pojmenování" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Použitý soubor PID (identifikátoru procesu)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Uživatel" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Podrobný monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" "Je-li nastaveno na 'povoleno', zaznamenává metriky dle stavu (systém, " "uživatel, nečinnost)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "Je-li nastaveno na 'povoleno', zaznamenávájí se absolutní hodnoty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "Je-li nastaveno na 'povoleno', zaznamenávají se percentuální hodnoty" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Bezdrátová síť" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "Nastavení pluginu Wireless Iwinfo" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "Pro povolení dalších statistik můžete nainstalovat další collectd-mod-* " "zásuvné moduly." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "Nastavení modulu cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "např. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" +msgstr "redukovaná velikost rrd" + +#~ msgid "Action (target)" +#~ msgstr "Akce (cíl)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "např. br-lan" +#~ msgid "Add matching rule" +#~ msgstr "Přidat pravidlo pro výběr" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "např. reject-with tcp-reset" +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Přidat více hostů, oddělených mezerou" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "max. 16 znaků" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd je malý daemon pro shromažďování dat z nejrůznějších zdrojů zkrz " +#~ "rozdílné pluginy. Na této stránce můžete změnit obecná nastavení daemonu " +#~ "collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "redukovaná velikost rrd" +#~ msgid "Destination ip range" +#~ msgstr "Rozsah cílových IP adres" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "" +#~ "Chcete-li vybrat více nebo zrušit výběr některých položek, podržte " +#~ "klávesu Ctrl." + +#~ msgid "Incoming interface" +#~ msgstr "Příchozí rozhraní" + +#~ msgid "Monitor all sensors" +#~ msgstr "Sledovat všechny senzory" + +#~ msgid "Name of the rule" +#~ msgstr "Název pravidla" + +#~ msgid "Network protocol" +#~ msgstr "Síťový protokol" + +#~ msgid "Options" +#~ msgstr "Možnosti" + +#~ msgid "Outgoing interface" +#~ msgstr "Odchozí rozhraní" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "Sledované procesy (oddělte mezerou)" + +#~ msgid "Source ip range" +#~ msgstr "Rozsah zdrojových IP" + +#~ msgid "e.g. br-ff" +#~ msgstr "např. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "např. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "např. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "max. 16 znaků" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "sekundy, více hodnot oddělte pomocí mezery" +#~ msgid "seconds; multiple separated by space" +#~ msgstr "sekundy, více hodnot oddělte pomocí mezery" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "rozhraní serveru" +#~ msgid "server interfaces" +#~ msgstr "rozhraní serveru" diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index ee9984239..efab4f160 100644 --- a/applications/luci-app-statistics/po/de/statistics.po +++ b/applications/luci-app-statistics/po/de/statistics.po @@ -14,304 +14,340 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Absolute Werte" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Aktion (Ziel)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Kommando zum Werte einlesen hinzufügen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Auswahlregel hinzufügen" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Mehrere Hosts durch Leerzeichen getrennt hinzufuegen." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Benachrichtigungskommando hinzufügen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Adressfamilie" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Anzahl aller Verbundenen Benutzer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Basisverzeichnis" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Schnittstellen einfach überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "CPU-Frequenz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "CPU-Frequenz Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "CPU Plugin Konfiguration" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV Ausgabe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "CSV Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Zwischenspeicherzeit für gesammelte Daten" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Cache-Leerungsintervall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Kette (Chain)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "Informationen über Links sammeln (CollectdLinks)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "Informationen über Routen sammeln (CollectRoutes)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "Informationen über die Netzwerktopologie sammeln (CollectTopology)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Collectd Einstellungen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -"Collectd ist ein schlankes Dienstprogramm zum Sammeln von Systemdaten aus " -"verschiedenen Quellen mittels diverser Plugins. Auf dieser Seite können " -"generelle Einstellungen für den Collectd-Daemon vorgenommen werden." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack Plugin Einstellungen" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "DF Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "DNS Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Daten-Sammelintervall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Dataset-Definitionen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Ziel-IP-Bereich" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Verzeichnis für Collectd-Plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Verzeichnis für Unterkonfigurationen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Disk Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Plattenspeicher" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Plattenauslastung" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Anzeigeserver" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Zeitspanne zeigen »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "E-Mail Plugin Konfiguration" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Email" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Aktivieren" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Plugin aktivieren" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Entropie" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Entropie Plugin Konfiguration" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Exec Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Filterklassen überwachen" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Leerungsintervall für Zwischenspeicher" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Weiterleitung zwischen Listen- und Server-Adressen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Diagramme" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Gruppe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -320,7 +356,7 @@ msgstr "" "gestartet werden um Statistik-Werte einzulesen. Die Werte werden dabei vom " "STDOUT des aufgerufenen Programmes gelesen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -331,7 +367,7 @@ msgstr "" "welche die Benachrichtigung ausgelöst haben werden dabei an den STDIN des " "aufgerufenen Programmes übergeben." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -339,473 +375,645 @@ msgstr "" "Hier werden die Kriterien festgelegt nach welchen die zu überwachenden " "Firewall-Regeln ausgewählt werden." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Hostname" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "IP-Adresse oder Hostname zum Abfragen der Txtinfo-Ausagabe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "IRQ Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Quelladressen ignorieren" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "eingehende Schnittstelle" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Interface Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Schnittstellen" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Interrupts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Intervall zwischen den Pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Iptables Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "Nichts auswählen um die zu überwachende Schnittstelle automatisch zu " "bestimmen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Listen-Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Listen-Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Listen-Schnittstelle" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Load Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Maximale Anzahl erlaubter Verbindungen" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Hauptspeicher" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Memory-Plugin-Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Alle bis auf Angegebene überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Alle durch lokale Dienste genutzten Ports überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Geräte überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Geräte und Partitionen überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Datesystemtypen überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Hosts überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Schnittstellen überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Interrups überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "lokale Ports überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Mount-Punkte überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Überwachte Prozesse" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "entfernte Ports überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Name" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Name der Regel" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Netlink Plugin Konfiguration" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Netzwerk" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Network Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Netzwerkplugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Netzwerkprotokoll" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Anzahl paralleler Sammelprozesse" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "OLSRd-Plugin-Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Nur 'average' RRAs erzeugen" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Optionen" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "ausgehende Schnittstelle" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Ausgabeplugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Ping Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Prozesse" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Prozess Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "Zu überwachende Prozesse (getrennt durch Leerzeichen)" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Prozessor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Queue Discipline überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "RRD XFiles Faktor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "RRD Heartbeatintervall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "RRD Schrittintervall" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "RRDTool Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Spalten pro RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Skript" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Sekunden" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Server-Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Server-Port" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Shapingklassen überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Socket-Datei" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Socket-Nutzergruppe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Socket-Berechtigungen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Quell-IP-Bereich" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Bestimmt die zu sammelnden Per-Link-Informationen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Bestimmt die zu sammelnden Per-Route-Informationen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Bestimmt die zu sammelnden Informationen der globalen Topologie." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Statistiken" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Speicherverzeichnis" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Speicherverzeichnis für die CSV-Dateien" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Werte nicht absolut sondern als Raten speichern" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "gespeicherte Zeitspannen" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Systemlast" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP-Verbindungen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "TCPConns Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL für Netzwerkpakete" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL für Ping Pakete" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tabelle" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." @@ -813,13 +1021,21 @@ msgstr "" "Das OLSRd-Plugin liest Informationen über Meshnetzwerke aus der OLSR-Txtinfo-" "Erweiterung." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -827,12 +1043,12 @@ msgstr "" "Das Conntrack-Plugin sammelt Daten über die Anzahl der verfolgten " "Verbindungen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" "Das CPU-Plugin sammelt grundlegende Statistiken über die Prozessorauslastung." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -840,7 +1056,7 @@ msgstr "" "Das CSV-Plugin speichert die gesammelten Daten im CSV-Format, geeignet für " "die Weiterverarbeitung durch externe Programme." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -848,7 +1064,7 @@ msgstr "" "Das DF-Plugin sammelt Statistiken über den Speicherverbrauch auf " "verschiedenen Geräten, Mount-Punkten oder Dateisystemtypen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -856,7 +1072,7 @@ msgstr "" "Das Disk-Plugin sammelt detaillierte Statistiken über die Auslastung auf " "ausgewählten Festplatten und Partitionen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -864,7 +1080,7 @@ msgstr "" "Das DNS-Plugin sammelt detaillierte Statistiken über DNS-bezogenen Verkehr " "auf ausgewählten Schnittstellen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -876,11 +1092,11 @@ msgstr "" "Plugin ist primär für die Verwendung zusammen mit Mail::SpamAssasin::Plugin::" "Collectd gedacht, kann aber auch anderweitig verwendet werden." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -888,14 +1104,18 @@ msgstr "" "Das Exec-Plugin startet externe Kommandos um Werte einzulesen oder um " "Benachrichtigungen auszulösen falls bestimmte Grenzwerte erreicht werden." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "Das Interface-Plugin sammelt allgemeine Verkehrsstatistiken auf ausgewählten " "Schnittstellen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -903,7 +1123,7 @@ msgstr "" "Das Iptables-Plugin überwacht ausgewählte Firewall-Regeln und sammelt Werte " "über die Anzahl der verarbeiteten Pakete und Bytes." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -912,7 +1132,7 @@ msgstr "" "ausgewählten Interrupt. Wird kein Interrupt ausgewählt überwacht das Plugin " "alle im System vorhandenen Interrupts." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." @@ -920,16 +1140,16 @@ msgstr "" "Das iwinfo-Plugin sammelt Statistiken über die WLAN-Signalstärke, den " "Rauschpegel und die Signalqualität." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "Das Load-Plugin sammelt Informationen über die allgemeine Systemlast." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" "Das memory-Plugin sammelt Statistiken über die RAM-Auslastung des Systems." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -937,7 +1157,7 @@ msgstr "" "Das Netlink-Plugin sammelt erweiterte QoS-Informationen wie QDisc-, Class- " "und Filter-Statistiken auf ausgewählten Schnittstellen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -950,7 +1170,7 @@ msgstr "" "an einen Collectd-Server übermittelt, im Server-Modus empfängt die lokale " "Instanz Daten von anderen Installationen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -958,7 +1178,7 @@ msgstr "" "Das Ping-Plugin sendet ICMP-Echo-Requests an ausgewählte Hosts und misst die " "Antwortzeiten für jede Adresse." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -966,7 +1186,7 @@ msgstr "" "Das Prozess-Plugin sammelt Statistiken über Prozess-Zeit, Speicher-Fehler " "und Speicher-Verbrauch ausgewählter Prozesse" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -979,26 +1199,26 @@ msgstr "" "Speicherverbrauch im temporären Verzeichnis. Das kann das Gerät unbrauchbar " "machen, da Systemspeicher für den regulären Betrieb fehlt!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1006,14 +1226,14 @@ msgstr "" "Das TCPConns-Plugin sammelt Informationen über offene TCP-Verbindungen auf " "ausgewählten Ports." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1021,28 +1241,28 @@ msgstr "" "Das Unixsock-Plugin erstellt einen Unix-Socket über welchen gesammelte Werte " "aus der laufenden Collectd-Instanz ausgelesen werden können." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1050,129 +1270,219 @@ msgstr "" "Diese Sektion legt fest auf welchen Schnittstellen Collectd auf eingehende " "Verbindungen wartet." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Diese Sektion legt fest zu welchen Collectd-Servern die lokal gesammelten " "Daten gesendet werden." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "automatisch vollen Hostnamen herausfinden" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "USV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Einstellungen des USV-Plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "Name der USV in NUT im Format usv@host " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Unixsock Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Laufzeit" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Pfad zu PID-Datei" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Nutzer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Schnittstellen detailliert überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "WLAN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "Wireless-iwinfo Plugin Konfiguration" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "z.B. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "z.B. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "z.B. reject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "max. 16 Buchstaben" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "reduziert die RRD Größe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "mehrere mit Leerzeichen trennen" +#~ msgid "Action (target)" +#~ msgstr "Aktion (Ziel)" + +#~ msgid "Add matching rule" +#~ msgstr "Auswahlregel hinzufügen" + +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Mehrere Hosts durch Leerzeichen getrennt hinzufuegen." + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd ist ein schlankes Dienstprogramm zum Sammeln von Systemdaten aus " +#~ "verschiedenen Quellen mittels diverser Plugins. Auf dieser Seite können " +#~ "generelle Einstellungen für den Collectd-Daemon vorgenommen werden." + +#~ msgid "Destination ip range" +#~ msgstr "Ziel-IP-Bereich" + +#~ msgid "Incoming interface" +#~ msgstr "eingehende Schnittstelle" + +#~ msgid "Name of the rule" +#~ msgstr "Name der Regel" + +#~ msgid "Network protocol" +#~ msgstr "Netzwerkprotokoll" + +#~ msgid "Options" +#~ msgstr "Optionen" + +#~ msgid "Outgoing interface" +#~ msgstr "ausgehende Schnittstelle" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "Zu überwachende Prozesse (getrennt durch Leerzeichen)" + +#~ msgid "Source ip range" +#~ msgstr "Quell-IP-Bereich" + +#~ msgid "e.g. br-ff" +#~ msgstr "z.B. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "z.B. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "z.B. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "max. 16 Buchstaben" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "mehrere mit Leerzeichen trennen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "Server-Schnittstellen" +#~ msgid "server interfaces" +#~ msgstr "Server-Schnittstellen" diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index 291ed9df2..64f8ebb76 100644 --- a/applications/luci-app-statistics/po/el/statistics.po +++ b/applications/luci-app-statistics/po/el/statistics.po @@ -14,834 +14,1050 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 #, fuzzy msgid "Base Directory" msgstr "Κατάλογος βάσης" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "Έξοδος CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Ρυθμίσεις Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -"Το Collectd είναι ένας μικρός δαίμονας για τη συλλογή δεδομένων από διάφορες " -"πηγές μέσω διάφορων προσθέτων. Σε αυτή τη σελίδα μπορείτε να αλλάξετε τις " -"γενικές ρυθμίσεις του δαίμονα collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Περίοδος συλλογής δεδομένων" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Αρχείο ορισμού συνόλων δεδομένων" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Κατάλογος για πρόσθετα collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 #, fuzzy msgid "Directory for sub-configurations" msgstr "Κατάλογος υπο-ρυθμίσεων" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Χρήση Χώρου στον δίσκο" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Χρήση Δίσκου" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Εμφάνιση χρονικού εύρους »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Ηλ. Ταχυδρομείο" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Τείχος προστασίας" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Γραφικές παραστάσεις" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Όνομα υπολογιστή" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Διεπαφές" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Διακοπές" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Μνήμη" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Όνομα κανόνα" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Δίκτυο" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Πρόσθετα δικτύου" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Αριθμός νημάτων για τη συλλογή δεδομένων" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Πρόσθετα εξόδου" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Διεργασίες" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Επεξεργαστής" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Δευτερόλεπτα" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Στατιστικά" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Φόρτος Συστήματος" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Συνδέσεις TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Πίνακας" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -849,54 +1065,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -904,19 +1124,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -924,192 +1144,240 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Αρχείο PID σε χρήση" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Ασύρματο" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "π.χ. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "π.χ. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Το Collectd είναι ένας μικρός δαίμονας για τη συλλογή δεδομένων από " +#~ "διάφορες πηγές μέσω διάφορων προσθέτων. Σε αυτή τη σελίδα μπορείτε να " +#~ "αλλάξετε τις γενικές ρυθμίσεις του δαίμονα collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "" +#~ msgid "Name of the rule" +#~ msgstr "Όνομα κανόνα" + +#~ msgid "e.g. br-ff" +#~ msgstr "π.χ. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "π.χ. br-lan" diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index 0938262ac..b1c861bc1 100644 --- a/applications/luci-app-statistics/po/en/statistics.po +++ b/applications/luci-app-statistics/po/en/statistics.po @@ -13,304 +13,340 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.1.1\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Add command for reading values" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Add matching rule" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Add notification command" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Base Directory" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Basic monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "CPU Plugin Configuration" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV Output" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "CSV Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Cache collected data for" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Cache flush interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Chain" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Collectd Settings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "DF Plugin Configuration" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "DNS Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Data collection interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Datasets definition file" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Directory for collectd plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Directory for sub-configurations" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Disk Plugin Configuration" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Disk Space Usage" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Disk Usage" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Display timespan »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "E-Mail Plugin Configuration" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Email" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Enable this plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Exec Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Filter class monitoring" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Flush cache after" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Forwarding between listen and server addresses" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Graphs" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -318,7 +354,7 @@ msgstr "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -328,7 +364,7 @@ msgstr "" "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -336,492 +372,672 @@ msgstr "" "Here you can define various criteria by which the monitored iptables rules " "are selected." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Hostname" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "IRQ Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignore source addresses" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Interface Plugin Configuration" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Interrupts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Iptables Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Listen host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Listen port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Listener interfaces" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Load Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Maximum allowed connections" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Monitor all local listen ports" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Monitor devices" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Monitor disks and partitions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Monitor filesystem types" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Monitor hosts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Monitor interrupts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Monitor local ports" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Monitor mount points" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Monitor processes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Monitor remote ports" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Name of the rule" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Netlink Plugin Configuration" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Network" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Network Plugin Configuration" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Network plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Network protocol" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Number of threads for data collection" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Only create average RRAs" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Options" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Outgoing interface" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Output plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Ping Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Processes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Processes Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Processor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Qdisc monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "RRD XFiles Factor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "RRD heart beat interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "RRD step interval" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "RRDTool Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Rows per RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Seconds" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Server host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Server port" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Shaping class monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Storage directory" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Storage directory for the csv files" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Store data values as rates instead of absolute values" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Stored timespans" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "System Load" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP Connections" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "TCPConns Plugin Configuration" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL for network packets" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL for ping packets" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Table" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "The cpu plugin collects basic statistics about the processor usage." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -829,7 +1045,7 @@ msgstr "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -837,7 +1053,7 @@ msgstr "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -845,7 +1061,7 @@ msgstr "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -853,7 +1069,7 @@ msgstr "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -865,11 +1081,11 @@ msgstr "" "to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can " "be used in other ways as well." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -877,13 +1093,17 @@ msgstr "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "The interface plugin collects traffic statistics on selected interfaces." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -891,7 +1111,7 @@ msgstr "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -899,21 +1119,21 @@ msgstr "" "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." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "The load plugin collects statistics about the general system load." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -921,7 +1141,7 @@ msgstr "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -933,7 +1153,7 @@ msgstr "" "client mode locally collected data is transferred to a collectd server " "instance, in server mode the local instance receives data from other hosts." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -941,7 +1161,7 @@ msgstr "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -949,7 +1169,7 @@ msgstr "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -961,26 +1181,26 @@ msgstr "" "values will result in a very high memory consumption in the temporary " "directory. This can render the device unusable!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -988,14 +1208,14 @@ msgstr "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1003,28 +1223,28 @@ msgstr "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1032,128 +1252,212 @@ msgstr "" "This section defines on which interfaces collectd will wait for incoming " "connections." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "This section defines to which servers the locally collected data is sent to." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Try to lookup fully qualified hostname" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Unixsock Plugin Configuration" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Used PID file" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Verbose monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Wireless" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "e.g. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "e.g. reject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "max. 16 chars" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "reduces rrd size" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "seconds; multiple separated by space" +#~ msgid "Action (target)" +#~ msgstr "Action (target)" + +#~ msgid "Add matching rule" +#~ msgstr "Add matching rule" + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." + +#~ msgid "Destination ip range" +#~ msgstr "Destination ip range" + +#~ msgid "Incoming interface" +#~ msgstr "Incoming interface" + +#~ msgid "Name of the rule" +#~ msgstr "Name of the rule" + +#~ msgid "Network protocol" +#~ msgstr "Network protocol" + +#~ msgid "Options" +#~ msgstr "Options" + +#~ msgid "Outgoing interface" +#~ msgstr "Outgoing interface" + +#~ msgid "Source ip range" +#~ msgstr "Source ip range" + +#~ msgid "e.g. br-ff" +#~ msgstr "e.g. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "e.g. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "e.g. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "max. 16 chars" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "seconds; multiple separated by space" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "server interfaces" +#~ msgid "server interfaces" +#~ msgstr "server interfaces" diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index a81f7098d..e28b815d7 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/statistics.po @@ -14,306 +14,342 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "APC UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "Configuración del complemento APCUPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Acción (objetivo)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Añadir orden para leer valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Añadir regla de coincidencia" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Añadir múltiples hosts separados por espacio." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Añadir orden de notificación" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Familia de direcciones" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Agregar número de usuarios conectados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Directorio de base" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Monitorización básica" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" "Al configurar esto, la CPU no es un agregado de todos los procesadores en el " "sistema" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "Configuración del complemento de conmutadores de contexto de CPU" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "Frecuencia de CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "Configuración del complemento de frecuencia de la CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Configuración del complemento de CPU" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "Salida en CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Configuración del complemento de CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Almacenar datos recopilados por" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Intervalo de limpieza de antememoria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Cadena" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "Enlaces" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "Rutas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "CollectTopology" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Configuración de Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd es un demonio para la recolección de datos desde varias fuentes a " -"través de la utilización de diferentes plugins. Aquí puede cambiar la " -"configuración general del demonio que maneja collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Seguimiento" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Configuración del seguimiento" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "Conmutadores de contexto" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Configuración del complemento DF" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Configuración del complemento DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Intervalo de recolección de datos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Archivo de definición de conjunto de datos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Intervalo de IP de destino" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Directorio para los complementos de connectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Directorio para las subconfiguraciones" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Configuración del complemento Disco" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Uso de espacio en disco" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Uso de disco" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Mostrar Host »" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Mostrar lapso de tiempo »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Configuración del complemento Correo electrónico" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Correo electrónico" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "Valor vacío = monitorizar todo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Activar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Activar este complemento" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Entropía" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Configuración del complemento Entropía" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Configuración del plugin Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "Ítems extra" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Monitorización del filtro de clases" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Vaciar caché tras" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Reenviar entre las direcciones de escucha y servidor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "Recopilar estadísticas de compresión" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Complementos generales" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "Genera un gráfico separado para cada usuario registrado" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Gráficos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Grupo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -321,7 +357,7 @@ msgstr "" "Aquí puede definir los comandos externos que iniciará collectd para leer " "ciertos valores. Los valores se leen desde la salida estándar (stdout)." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -330,7 +366,7 @@ msgstr "" "Aquí puede definir los comandos externos que iniciará collectd cuando se " "alcancen ciertos valores umbral." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -338,79 +374,85 @@ msgstr "" "Aquí puede definir varios criterios de selección de reglas de iptables " "monitorizadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" -"Mantenga presionada la tecla Ctrl para seleccionar varios elementos o para " -"deseleccionar entradas." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Nombre de host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "IP o nombre de máquina desde la que obtener la salida de txtinfo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Configuración del plugin IRQ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignorar direcciones de origen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Interfaz de entrada" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Configuración del interfaz de plugins" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Interrupciones" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Intervalo entre pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Configuración del plugin Iptables" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "No marcar para determinar automáticamente que interfaces monitorizar." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Máquina de escucha" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Puerto" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Interfaces para escuchar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Configuración del plugin de carga" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" @@ -418,126 +460,272 @@ msgstr "" "Los valores máximos para un período se pueden usar en lugar de los promedios " "cuando no se usa 'only average RRAs'" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Máximo número de conexiones" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Memoria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Configuración del plugin Memoria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Monitorizar todos menos los especificados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Monitorizar todos los puertos de escucha locales" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Monitorear todos los sensores" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "Dispositivo(s) de monitoreo / zona(s) térmica(es)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Dispositivos a monitonizar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Monitorizar discos y particiones" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Monitorizar tipos de sistema de archivos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "Monitor de host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Monitorizar máquinas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Monitorizar interfaces" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Monitorizar interrupciones" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Monitorizar puertos locales" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Monitorizar puntos de montaje" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Monitorizar procesos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Monitorizar puertos remotos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "Más detalles sobre el uso de frecuencia y las transiciones" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Nombre" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Nombre de la regla" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Enlace de red" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Configuración del plugin \"enlace de red\"" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Red" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Configuración del plugin \"Red\"" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Plugins de red" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Protocolo de red" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -546,271 +734,289 @@ msgstr "" "archivos *.rrd, el directorio de almacenamiento y todos sus directorios " "principales deben ser legibles en todo el mundo." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Número de hilos para recolección de datos" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "Configuración del plugin \"OLSRd\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Crear sólo RRAs medias" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "Configuración del complemento \"OpenVPN\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "Archivos de estado de OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Opciones" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Interfaz de salida" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Plugins de salida" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "Valores porcentuales" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Configuración del plugin \"Ping\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Puerto" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "Puerto para comunicación apcupsd" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Procesos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Configuración del plugin \"Procesos\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "Procesos a monitorizar (separados por espacios)" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Procesador" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Monitorización Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "Factor XFiles RRD" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "Intervalo de pulso RRD" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "Intervalo de paso RRD" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "Herramienta RRD" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Configuración del plugin \"Herramienta RRD\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "Informe por CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "Informe por estado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "Informe en porcentaje" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Filas por RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Script" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "Lista de sensores" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Sensores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Configuración del plugin \"Sensors\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Host servidor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Puerto del servidor" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "Configuración" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Monitorización de la clase shaping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "Mostrar valores máximos en lugar de promedios" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Fichero de sockets" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Grupo socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Permisos para socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Rango de direcciones IP origen" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Especifica qué información recolectar sobre enlaces." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Especifica qué información recolectar sobre rutas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Especifica qué información recolectar sobre la topología global." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "Splash Leases" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "Configuración del complemento \"Splash Leases\"" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Estadísticas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Directorio de guardado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Directorio para guardar archivos csv" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Guardar datos como ratios en vez de valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Intervalos almacenados" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Carga del sistema" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Conexiones TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Configuración del plugin \"Conexiones TCP\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL para paquetes de red" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL para paquetes de ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tabla" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "El complemento APCUPS recopila estadísticas sobre el APC UPS." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" "El plugin NUT obtiene información sobre Sistemas de Alimentación " "Ininterrumpida." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." @@ -818,7 +1024,7 @@ msgstr "" "El plugin OLSRd lee información sobre redes distribuidas desde el plugin " "txtinfo de OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." @@ -826,7 +1032,15 @@ msgstr "" "El complemento OpenVPN recopila información sobre el estado actual de la " "conexión vpn." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -834,13 +1048,13 @@ msgstr "" "El plugin \"Seguimiento\" recoge estadísticas sobre el número de conexiones " "analizadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" "El plugin \"CPU\" recolecta estadísticas básicas acerca del uso del " "procesador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -848,7 +1062,7 @@ msgstr "" "El plugin \"CSV\" almacena los datos recolectados en un archivo con formato " "csv para su procesado posterior con programas de terceros." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -856,7 +1070,7 @@ msgstr "" "El plugin \"DF\" recolecta estadísticas acerca del uso del espacio en disco " "en diferentes dispositivos, puntos de montaje y tipos de sistema de archivos." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -864,7 +1078,7 @@ msgstr "" "El plugin \"Disco\" recolecta estadísticas detallada acerca de su " "utilización para las particiones seleccionadas o bien el disco completo." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -872,7 +1086,7 @@ msgstr "" "El plugin \"DNS\" recolecta estadísticas detalladas acerca del trafico DNS " "en las interfaces seleccionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -885,12 +1099,12 @@ msgstr "" "utilizado en conjunto con Mail::SpamAssasin::Plugin::Collectd pero puede " "utilizarse de diferentes formas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" "El plugin \"Entropy\" recopila estadísticas sobre la entropía disponible." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -898,14 +1112,18 @@ msgstr "" "El complemento exec inicia órdenes externas para leer valores o notificar a " "procesos externos cuando determinados valores de umbral se alcanzan." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "El complemento de interfaz recoge estadísticas de tráfico en las interfaces " "seleccionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -913,7 +1131,7 @@ msgstr "" "El plugin \"iptables\" monitoriza las reglas seleccionadas del Firewall y " "recoge información de bytes y paquetes procesados por cada regla." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -921,7 +1139,7 @@ msgstr "" "El plugin \"IRQ\" monitorizará las activaciones por segundo de cada " "interrupción elegida. Si no se selecciona ninguna se monitorizarán todas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." @@ -929,16 +1147,16 @@ msgstr "" "El plugin \"iwinfo\" recolecta estadísticas sobre la potencia de la señal " "inalámbrica, ruido y calidad." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" "El plugin \"carga\" recoge estadísticas sobre la carga general del sistema." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "El plugin \"memoria\" recoge estadísticas sobre el uso de memoria." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -946,7 +1164,7 @@ msgstr "" "El plugin \"netlink\" recoge informaciones extendidas como estadísticas " "qdisc-, clase- y filtro- para las interfaces seleccionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -959,7 +1177,7 @@ msgstr "" "encuentre en modo servidor. En modo servidor la instancia recibe datos de " "otras máquinas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -967,7 +1185,7 @@ msgstr "" "El plugin \"ping\" enviará ecos ICMP a las máquinas elegifas para medir el " "tiempo de viaje para cada host." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -975,7 +1193,7 @@ msgstr "" "El plugin \"procesos\" recoge información como tiempo de CPU, fallos de " "página y uso de memoria de los procesos elegidos." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -987,7 +1205,7 @@ msgstr "" "incorrectos puede hacer que se use mucho espacio en el directorio temporal y " "puede hacer que el dispositivo funcione mal!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -995,7 +1213,7 @@ msgstr "" "El plugin \"sensors\" usa el marco de trabajo de sensores de Linux para " "recopilar estadísticas ambientales." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:6 msgid "" "The splash leases plugin uses libuci to collect statistics about splash " "leases." @@ -1003,7 +1221,7 @@ msgstr "" "El plugin \"splash leases\" usa libuci para recopilar estadísticas sobre los " "arrendamientos de salpicaduras." -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -1013,7 +1231,7 @@ msgstr "" "\">Collectd</a> para recopilar datos y <a href=\"http://oss.oetiker.ch/" "rrdtool/\">RRDtool</a> para renderizar imágenes de diagramas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1021,7 +1239,7 @@ msgstr "" "El plugin \"tcpconns\" recoge información de conexiones TCP abiertas en los " "puertos seleccionados." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -1031,7 +1249,7 @@ msgstr "" "leen normalmente desde /sys/class/thermal/*/temp ('*' indica el dispositivo " "térmico que se va a leer, por ejemplo, thermal_zone1)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1039,34 +1257,34 @@ msgstr "" "El plugin \"unixsock\" crea un socket UNIX que se puede usar para leer los " "datos recogidos por una instancia collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" "El plugin \"uptime\" recopila estadísticas sobre el tiempo de actividad del " "sistema." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "Térmico" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "Configuración del plugin Thermal" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" "Este plugin recopila estadísticas sobre los cambios de contexto del " "procesador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" "Este plugin recopila estadísticas sobre la escala de frecuencia del " "procesador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1074,133 +1292,231 @@ msgstr "" "Esta sección define sobre qué interfaces collectd esperará conexiones " "entrantes." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Esta sección define a qué servidores se envían los datos recolectados " "localmente." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Intenta resolver el nombre de máquina cualificado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "SAI" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Configuración del plugin SAI" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "Nombre del SAI en el formato de NUT sai@máquina" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "Socket UNIX" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Configuración del plugin \"UnixSock\"" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Tiempo de actividad" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "Configuración del plugin Uptime" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "Usar un esquema de nombres mejorado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Archivo PID utilizado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Usuario" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Monitorización detallada" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" "Cuando se establece en verdadero, informa métrica por estado (sistema, " "usuario, inactivo)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "Cuando se establece en verdadero, se solicita valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "Cuando se establece en verdadero, se solicita valores de porcentaje" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Wi-Fi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "Configuración plugin \"Wireless iwinfo\"" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "Puede instalar plugins collectd-mod-* adicionales para activar más " "estadísticas." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "Configuración de plugin de cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "p.e. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" +msgstr "reduce el tamaño RRD" + +#~ msgid "Action (target)" +#~ msgstr "Acción (objetivo)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "p.e. br-lan" +#~ msgid "Add matching rule" +#~ msgstr "Añadir regla de coincidencia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "p.e. reject-with tcp-reset" +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Añadir múltiples hosts separados por espacio." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "16 caracteres máximo" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd es un demonio para la recolección de datos desde varias fuentes " +#~ "a través de la utilización de diferentes plugins. Aquí puede cambiar la " +#~ "configuración general del demonio que maneja collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "reduce el tamaño RRD" +#~ msgid "Destination ip range" +#~ msgstr "Intervalo de IP de destino" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "" +#~ "Mantenga presionada la tecla Ctrl para seleccionar varios elementos o " +#~ "para deseleccionar entradas." + +#~ msgid "Incoming interface" +#~ msgstr "Interfaz de entrada" + +#~ msgid "Monitor all sensors" +#~ msgstr "Monitorear todos los sensores" + +#~ msgid "Name of the rule" +#~ msgstr "Nombre de la regla" + +#~ msgid "Network protocol" +#~ msgstr "Protocolo de red" + +#~ msgid "Options" +#~ msgstr "Opciones" + +#~ msgid "Outgoing interface" +#~ msgstr "Interfaz de salida" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "Procesos a monitorizar (separados por espacios)" + +#~ msgid "Source ip range" +#~ msgstr "Rango de direcciones IP origen" + +#~ msgid "e.g. br-ff" +#~ msgstr "p.e. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "p.e. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "p.e. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "16 caracteres máximo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "segundos (varios separados por espacio)" +#~ msgid "seconds; multiple separated by space" +#~ msgstr "segundos (varios separados por espacio)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "interfaces de servidores" +#~ msgid "server interfaces" +#~ msgstr "interfaces de servidores" diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index 717a2f0ee..a9e2ea456 100644 --- a/applications/luci-app-statistics/po/fr/statistics.po +++ b/applications/luci-app-statistics/po/fr/statistics.po @@ -14,304 +14,340 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.10.1\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Valeurs absolues" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Action (cible)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Ajoute une commande pour lire des valeurs" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Ajouter une règle à surveiller" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Ajoutez plusieurs hôtes séparés par un espace." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Ajoute une commande de notification" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Répertoire de base" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Surveillance de base" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "Fréquence du CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Configuration du greffon sur le CPU" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "Sortie au format CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Configuration du greffon CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Mettre en cache les données collectées pendant" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Intervalle de vidange du cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Chaîne" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Paramètres Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -"Collectd est un petit démon collectant des données de sources variées à " -"travers différents greffons. Sur ce page, vous pouvez modifier les " -"paramètres généraux de ce démon collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Configuration du plugin Conntrack" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Configuration du greffon DF" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Configuration du greffon DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Période de récupération des données" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Fichier de définition des lots de données" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "plage réseau de destination" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Répertoire pour les greffons Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Répertoire pour les sous-configurations" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Configuration du greffon Disque" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Utilisation de l'espace-disque" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Espace-disque" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Période affichée »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Configuration du greffon des courriels" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Courriel" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Activer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Activer ce greffon" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Configuration du greffon Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Surveillance des filtres" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Pare-feu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Vidanger le cache après" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Transfert entre les adresses en écoute et du serveur" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Graphiques" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Groupe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -320,7 +356,7 @@ msgstr "" "collectd pour lire certaines valeurs. Ces valeurs seront lisibles depuis " "stdout." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -330,7 +366,7 @@ msgstr "" "collectd quand certaines valeurs-seuil seront atteintes. Les valeurs " "induisant ces démarrages seront fournies aux commandes externes via stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -338,492 +374,672 @@ msgstr "" "Vous pouvez définir ici les critères variés pour sélectionner les règles " "iptables à surveiller." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Hôte" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Nom d'hôte" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Configuration du greffon IRQ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignorer les adresses-source" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Interface entrante" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Configuration du greffon des Interfaces" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Interruptions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Configuration du greffon IPtables" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Hôte en écoute" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Puerto de escucha" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Interfaces en écoute" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Configuration du greffon de charge-système" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Nb de Connexions autorisées au maximum" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Mémoire" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Surveiller tous les ports en écoute locaux" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Surveillez tous les capteurs" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Périphériques à surveiller" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Disques et partitions à surveiller" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "types de systèmes de fichier à surveiller" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Hôtes à surveiller" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Surveiller les interruptions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Surveiller les ports locaux" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Points de montage à surveiller" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Processus à surveiller" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Surveiller les ports destinataires" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "Plus de détails sur l'utilisation des fréquences et les transitions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Nom" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Nom de la règle" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Configuration du greffon du lien-réseau" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Réseau" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Configuration du greffon réseau" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Greffons liés au réseau" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Protocole réseau" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Nombre de fils pour la récupération des données" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Créer seulement des RRAs moyens" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Options" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Interface sortante" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Greffons liés aux résultats" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "Valeurs en pourcentage" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Configuration du greffon Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Processus" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Configuration du greffon des processus" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Processeur" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Surveillance Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "Intervalle de la pulsation RRD" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "Intervalle d'avancement RRD" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Configuration du greffon RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Lignes par RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Script" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Secondes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Capteurs" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Hôte du serveur" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Port serveur" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Surveillance liées à la priorité" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "plage réseau source" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Spécifie les informations à collecter sur les itinéraires." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Spécifie les informations à collecter sur la topologie globale." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Statistiques" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Répertoire de stockage" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Répertoire de stockage pour les fichiers CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Stocke les données sous forme de taux plutôt que de valeurs absolues" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Durée de la période enregistrée" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Charge-système" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Connexions TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Configuration du plugin des connexions TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL des paquets-réseau" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL des paquets ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Table" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "Le greffon sur le CPU récupère des données sur l'usage du processeur." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -831,7 +1047,7 @@ msgstr "" "Le greffon CSV stocke les données collectées dans des fichiers au format CSV " "pour être traités ultérieurement par des programmes externes." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -839,7 +1055,7 @@ msgstr "" "Le plugin DF récupère des données sur l'utilisation de l'espace-disque sur " "différents périphériques, points de montage ou types de systèmes de fichiers." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -847,7 +1063,7 @@ msgstr "" "Le greffon Disque récupère des informations détaillées sur des disques ou " "partitions sélectionnées." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -855,7 +1071,7 @@ msgstr "" "Le greffon DNS récupère des données détaillées à propos du trafic lié au DNS " "sur des interfaces sélectionnées." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -867,11 +1083,11 @@ msgstr "" "Ce greffon est d'abord destiné à être utilisé avec Mail::SpamAssasin::" "Plugin::Collectd mais peut être utilisé d'autres manières également." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -879,14 +1095,18 @@ msgstr "" "Le greffon Exec lance des commandes externes pour lire des valeurs ou " "notifie des processus externes quand certains seuils ont été atteints." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "Ce greffon des interfaces collecte des statistiques de trafic sur les " "interfaces sélectionnées." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -895,7 +1115,7 @@ msgstr "" "collectera des informations sur les octets et paquets IP traités par chaque " "règle." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -904,23 +1124,23 @@ msgstr "" "interruption sélectionnée. Si aucune interruption n'est sélectionnée, toutes " "sont surveillées." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" "Le greffon de charge-système collecte des données sur la charge générale du " "système." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -928,7 +1148,7 @@ msgstr "" "Le greffon de lien-réseau récupère sur les interfaces sélectionnées des " "informations avancées liées à la QOS, aux classes et au filtrage." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -941,7 +1161,7 @@ msgstr "" "à un serveur, en mode serveur, l'instance collectd locale reçoit des " "informations d'autres hôtes." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -949,7 +1169,7 @@ msgstr "" "Le greffon ping envoie des paquets ICMP « echo reply » aux hôtes définis et " "mesure le temps d'aller-retour avec chacun." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -957,7 +1177,7 @@ msgstr "" "Le greffon des processus récupère des informations comme le temps CPU, les " "défauts de page et l'utilisation mémoire des processus définis." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -970,26 +1190,26 @@ msgstr "" "grande consommation mémoire dans le répertoire temporaire, qui peut rendre " "le matériel inutilisable !</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -997,14 +1217,14 @@ msgstr "" "Le greffon des connexions TCP récupère des informations sur les ouvertures " "de connexions TCP sur les ports spécifiés." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1012,28 +1232,28 @@ msgstr "" "Le plugin unixsock crée un socket unix qui peut être utilisé pour lire les " "données collectées à partir d'une instance collectd en cours d'exécution." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "Thermique" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1041,129 +1261,219 @@ msgstr "" "Cette section définit sur quelles interfaces collectd écoutera des " "connexions entrantes." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Cette section définit à quels serveurs sont envoyées les données collectées " "localement." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Tente de récupérer des noms d'hôtes complètement qualifiés" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "Socket Unix" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Configuration du greffon de socket Unix" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Temps de service" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Fichier PID utilisé" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Surveillance verbeuse" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Sans-fil" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "p.ex. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "p.ex. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "p.ex. reject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "Max. 16 caractères" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "Diminuer la taille RRD" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "En secondes ; séparer différentes valeurs par des espaces" +#~ msgid "Action (target)" +#~ msgstr "Action (cible)" + +#~ msgid "Add matching rule" +#~ msgstr "Ajouter une règle à surveiller" + +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Ajoutez plusieurs hôtes séparés par un espace." + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd est un petit démon collectant des données de sources variées à " +#~ "travers différents greffons. Sur ce page, vous pouvez modifier les " +#~ "paramètres généraux de ce démon collectd." + +#~ msgid "Destination ip range" +#~ msgstr "plage réseau de destination" + +#~ msgid "Incoming interface" +#~ msgstr "Interface entrante" + +#~ msgid "Monitor all sensors" +#~ msgstr "Surveillez tous les capteurs" + +#~ msgid "Name of the rule" +#~ msgstr "Nom de la règle" + +#~ msgid "Network protocol" +#~ msgstr "Protocole réseau" + +#~ msgid "Options" +#~ msgstr "Options" + +#~ msgid "Outgoing interface" +#~ msgstr "Interface sortante" + +#~ msgid "Source ip range" +#~ msgstr "plage réseau source" + +#~ msgid "e.g. br-ff" +#~ msgstr "p.ex. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "p.ex. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "p.ex. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "Max. 16 caractères" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "En secondes ; séparer différentes valeurs par des espaces" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "Interfaces du serveur" +#~ msgid "server interfaces" +#~ msgstr "Interfaces du serveur" diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index d98fe5c0e..d4460a6a0 100644 --- a/applications/luci-app-statistics/po/he/statistics.po +++ b/applications/luci-app-statistics/po/he/statistics.po @@ -13,829 +13,1048 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "הוסף פקודה לקריאת נתונים" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" +msgstr "הוסף פקודה לקריאת נתונים" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -843,54 +1062,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -898,19 +1121,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -918,192 +1141,222 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" msgstr "" diff --git a/applications/luci-app-statistics/po/hi/statistics.po b/applications/luci-app-statistics/po/hi/statistics.po index e260bd3bd..ee9399a8a 100644 --- a/applications/luci-app-statistics/po/hi/statistics.po +++ b/applications/luci-app-statistics/po/hi/statistics.po @@ -14,829 +14,1048 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -844,54 +1063,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -899,19 +1122,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -919,192 +1142,222 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" msgstr "" diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index 930214b75..b9b8b1d70 100644 --- a/applications/luci-app-statistics/po/hu/statistics.po +++ b/applications/luci-app-statistics/po/hu/statistics.po @@ -12,305 +12,341 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "APC UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "APCUPS bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Abszolút értékek" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Művelet (cél)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Parancs hozzáadása értékek beolvasásához" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Illeszkedési szabály hozzáadása" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Több gép hozzáadása szóközzel elválasztva." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Értesítési parancs hozzáadása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Címcsalád" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Kapcsolódott felhasználók összesített száma" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Alapkönyvtár" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Általános megfigyelés" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" "Ennek beállításával a CPU nem a rendszeren lévő összes processzor összegzése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "CPU-környezetváltások bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "CPU-frekvencia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "CPU-frekvencia bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "CPU bővítmény beállítása" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV-kimenet" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "CSV bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Gyorsítótár a begyűjtött adatokhoz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Gyorsítótár-ürítés időköze" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Lánc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "CollectLinks" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "CollectRoutes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "CollectTopology" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Collectd beállítások" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"A collectd változatos forrásokból különféle bővítményeken keresztül történő " -"adatgyűjtésre szolgáló kis méretű démon. Ezen az oldalon változtathatja meg " -"a collectd démon általános beállításait." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Kapcsolatkövető" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Kapcsolatkövető bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "Környezetváltások" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "DF bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "DNS bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Adatgyűjtés időköze" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Adatkészletek meghatározási fájlja" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Cél IP-tartomány" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "A collectd bővítmények könyvtára" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Albeállítások könyvtára" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Lemez bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Lemezterület-használat" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Lemezhasználat" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Gép megjelenítése »" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Időszak megjelenítése »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "E-mail bővítmény beállítása" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "E-mail" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "Üres érték = összes megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Engedélyezés" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Bővítmény engedélyezése" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Entrópia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Entrópia bővítmény beállítása" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Végrehajtás" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Végrehajtás bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "További elemek" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Szűrőosztály megfigyelése" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Tűzfal" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Gyorsítótár ürítése ezután:" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Továbbítás a figyelési és a kiszolgáló címek között" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "Tömörítési statisztikák begyűjtése" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Általános bővítmények" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "Különálló grafikon előállítása minden bejelentkezett felhasználóhoz" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Grafikonok" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Csoport" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -319,7 +355,7 @@ msgstr "" "indítani bizonyos értékek beolvasásához. Az értékek a szabványos kimenetről " "lesznek beolvasva." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -329,7 +365,7 @@ msgstr "" "indítani, ha bizonyos küszöbértékek elérésre kerülnek. A hívást kiváltó " "értékek a meghívott programok szabványos bemenetére lesznek küldve." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -337,81 +373,87 @@ msgstr "" "Itt határozhat meg különféle feltételeket, amelyek alapján a megfigyelt " "iptables szabályok kiválasztásra kerülnek." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" -"Tartsa nyomva a Ctrl billentyűt több elem kijelöléséhez vagy bejegyzések " -"kijelölésének eltávolításához." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Gép" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Gépnév" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "IP vagy gépnév, ahonnan a txtinfo kimenete beszerezhető" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "IRQ bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Forrás címek figyelmen kívül hagyása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Bejövő csatoló" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Csatoló bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Csatolók" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Megszakítások" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Ping kérések időköze" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Iptables bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "Hagyja bejelölés nélkül a megfigyelendő csatolók automatikus " "meghatározásához." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Gép figyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Port figyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Figyelő csatolók" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Terhelés bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" @@ -419,126 +461,272 @@ msgstr "" "Egy időszak legnagyobb értékei is használhatók az átlagok helyett, ha nincs " "használatban a „csak átlag RRA-k”" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Legtöbb megengedett kapcsolat" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Memória bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Összes megfigyelése, kivéve a megadottakat" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Összes helyi figyelési port megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Összes érzékelő megfigyelése" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "Eszközök vagy hőmérsékleti zónák megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Eszközök megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Lemezek és partíciók megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Fájlrendszertípusok megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "Gép megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Gépek megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Csatolók megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Megszakítások megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Helyi portok figyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Csatolási pontok megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Folyamatok megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Távoli portok megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "További részletek a frekvenciahasználatról és átmenetekről" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Név" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "A szabály neve" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Netlink bővítmény beállítása" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Hálózat" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Hálózat bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Hálózati bővítmények" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Hálózati protokoll" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -547,272 +735,290 @@ msgstr "" "elállításra, az *.rrd fájloknak, a tárolási könyvtárnak és annak összes " "szülőkönyvtárának bárki számára olvashatónak kell lennie." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Az adatgyűjtés szálainak száma" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "OLSRd bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Csak átlag RRA-k létrehozása" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "OpenVPN állapotfájlok" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Beállítások" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Kimenő csatoló" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Kimeneti bővítmények" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "Százalékos értékek" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Ping bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "Az apcupsd kommunikáció portja" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Folyamatok" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Folyamatok bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "Megfigyelendő folyamatok szóközzel elválasztva" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Processzor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Qdisc megfigyelés" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "RRD XFiles tényező" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "RRD szívverési időköz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "RRD lépés időköze" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDtool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "RRDtool bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "Jelentés CPU szerint" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "Jelentés állapot szerint" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "Jelentés százalékban" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "RRA szerinti sorok" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Parancsfájl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Másodperc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "Érzékelőlista" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Érzékelők" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Érzékelők bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Kiszolgáló gép" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Kiszolgáló port" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "Beállítás" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Formázási osztály megfigyelése" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "Legnagyobb értékek megjelenítése az átlagok helyett" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Foglalatfájl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Foglalatcsoport" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Foglalat jogosultságai" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Forrás IP-tartomány" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" "Meghatározza, hogy milyen információkat kell gyűjteni a kapcsolatokról." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Meghatározza, hogy milyen információkat kell gyűjteni az útvonalakról." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" "Meghatározza, hogy milyen információkat kell gyűjteni a globális " "topológiáról." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "Indítási bérletek" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "Indítási bérletek bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Statisztikák" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Tárolási könyvtár" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "A CSV-fájlok tárolási könyvtára" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Az adatértékek arányként történő tárolása abszolút értékek helyett" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Tárolt időszakok" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Rendszerterhelés" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP kapcsolatok" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "TCPConns bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "A hálózati csomagok élettartama" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "A ping csomagok élettartama" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Táblázat" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "Az APCUPS bővítmény az APC UPS-ről gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "A NUT bővítmény a szünetmentes tápegységekről olvas be információkat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." @@ -820,7 +1026,7 @@ msgstr "" "Az OLSRd bővítmény a összekapcsolt hálózatokról olvas információkat az OLSRd " "txtinfo bővítményéből." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." @@ -828,7 +1034,15 @@ msgstr "" "Az OpenVPN bővítmény a jelenlegi VPN-kapcsolatok állapotáról gyűjt " "információkat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -836,13 +1050,13 @@ msgstr "" "A kapcsolatkövető bővítmény a nyomon követett kapcsolatok számáról gyűjt " "statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" "A processzor bővítmény a processzorhasználatról gyűjt alapvető " "statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -850,7 +1064,7 @@ msgstr "" "A CSV bővítmény az összegyűjtött adatokat CSV fájlformátumban tárolja a " "külső programokkal történő további feldolgozáshoz." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -858,7 +1072,7 @@ msgstr "" "A DF bővítmény a különböző eszközökön, csatolási pontokon vagy fájlrendszer-" "típusokon lévő lemezterület használatáról gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -866,7 +1080,7 @@ msgstr "" "A lemez bővítmény részletes használati statisztikákat gyűjt a kiválasztott " "partíciókról vagy teljes lemezekről." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -874,7 +1088,7 @@ msgstr "" "A DNS bővítmény részletes statisztikákat gyűjt a DNS-hez kapcsolódó " "forgalomról a kiválasztott csatolókon." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -886,11 +1100,11 @@ msgstr "" "a bővítményt elsősorban a Mail::SpamAssasin::Plugin::Collectd bővítménnyel " "együtt történő használatra szánták, de egyéb módokon is használható." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "Az entrópia bővítmény az elérhető entrópiáról gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -898,13 +1112,17 @@ msgstr "" "A végrehajtás bővítmény külső parancsokat indít értékek olvasására vagy " "külső folyamatok értesítésére bizonyos küszöbértékek elérése esetén." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "A csatoló bővítmény forgalmi statisztikákat gyűjt a kiválasztott csatolókról." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -912,7 +1130,7 @@ msgstr "" "Az iptables bővítmény megfigyeli a kiválasztott tűzfalszabályokat, és " "információkat gyűjt a szabályonként feldolgozott bájtokról és csomagokról." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -921,7 +1139,7 @@ msgstr "" "minden kiválasztott megszakításnál. Ha nincs megszakítás kiválasztva, akkor " "az összes megszakítás megfigyelésre kerül." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." @@ -929,16 +1147,16 @@ msgstr "" "Az iwinfo bővítmény a vezeték nélkül jelerősségről, zajról és minőségről " "gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" "A terhelés bővítmény az általános rendszerterhelésről gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "A memória bővítmény a memóriahasználatról gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -946,7 +1164,7 @@ msgstr "" "A netlink bővítmény kiterjesztett információkat gyűjt a kijelölt " "csatolóknál, mint például qdisc-, osztály- és szűrőstatisztikák." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -959,7 +1177,7 @@ msgstr "" "kiszolgálóra kerülnek átküldésre. Kiszolgáló módban a helyi példány fogadja " "az adatokat más gépekről." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -967,7 +1185,7 @@ msgstr "" "A ping bővítmény ICMP echo válaszokat fog küldeni a kiválasztott gépekre, és " "megméri az oda-vissza út idejét minden gépnél." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -975,7 +1193,7 @@ msgstr "" "A folyamatok bővítmény olyan információkat gyűjt, mint például a " "kiválasztott folyamatok processzorideje, lapozási hibái és memóriahasználata." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -988,7 +1206,7 @@ msgstr "" "memóriafogyasztást fog eredményezni az átmeneti könyvtárban. Ez " "használhatatlanul jelenítheti meg az eszközt!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -996,7 +1214,7 @@ msgstr "" "Az érzékelők bővítmény a Linux érzékelők keretrendszert használja a " "környezeti statisztikák begyűjtéséhez." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:6 msgid "" "The splash leases plugin uses libuci to collect statistics about splash " "leases." @@ -1004,7 +1222,7 @@ msgstr "" "Az indítási bérletek bővítmény a libuci programkönyvtárat használja az " "indítási bérletekről történő statisztikák gyűjtéséhez." -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -1014,7 +1232,7 @@ msgstr "" "démont használja adatgyűjtéshez, valamint az <a href=\"http://oss.oetiker.ch/" "rrdtool/\">RRDtool</a> eszközt a diagramok megjelenítéséhez." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1022,7 +1240,7 @@ msgstr "" "A TCPConns bővítmény a kiválasztott portokon lévő TCP kapcsolatokról gyűjt " "információkat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -1032,7 +1250,7 @@ msgstr "" "adatok jellemzően a /sys/class/thermal/*/temp helyről vannak beolvasva (a " "„*” a beolvasandó hőmérsékleti eszközt jelenti, például thermal_zone1)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1040,30 +1258,30 @@ msgstr "" "A unixsock bővítmény létrehoz egy unix foglalatot, amely az összegyűjtött " "adatok egy futó collectd példányból történő olvasásához használható." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" "Az működési idő bővítmény a rendszer működési idejéről gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "Hőmérséklet" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "Hőmérséklet bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "Ez a bővítmény a processzorkörnyezet váltásairól gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" "Ez a bővítmény a processzorfrekvencia skálázásáról gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1071,133 +1289,231 @@ msgstr "" "Ez a szakasz határozza meg, hogy mely csatolókon fog várakozni a collectd a " "bejövő kapcsolatokra." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Ez a szakasz határozza meg, hogy a helyileg összegyűjtött adatokat melyik " "kiszolgálókra kell továbbítani." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Teljesen minősített gépnév keresésének kísérlete" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "UPS bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "UPS neve NUT ups@gép formátumban" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Unixsock bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Működési idő" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "Működési idő bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "Továbbfejlesztett elnevezési séma használata" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Használt PID-fájl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Felhasználó" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Részletes megfigyelés" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" "Ha igazra van állítva, akkor állapotmérőszámonként jelent (rendszer, " "felhasználó, üresjárat)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "Ha igazra van állítva, akkor abszolút értékeket kérünk" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "Ha igazra van állítva, akkor százalékos értékeket kérünk" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Vezeték nélküli" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "Vezeték nélküli iwinfo bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "Telepíthet további collectd-mod-* bővítményeket is több statisztika " "engedélyezéséhez." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "cUrl bővítmény beállítása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "például br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" +msgstr "csökkenti az RRD méretét" + +#~ msgid "Action (target)" +#~ msgstr "Művelet (cél)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "például br-lan" +#~ msgid "Add matching rule" +#~ msgstr "Illeszkedési szabály hozzáadása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "például reject-with tcp-reset" +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Több gép hozzáadása szóközzel elválasztva." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "legfeljebb 16 karakter" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "A collectd változatos forrásokból különféle bővítményeken keresztül " +#~ "történő adatgyűjtésre szolgáló kis méretű démon. Ezen az oldalon " +#~ "változtathatja meg a collectd démon általános beállításait." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "csökkenti az RRD méretét" +#~ msgid "Destination ip range" +#~ msgstr "Cél IP-tartomány" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "" +#~ "Tartsa nyomva a Ctrl billentyűt több elem kijelöléséhez vagy bejegyzések " +#~ "kijelölésének eltávolításához." + +#~ msgid "Incoming interface" +#~ msgstr "Bejövő csatoló" + +#~ msgid "Monitor all sensors" +#~ msgstr "Összes érzékelő megfigyelése" + +#~ msgid "Name of the rule" +#~ msgstr "A szabály neve" + +#~ msgid "Network protocol" +#~ msgstr "Hálózati protokoll" + +#~ msgid "Options" +#~ msgstr "Beállítások" + +#~ msgid "Outgoing interface" +#~ msgstr "Kimenő csatoló" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "Megfigyelendő folyamatok szóközzel elválasztva" + +#~ msgid "Source ip range" +#~ msgstr "Forrás IP-tartomány" + +#~ msgid "e.g. br-ff" +#~ msgstr "például br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "például br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "például reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "legfeljebb 16 karakter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "másodpercek; több is lehet szóközzel elválasztva" +#~ msgid "seconds; multiple separated by space" +#~ msgstr "másodpercek; több is lehet szóközzel elválasztva" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "kiszolgáló csatolók" +#~ msgid "server interfaces" +#~ msgstr "kiszolgáló csatolók" diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index c966c57af..7c861d992 100644 --- a/applications/luci-app-statistics/po/it/statistics.po +++ b/applications/luci-app-statistics/po/it/statistics.po @@ -14,304 +14,340 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Azione (destinazione)" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd è un piccolo demone usato per raccogliere dati da varie fonti " -"grazie a diversi plugin. Su questa pagina puoi cambiare le opzioni generali " -"del demone collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Abilita questo plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Gruppo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -319,7 +355,7 @@ msgstr "" "Qui puoi definire un comando che sarà avviato da collectd per leggere dei " "valori. Il valore sarà letto dallo stdout." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -329,524 +365,704 @@ msgstr "" "valore soglia sia raggiunto. Il valore in questione sarà passato al comando " "incovato come stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfacce" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "Lasciare deselezionato per determinare automaticamente l'interfaccia da " "monitorare." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Nome" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Rete" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Script" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tabella" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -854,54 +1070,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -909,19 +1129,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -929,192 +1149,234 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#~ msgid "Action (target)" +#~ msgstr "Azione (destinazione)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd è un piccolo demone usato per raccogliere dati da varie fonti " +#~ "grazie a diversi plugin. Su questa pagina puoi cambiare le opzioni " +#~ "generali del demone collectd." diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index 5c7818e4d..4f8c980ad 100644 --- a/applications/luci-app-statistics/po/ja/statistics.po +++ b/applications/luci-app-statistics/po/ja/statistics.po @@ -14,303 +14,340 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.9\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "アクション(対象)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "値読み取りコマンドの追加" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "マッチング規則の追加" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "スペースで区切られた複数のホストを追加します。" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "通知コマンドの追加" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "接続ユーザー数の総計" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "ベース・ディレクトリ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "基本モニタリング" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "CPU 周波数" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "CPU 周波数プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "CPU プラグイン設定" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV 出力" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "CSV プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "収集されたデータをキャッシュする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "チェイン" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Collectd 設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -"Collectd は、様々なソースから別々のプラグインを通してデータを収集する軽量デー" -"モンです。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack プラグイン設定" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "DF プラグイン設定" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "DNS プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "データの収集間隔" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "データベース定義ファイル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "対象IPの範囲" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "collectd プラグインディレクトリ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "サブ設定ディレクトリ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "ディスクプラグイン設定" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "ディスクスペース使用量" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "ディスクの使用" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "ホストを表示 »" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "時間帯表示 »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "E-メールプラグイン設定" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Eメール" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "空の値 = 全てをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "有効" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "プラグイン設定を有効にする" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "エントロピー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "エントロピー プラグイン設定" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Exec プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "ファイアウォール" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "一般プラグイン" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "ログインユーザーごとの分離されたグラフを生成します。" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "グラフ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "グループ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -318,7 +355,7 @@ msgstr "" "ここでは、特定の値を読み込むためにcollectによって順番に開始される外部コマンド" "を設定することができます。値は標準出力から読み込まれます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -328,7 +365,7 @@ msgstr "" "定することができます。呼び出しにつながる値は、呼び出されたプログラムの標準入" "力に送られます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -336,78 +373,86 @@ msgstr "" "ここでは、モニターするiptable規則が選択される様々な基準を設定することができま" "す。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "複数の項目を選択または解除するには、Ctrlキーを押したままにします。" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "ホスト" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "ホスト名" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "IRQ プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "無視するアクセス元アドレス" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "着信インターフェース" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "インターフェース プラグイン設定" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "インターフェース" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "割込み" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "ping間隔" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Iptables プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "モニターするインターフェースを自動的に決定するには、未選択のままにします。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "待ち受けホスト" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "待ち受けポート" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "待ち受けインターフェース" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "負荷プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" @@ -415,126 +460,258 @@ msgstr "" "'RRAの平均のみ' を使用しないとき、平均値の代わりに一定期間の最大値を使用でき" "ます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "許可された最大接続数" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "メモリー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "メモリー プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "設定値以外の全てのインターフェースをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "ローカルの全待ち受けポートをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "全てのセンサーをモニターする" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "デバイスをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "ディスクとパーティションをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "ファイルシステム タイプをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "ホストをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "モニターするインターフェースの設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "割込みをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "ローカルのポートをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "マウントポイントをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "プロセスをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "リモートのポートをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "ルール名" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Netlink プラグイン設定" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "ネットワーク" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "ネットワークプラグイン設定" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "ネットワークプラグイン" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "ネットワークプロトコル" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -543,292 +720,318 @@ msgstr "" "保存先ディレクトリ、およびそのペアレントディレクトリは、worldアクセス権が " "\"読み取り可能\" に設定されている必要があります。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "データ収集用スレッド数" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "OLSRd プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "平均値のRRAsのみ作成する" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "OpenVPN ステータスファイル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "オプション" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "送信インターフェース" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "出力プラグイン" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Ping プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "ポート" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "プロセス" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "プロセス プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "スペースで区切られた、モニターするプロセスです。" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "プロセッサー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Qdisc モニタリング" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "RRD ハートビート間隔" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "RRD stepインターバル" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "RRDTool プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "スクリプト" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "センサー一覧" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "センサー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "センサー プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "サーバー ホスト" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "サーバー ポート" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "平均値の代わりに最大値を表示する" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "ソケット ファイル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "ソケット グループ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "ソケット パーミッション" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "ソースIPの範囲" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "リンクについて、どのような情報を収集するか設定します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "ルートについて、どのような情報を収集するか設定します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "統計" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "保存先ディレクトリ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "CSVファイルの保存先ディレクトリ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "データ値を絶対値の代わりにレートとして保存します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "保存する期間の範囲" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "システム負荷" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP 接続" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "TCP接続プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "ネットワークパケットのTTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "pingパケットのTTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "テーブル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "NUT プラグインは、無停電電源装置についての情報を読み取ります。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" "OpenVPN プラグインは、現在のVPN接続ステータスについての情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "Conntrack プラグインは、追跡された接続の数についての統計を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "CPU プラグインは、プロセッサー使用についての基本的な統計を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -836,7 +1039,7 @@ msgstr "" "CSV プラグインは、外部プログラムがさらに利用するために、収集されたデータをCSV" "ファイル形式で保存します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -844,7 +1047,7 @@ msgstr "" "df プラグインは、個別のデバイスまたはマウントポイント、ファイルシステム形式の" "ディスク使用量についての統計を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -852,7 +1055,7 @@ msgstr "" "ディスク プラグインは、選択されたパーティションまたはディスク全体の詳細な使用" "統計を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -860,7 +1063,7 @@ msgstr "" "DNS プラグインは、選択されたインターフェースでのDNSに関連したトラフィックにつ" "いての詳細な統計を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -872,12 +1075,12 @@ msgstr "" "SpamAssasin、プラグイン、Collectdを一緒に使うことを主に意図していますが、ほか" "の方法にも同様に使用することができます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" "エントロピー プラグインは、利用可能なエントロピーについての統計を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -885,14 +1088,18 @@ msgstr "" "Exec プラグインは、特定の閾値に到達したときに外部プロセスから値の読み込み、も" "しくは外部プロセスへ通知する外部コマンドを開始します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "インターフェースプラグインは、選択したインターフェースのトラフィックの統計情" "報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -900,7 +1107,7 @@ msgstr "" "iptables プラグインは、選択されたファイアウォール規をモニターし、規則ごとの処" "理されたバイト数とパケット数についての情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -908,22 +1115,22 @@ msgstr "" "IRQ プラグインは、選択された割り込みごとに1秒当たりの発行レートをモニターしま" "す。選択された割り込みが無い場合、すべての割り込みがモニターされます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" "iwinfo プラグインは、無線信号強度、ノイズ、クオリティ情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "負荷プラグインは、システム負荷の統計情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "メモリー プラグインは、メモリー使用についての統計を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -931,7 +1138,7 @@ msgstr "" "Netlink プラグインは、選択されたインターフェースの qdisc- や class- 、filter-" "statistics のような拡張的な情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -944,7 +1151,7 @@ msgstr "" "され、サーバーモードではローカルのインスタンスは他のホストからデータを受信し" "ます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -952,7 +1159,7 @@ msgstr "" "ping プラグインは、ICMP Echo Replyを選択されたホストに送信し、各ホストとの往" "復時間を計測します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -960,7 +1167,7 @@ msgstr "" "プロセス プラグインは、選択されたプロセスのCPU時間やページフォルト、メモリー" "使用率などの情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -972,7 +1179,7 @@ msgstr "" "時的なディレクトリによってメモリー消費量が非常に高くなります。これはデバイス" "を使用不能にする可能性があります!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -980,13 +1187,13 @@ msgstr "" "センサー プラグインは、環境統計の収集に Linux センサーフレームワークを使用し" "ます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -996,7 +1203,7 @@ msgstr "" "\">Collectd</a>を、統計図のレンダリングに<a href=\"http://oss.oetiker.ch/" "rrdtool/\">RRDtool</a>を使用します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1004,14 +1211,14 @@ msgstr "" "TCP接続プラグインは、選択されたポートにおいてオープンなTCP接続についての情報" "を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "サーマル プラグインは、システムの温度をモニターします。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1019,29 +1226,29 @@ msgstr "" "unixsock プラグインは、実行中のcollectd インスタンスから収集データの読み取り" "に使用可能なUNIX ソケットを作成します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "稼働時間 プラグインは、システムの稼働時間についての統計を収集します。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "サーマル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "サーマル プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" "このプラグインは、プロセッサー周波数スケーリングについての統計を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1049,134 +1256,221 @@ msgstr "" "このセクションでは、collectdが着信接続を待ち受けるインターフェースを設定しま" "す。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "このセクションでは、ローカルに収集されたデータを送信するサーバーを設定しま" "す。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "UPS プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "ups@host 形式のNUT内のUPS名" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Unixsock プラグイン設定" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "稼働時間" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "稼働時間プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "使用するPIDファイルの保存場所" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "ユーザー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "詳細モニタリング" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "無線" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "無線LAN iwinfo プラグイン設定" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "追加の collectd-mod-* プラグインをインストールすることで、より多くの統計を有" "効にできます。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "例: br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "例: br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "例: reject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "最大16文字" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "rrdファイルのサイズを小さくします。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#~ msgid "Action (target)" +#~ msgstr "アクション(対象)" + +#~ msgid "Add matching rule" +#~ msgstr "マッチング規則の追加" + +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "スペースで区切られた複数のホストを追加します。" + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd は、様々なソースから別々のプラグインを通してデータを収集する軽量" +#~ "デーモンです。" + +#~ msgid "Destination ip range" +#~ msgstr "対象IPの範囲" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "複数の項目を選択または解除するには、Ctrlキーを押したままにします。" + +#~ msgid "Incoming interface" +#~ msgstr "着信インターフェース" + +#~ msgid "Monitor all sensors" +#~ msgstr "全てのセンサーをモニターする" + +#~ msgid "Name of the rule" +#~ msgstr "ルール名" + +#~ msgid "Network protocol" +#~ msgstr "ネットワークプロトコル" + +#~ msgid "Options" +#~ msgstr "オプション" + +#~ msgid "Outgoing interface" +#~ msgstr "送信インターフェース" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "スペースで区切られた、モニターするプロセスです。" + +#~ msgid "Source ip range" +#~ msgstr "ソースIPの範囲" + +#~ msgid "e.g. br-ff" +#~ msgstr "例: br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "例: br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "例: reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "最大16文字" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "サーバー インターフェース" +#~ msgid "server interfaces" +#~ msgstr "サーバー インターフェース" #~ msgid "Collectd" #~ msgstr "Collectd" diff --git a/applications/luci-app-statistics/po/ko/statistics.po b/applications/luci-app-statistics/po/ko/statistics.po index 83a1a5783..b27e767aa 100644 --- a/applications/luci-app-statistics/po/ko/statistics.po +++ b/applications/luci-app-statistics/po/ko/statistics.po @@ -14,829 +14,1034 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -844,54 +1049,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -899,19 +1108,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -919,192 +1128,217 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" msgstr "" diff --git a/applications/luci-app-statistics/po/mr/statistics.po b/applications/luci-app-statistics/po/mr/statistics.po index 2625e5a5d..9752b335b 100644 --- a/applications/luci-app-statistics/po/mr/statistics.po +++ b/applications/luci-app-statistics/po/mr/statistics.po @@ -14,829 +14,1048 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "सक्षम करा" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "होस्टनाव" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "इंटरफेसेस" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "ऐकण्याचा पत्ता" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "नाव" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "पर्याय" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "पोर्ट" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -844,54 +1063,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -899,19 +1122,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -919,192 +1142,225 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" msgstr "" + +#~ msgid "Options" +#~ msgstr "पर्याय" diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index 7b6f0a88a..4153067a6 100644 --- a/applications/luci-app-statistics/po/ms/statistics.po +++ b/applications/luci-app-statistics/po/ms/statistics.po @@ -14,829 +14,1034 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -844,54 +1049,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -899,19 +1108,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -919,192 +1128,217 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" msgstr "" diff --git a/applications/luci-app-statistics/po/nb_NO/statistics.po b/applications/luci-app-statistics/po/nb_NO/statistics.po index 1fdbb8c63..ad1732318 100644 --- a/applications/luci-app-statistics/po/nb_NO/statistics.po +++ b/applications/luci-app-statistics/po/nb_NO/statistics.po @@ -10,304 +10,340 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Handling (mål)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Legg til kommando for lesing av verdier" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Legg til matchende regel" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Legg til flere verter adskilt med mellomrom." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Legg til varsling kommando" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Hoved Katalog" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Enkel overvåking" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "CPU plugin konfigurasjon" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV Utdata" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "CSV plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Hurtigbufre innsamlede data for" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Intervall for tømming av hurtigbuffer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Lenke" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Collectd Innstillinger" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -"Collectd er en liten daemon for innsamling av data fra ulike kilder gjennom " -"ulike plugins. På denne siden kan du endre generelle innstillinger for " -"collectd daemon." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "DF plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "DNS plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Datainnsamling intervall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Datasett definisjonsfil" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Destinasjon ip område" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Katalog for collectd plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Katalog for sub-konfigurasjoner" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Disk plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Disk Forbruk" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Disk Anvendelse" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Vis tidsperiode »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "E-Post plugin konfigurasjon" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Epost" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Aktiver denne plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Program" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Program plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Filter class overvåking" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Brannmur" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Tømme hurtigbufferen etter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Videresending mellom lyttende og server adresser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Grafer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -315,7 +351,7 @@ msgstr "" "Her kan du definere eksterne kommandoer som blir startet av collectd for å " "lese enkelte verdier. Verdiene skal leses fra stdout." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -325,498 +361,678 @@ msgstr "" "visse grenseverdier er blitt nådd. Verdiene som fører til aktivering vil bli " "overført til det påkallede programs stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "Her kan du definere kriterier for reglene som overvåker iptables." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Vertsnavn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "IRQ plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignorer kilde adresser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Innkommende grensesnitt" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Grensesnitt plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Grensesnitt" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Avbrudd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Intervall ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Iptable plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Lyttende vert" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Lyttende port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Lyttende grensesnitt" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Belastning plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Maksimum tillatte tilkoblinger" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Overvåk alle lokale lyttende porter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Overvåk enheter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Overvåk disker og partisjoner" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Overvåk filsystem typer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Overvåk verter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Overvåk avbrudd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Overvåk lokale porter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Overvåk monterings punkter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Overvåk prosesser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Overvåk eksterne porter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Navnet på regelen" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Nettlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Netlink plugin konfigurasjon" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Nettverk" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Nettverks plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Nettverks plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Nettverks protokoll" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Antall tråder for datainnsamling" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Lag kun gjennomsnittlige RRAs" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Alternativer" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Utgående grensesnitt" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Utdata Plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Ping plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Prosesser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Prosess plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Prosessor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Qdisc overvåking" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "RRD XFiles Faktor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "RRD \"heartbeat\" intervall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "RRD steg intervall" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "RRDTool plugin konfigursjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Rader per RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Sekunder" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Server vert" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Server port" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Shaping class overvåking" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Kilde ip område" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Statistikk" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Lagrings katalog" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Katalog for lagring av CSV filer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Lagre dataverdier som rater i stedet for absolutte verdier" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Lagrede tidsperioder" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "System Belastning" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP Forbindelser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "TCPConns plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL for nettverkspakker" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL for ping pakker" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tabell" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "CPU plugin samler grunnleggende statistikk om prosessor bruk." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -824,7 +1040,7 @@ msgstr "" "CSV plugin lagrer de innsamlede dataene i CSV format for videre bearbeiding " "av eksterne programmer." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -832,7 +1048,7 @@ msgstr "" "DF plugin samler statistikk om disker på forskjellige enheter, monterings " "punkter eller filsystem typer." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -840,7 +1056,7 @@ msgstr "" "Disk plugin samler detaljert brukerstatistikk for utvalgte partisjoner og " "hele disker." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -848,7 +1064,7 @@ msgstr "" "DNS pluging samler detaljert statistikk om DNS relatert trafikk på utvalgte " "grensesnitt." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -860,11 +1076,11 @@ msgstr "" "bli brukt i forbindelse med Mail::SpamAssasin::Plugin::Collectd men kan også " "brukes på andre måter." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -872,12 +1088,16 @@ msgstr "" "Program plugin starter eksterne kommandoer for å lese verdier fra de, eller " "for å varsle eksterne prosesser når visse grenseverdier er blitt nådd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Grensesnitt plugin samler trafikk statistikk på utvalgte grensesnitt." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -885,7 +1105,7 @@ msgstr "" "Iptables plugin vil overvåke utvalgte brannmurregler og samle informasjon om " "bearbeidet data per regel." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -893,21 +1113,21 @@ msgstr "" "IRQ plugin vil overvåke hastigheten på forespørsler per sekund for hver " "valgte avbrudd. Hvis ingen avbrudd er valgt vil alle avbrudd bli overvåket." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "Belastning plugin samler statistikk systemets belastning." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -915,7 +1135,7 @@ msgstr "" "Netlink plugin samler utvidet informasjon som qdisc-, klasse- og filter-" "statistikk for utvalgte grensesnitt." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -927,7 +1147,7 @@ msgstr "" "klientmodus blir lokalt innsamlede data overført til en collectd server. I " "server modus mottar enheten data fra andre klienter." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -935,7 +1155,7 @@ msgstr "" "Ping plugin sender icmp echo svar til utvalgte verter og måle tiden en " "rundtur tar for hver vert." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -943,7 +1163,7 @@ msgstr "" "Prosess plugin samler informasjon som f.eks. CPU tid, sidefeil og minnebruk " "for utvalgte prosesser." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -955,26 +1175,26 @@ msgstr "" "vil kunne resultere i et svært høyt minneforbruk i den midlertidige " "katalogen (temp). Dette kan gjøre enheten ubrukelig!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -982,14 +1202,14 @@ msgstr "" "Tcpconns plugin samler informasjon om åpne TCP tilkoblinger på utvalgte " "porter." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -997,28 +1217,28 @@ msgstr "" "Unixsock plugin skaper en unix socket som kan brukes til å lese innsamlet " "data fra collectd prosess." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1026,129 +1246,216 @@ msgstr "" "Denne seksjonen definerer hvilke grensesnitt collectd vil lytte på for " "innkommende tilkoblinger." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Denne seksjonen definerer hvilke servere de lokalt innsamlede data blir " "sendt til." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Prøv å søk etter fullstendig vertsnavn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Unixsock plugin konfigurasjon" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Brukt PID fil" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Detaljert overvåking" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Trådløs" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "f.eks. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "f.eks. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "f.eks. forkast med tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "maks. 16 tegn" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "reduserer RRD størrelse" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "sekunder; flere adskilt med mellomrom" +#~ msgid "Action (target)" +#~ msgstr "Handling (mål)" + +#~ msgid "Add matching rule" +#~ msgstr "Legg til matchende regel" + +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Legg til flere verter adskilt med mellomrom." + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd er en liten daemon for innsamling av data fra ulike kilder " +#~ "gjennom ulike plugins. På denne siden kan du endre generelle " +#~ "innstillinger for collectd daemon." + +#~ msgid "Destination ip range" +#~ msgstr "Destinasjon ip område" + +#~ msgid "Incoming interface" +#~ msgstr "Innkommende grensesnitt" + +#~ msgid "Name of the rule" +#~ msgstr "Navnet på regelen" + +#~ msgid "Network protocol" +#~ msgstr "Nettverks protokoll" + +#~ msgid "Options" +#~ msgstr "Alternativer" + +#~ msgid "Outgoing interface" +#~ msgstr "Utgående grensesnitt" + +#~ msgid "Source ip range" +#~ msgstr "Kilde ip område" + +#~ msgid "e.g. br-ff" +#~ msgstr "f.eks. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "f.eks. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "f.eks. forkast med tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "maks. 16 tegn" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "sekunder; flere adskilt med mellomrom" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "Server grensesnitt" +#~ msgid "server interfaces" +#~ msgstr "Server grensesnitt" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index 1140d0c27..c6bf25576 100644 --- a/applications/luci-app-statistics/po/pl/statistics.po +++ b/applications/luci-app-statistics/po/pl/statistics.po @@ -15,305 +15,341 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "APC UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "Konfiguracja wtyczki APCUPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Wartości bezwzględne" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Akcja (cel)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Dodaj polecenie do odczytywania wartości" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Dodaj pasującą regułę" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Dodaj wiele hostów rozdzielonych spacjami." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Dodaj komendę powiadamiającą" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Rodzina adresów" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Łączna liczba podłączonych użytkowników" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Główny katalog" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Podstawowy monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" "Ustawiając to, procesor nie jest połączony ze wszystkimi procesami w systemie" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "Kontekst cpu przełącza konfigurację wtyczek" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "Częstotliwość procesora" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "Konfiguracja wtyczki częstotliwości procesora" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Konfiguracja wtyczki procesora" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "Wyjście CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Konfiguracja wtyczki CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "W pamięci podręcznej gromadzone są dane dla" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Interwał opróżniania pamięci podręcznej" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Łańcuch" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "CollectLinks" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "CollectRoutes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "CollectTopology" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Ustawienia Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd jest małym demonem do zbieranie danych z różnych źródeł za pomocą " -"różnych wtyczek. Na tej stronie można zmienić ogólne ustawienia demona " -"collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Konfiguracja wtyczki conntrack" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "Przełączniki kontekstu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Konfiguracja wtyczki DF" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Konfiguracja wtyczki DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Odstępy zbierania danych" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Zdefiniowany plik ustawień" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Zakres docelowych adresów IP" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Katalog wtyczek collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Katalog podkonfiguracji" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Konfiguracja wtyczki dysku" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Zużycie przestrzeni dyskowej" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Użycie dysku" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Wyświetl Host >" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Przedział czasu wyświetlania »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Konfiguracja wtyczki email" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Email" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "Pusta wartość = monitoruj wszystko" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Włącz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Włącz tę wtyczkę" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Entropia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Konfiguracja wtyczki entropii" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Konfiguracja wtyczki Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "Pozycje dodatkowe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Monitorowanie filtra klas" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Zapora sieciowa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Opróżnienie pamięci podręcznej po" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Przekazywanie przez słuchacza na adres serwera" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "Zbieranie statystyk kompresji" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Wtyczki ogólne" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "Generowanie oddzielnego wykresu dla każdego zalogowanego użytkownika" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Wykresy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Grupa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -321,7 +357,7 @@ msgstr "" "Tutaj można zdefiniować zewnętrzne komendy, które będą włączane przez " "collectd, by odczytać konkretne wartości. Będą one odczytywane z stdout." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -331,7 +367,7 @@ msgstr "" "collectd, kiedy zostaną osiągnięte konkretne wartości progowe. Wartości " "powodujące włączenie będą wysyłane do programów przez stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -339,80 +375,87 @@ msgstr "" "Tutaj można zdefiniować różne kryteria według których wybierane są " "monitorowane reguły iptables." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" -"Przytrzymaj klawisz Ctrl, aby wybrać wiele elementów lub odznaczyć pozycje." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Nazwa hosta" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "Numer IP lub nazwa hosta jako wyjście txtinfo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Konfiguracja wtyczki IRQ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignoruj adresy źródłowe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Interfejs przychodzący" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Konfiguracja wtyczki interfejsu" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfejsy" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Przerwania" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Odstępy dla pingów" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Konfiguracja wtyczki iptables" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "Pozostaw niezaznaczone do automatycznego określenia interfejsu do " "monitorowania." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Nasłuchuj host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Nasłuchiwany port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Interfejsy nasłuchującego" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Konfiguracja wtyczki obciążenie" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" @@ -420,126 +463,286 @@ msgstr "" "Wartości maksymalne dla okresu mogą być używane zamiast średnich, gdy nie " "jest używana \"tylko średnia usługa RRAs\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Maksymalne dozwolone połączenia" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Pamięć" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Konfiguracja wtyczki pamięci" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Monitoruj wszystko oprócz podanych" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Monitoruj wszystkie lokalne otwarte porty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Monitorowanie wszystkich czujników" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "Urządzenie(-a) monitorujące/strefa(-y) cieplna(-e)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Monitoruj urządzenia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Monitoruj dyski i partycje" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Monitoruj system plików" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "Monitoruj hosta" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Monitoruj hosty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Monitoruj interfejsy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Monitoruj przerwania" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Monitoruj porty lokalne" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Monitoruj punkty zamontowania" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Monitoruj procesy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Monitoruj porty zdalne" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "Więcej szczegółów na temat wykorzystania częstotliwości i przejść" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Nazwa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Nazwa tej reguły" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Konfiguracja wtyczki Netlink" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Sieć" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Konfiguracja wtyczki sieć" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Wtyczki sieciowe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Protokoły sieciowe" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -548,270 +751,288 @@ msgstr "" "RRD, katalog przechowywania i wszystkie jego katalogi nadrzędne muszą być " "czytelne dla świata." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Liczba wątków do zbierania danych" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "Konfiguracja wtyczki OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Twórz tylko średnie archiwa RRA" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "Konfiguracja wtyczki OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "Pliki statusu OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Opcje" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Interfejs wychodzący" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Pluginy wyjścia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "Wartości procentowe" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Konfiguracja wtyczki Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "Port komunikacji z apcupsd" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Procesy systemowe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Konfiguracja wtyczki procesów systemowych" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "Monitorowane procesy oddzielone spacją" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Procesor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Monitorowanie Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "RRD XFiles Factor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "Częstotliwość interwału RRD" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "Częstotliwość zmian RRD" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Konfiguracja wtyczki RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "Raport procesora" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "Raport według stanu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "Raport w procentach" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Wierszy w archiwum RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Skrypt" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Sekundy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "Lista czujników" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Czujniki" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Konfiguracja wtyczek czujników" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Host serwera" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Port serwera" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "Konfiguracja" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Shaping Klasa Monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "Pokaż wartości maksymalne zamiast średnich" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Plik Gniazdo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Gniazdo Grupy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Uprawnienia Gniazda" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Zakres źródłowych adresów ip" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Określa jakie informacje zbierać o linkach." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Określa jakie informacje zbierać o trasach." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Określa jakie informacje zbierać o globalnej topologii." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "Dzierżawy Splash" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "Konfiguracja wtyczki dzierżaw Splash" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Statystyki" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Katalog przechowywania" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Katalog przechowywania plików csv" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" "Przechowuj wartości danych jako wskaźniki zamiast wartości bezwzględnych" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Przechowywane okresy czasu" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Obciążenie systemu" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Połączenia TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Konfiguracja wtyczki TCPConns" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL dla pakietów sieciowych" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL dla pakietów ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tablica" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "Wtyczka apcups zbiera statystyki dotyczące zasilacza apc ups." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "Wtyczka nut odczytuje informacje o zasilaczach bezprzerwowych." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." @@ -819,25 +1040,33 @@ msgstr "" "Wtyczka olsrd odczytuje informacje o sieciach mesh z wtyczki txtinfo dla " "olsrd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "Wtyczka openvpn gromadzi informacje o aktualnym stanie połączenia vpn." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" "Wtyczka conntrack zbiera statystyki dotyczące liczby śledzonych połączeń." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" "Wtyczka cpu zbiera podstawowe statystyki dotyczące wykorzystania procesora." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -845,7 +1074,7 @@ msgstr "" "Wtyczka csv przechowuje zebrane dane w formacie pliku csv do dalszego " "przetwarzania przez zewnętrzne programy." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -853,7 +1082,7 @@ msgstr "" "Wtyczka df zbiera statystyki dotyczące wykorzystania miejsca na dysku na " "różnych urządzeniach, punktach montowania lub typach plików." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -861,7 +1090,7 @@ msgstr "" "Wtyczka dysku zbiera szczegółowe statystyki użytkowania dla wybranych " "partycji lub całych dysków." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -869,7 +1098,7 @@ msgstr "" "Wtyczka dns zbiera szczegółowe statystyki dotyczące ruchu związanego z dns " "na wybranych interfejsach." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -881,11 +1110,11 @@ msgstr "" "with Mail::SpamAssasin::Plugin::Collectd but can be used in other ways as " "well." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "Wtyczka entropii gromadzi statystyki dotyczące dostępnej entropii." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -894,13 +1123,17 @@ msgstr "" "procesów zewnętrznych lub powiadomienia o osiągnięciu określonych wartości " "progowych." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "Wtyczka interfejsu gromadzi statystyki ruchu na wybranych interfejsach." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -908,7 +1141,7 @@ msgstr "" "Wtyczka iptables będzie monitorować wybrane reguły zapory sieciowej i " "zbierać informacje o przetworzonych bajtach i pakietach dla każdej reguły." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -917,7 +1150,7 @@ msgstr "" "każdego wybranego przerwania. Jeśli nie wybrano żadnego przerwania, " "wszystkie przerwy są monitorowane." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." @@ -925,16 +1158,16 @@ msgstr "" "Wtyczka iwinfo zbiera statystyki dotyczące siły sygnału bezprzewodowego, " "szumów i jakości." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" "Wtyczka obciążenia gromadzi statystyki dotyczące ogólnego obciążenia systemu." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "Wtyczka pamięci zbiera statystyki dotyczące wykorzystania pamięci." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -942,7 +1175,7 @@ msgstr "" "Wtyczki netlink zbiera rozszerzone informacje statystyk z qdisc-, klasa- i " "filter- dla wybranych interfejsów." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -954,7 +1187,7 @@ msgstr "" "lokalnie zebrane dane przenosi się do instancji serwera collectd, w trybie " "serwera lokalnego instancja odbiera dane z innych komputerów." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -962,7 +1195,7 @@ msgstr "" "Wtyczka ping wysyła odpowiedzi icmp echo do wybranych hostów i mierzy czas " "podróży w obie strony dla każdego z nich." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -970,7 +1203,7 @@ msgstr "" "Wtyczka procesy zbiera informacje o czasie procesora, błędach strony i " "pamięci wybranych procesów." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -983,7 +1216,7 @@ msgstr "" "katalogu tymczasowym. Może to sprawić, że urządzenie nie będzie nadawało się " "do użytku! </strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -991,7 +1224,7 @@ msgstr "" "Wtyczka czujników wykorzystuje strukturę Linux Sensors do zbierania " "statystyk środowiskowych." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:6 msgid "" "The splash leases plugin uses libuci to collect statistics about splash " "leases." @@ -999,7 +1232,7 @@ msgstr "" "Wtyczka dzierżaw Splash używa libuci do zbierania statystyk o dzierżawach " "Splash." -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -1009,7 +1242,7 @@ msgstr "" "zbierania danych i <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> do " "renderowania obrazów diagramu." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1017,7 +1250,7 @@ msgstr "" "Wtyczka tcpconns zbiera informacje o otwartych połączeniach TCP na wybranych " "portach." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -1027,7 +1260,7 @@ msgstr "" "z /sys/class/thermal/*/temp ( '*' oznacza urządzenie termiczne, które ma być " "odczytywane, np. thermal_zone1 )" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1035,31 +1268,31 @@ msgstr "" "Wtyczka unixsock tworzy socket unix, który może być używany do odczytu " "danych zebranych z bieżącej instancji collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "Wtyczka uptime zbiera statystyki dotyczące czasu pracy systemu." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "Termika" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "Konfiguracja wtyczki termicznej" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" "Wtyczka ta gromadzi statystyki dotyczące przełączników kontekstowych " "procesora." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" "Ten plugin gromadzi statystyki dotyczące skalowania częstotliwości procesora." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1067,131 +1300,234 @@ msgstr "" "Sekcja ta definiuje interfejsy na którym collectd będzie czekać na " "połączenia przychodzące." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "Ta sekcja określa do jakich serwerów zebrane dane zostaną wysłane." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Spróbuj znaleźć pełną nazwę hosta" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Konfiguracja wtyczek UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "Format nazwa UPS w NUT ups@host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Konfiguracja wtyczki UnixSock" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Czas pracy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "Konfiguracja wtyczki czasu pracy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "Użyj ulepszonego schematu nazewnictwa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Używany plik PID" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Użytkownik" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Pełny monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" "Po ustawieniu wartości true raportuje dane dotyczące stanu (system, " "użytkownik, stan bezczynności)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "Po ustawieniu true, żądamy wartości bezwzględnych" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "Po ustawieniu true, żądamy wartości procentowych" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Sieć bezprzewodowa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "Konfiguracja bezprzewodowego pluginu iwinfo" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "Możesz zainstalować dodatkowe wtyczki collectd-mod-*, aby włączyć więcej " "statystyk." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "Curl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "Konfiguracja wtyczki Curl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "np. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" +msgstr "zmniejsza rozmiar RRD" + +#~ msgid "Action (target)" +#~ msgstr "Akcja (cel)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "np. br-lan" +#~ msgid "Add matching rule" +#~ msgstr "Dodaj pasującą regułę" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "np. reject-with tcp-reset" +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Dodaj wiele hostów rozdzielonych spacjami." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "max. 16 znaków" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd jest małym demonem do zbieranie danych z różnych źródeł za " +#~ "pomocą różnych wtyczek. Na tej stronie można zmienić ogólne ustawienia " +#~ "demona collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "zmniejsza rozmiar RRD" +#~ msgid "Destination ip range" +#~ msgstr "Zakres docelowych adresów IP" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "" +#~ "Przytrzymaj klawisz Ctrl, aby wybrać wiele elementów lub odznaczyć " +#~ "pozycje." + +#~ msgid "Incoming interface" +#~ msgstr "Interfejs przychodzący" + +#~ msgid "Monitor all sensors" +#~ msgstr "Monitorowanie wszystkich czujników" + +#~ msgid "Name of the rule" +#~ msgstr "Nazwa tej reguły" + +#~ msgid "Network protocol" +#~ msgstr "Protokoły sieciowe" + +#~ msgid "Options" +#~ msgstr "Opcje" + +#~ msgid "Outgoing interface" +#~ msgstr "Interfejs wychodzący" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "Monitorowane procesy oddzielone spacją" + +#~ msgid "Source ip range" +#~ msgstr "Zakres źródłowych adresów ip" + +#~ msgid "e.g. br-ff" +#~ msgstr "np. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "np. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "np. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "max. 16 znaków" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "sekundy; wielokrotnie oddzielone spacją" +#~ msgid "seconds; multiple separated by space" +#~ msgstr "sekundy; wielokrotnie oddzielone spacją" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "Interfejsy serwera" +#~ msgid "server interfaces" +#~ msgstr "Interfejsy serwera" diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index 0863ed14f..95ab422f3 100644 --- a/applications/luci-app-statistics/po/pt/statistics.po +++ b/applications/luci-app-statistics/po/pt/statistics.po @@ -14,305 +14,341 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "Nobreak APC" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "Configuração do Módulo APCUPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Ação (destino)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Adicionar comando para leitura de valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Adicionar regra" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Adicionar hosts múltiplos separados por espaço." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Adicionar o comando de notificação" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Família de endereços" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Numero agregado de utilizadores conectados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Diretório Base" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Monitoramento básico" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" "Ao ativar isto, CPU não é agregada de todos os processadores no sistema" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "Configuração do Módulo de Troca de Contexto da CPU" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "Frequência da CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "Configuração do Plugin da Frequência da CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Configuração do plugin CPU" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "Formato CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Configuração do plugin CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Cache dos dados coletados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Intervalo de limpeza do cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Cadeia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "Coleção de Links" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "Coleção de Rotas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "Coleção de Topologias" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Configurações do Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd é um pequeno daemon que coleta dados de várias fontes através de " -"diferentes plugins. Nesta página você pode alterar as configurações gerais " -"do daemon collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Configuração do Plugin do Conntrack" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "Trocas de Contexto" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Configuração do plugin DF" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Configuração do plugin DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Intervalo da coleta de dados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Arquivo com a definição de dados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "IP de destino" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Diretório para os plugins do collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Diretório para sub-configurações" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Configuração do plugin Disco" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Utilização de espaço em disco" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Utilização do Disco" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Mostrar Host »" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Mostrar intervalo »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Configuração do plugin E-Mail" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Email" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "Valor vazio = monitore todos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Ativar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Habilitar este plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Entropia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Configuração do Plugin de Entropia" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Configuração do plugin Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "Itens adicionais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Monitoramento das Classes de Filtros" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Limpar cache após" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Transmissão entre o endereço de escuta e dos servidores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "Obter estatísticas sobre a compressão" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Plugins Gerais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "Gerar um gráfico separado para cada utilizador conectado" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Gráficos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Grupo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -320,7 +356,7 @@ msgstr "" "Aqui pode definir comandos externos que serão iniciados pelo collectd a fim " "de ler determinados valores. Os valores serão lidos a partir do stdout." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -330,7 +366,7 @@ msgstr "" "quando determinados valores limite forem atingidos. Os valores passados ao " "comando serão enviados para o stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -338,80 +374,87 @@ msgstr "" "Aqui você pode definir diversos critérios para as regras iptables " "selecionadas serem monitoradas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" -"Segure o Ctrl para selecionar múltiplos itens ou para retirar entradas." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Nome do Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "Endereço IP ou nome do equipamento de onde obter a saída do txtinfo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Configuração do plugin IRQ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignorar endereços de origem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Interface de entrada" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Configuração do plugin Interface" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Interrupções" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Intervalo dos pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Configuração do plugin Iptables" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "Deixar desmarcada para determinar automaticamente as interfaces a " "monitorizar." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Endereço de escuta do Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Porta de escuta" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Escutar na(s) interface(s)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Configuração do plugin carga" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" @@ -419,126 +462,272 @@ msgstr "" "Valores máximos para um período podem ser usados em vez de médias quando não " "estiver usando 'somente RRAs de médias'" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Máximo de conexões permitidas" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Configuração do Plugin de Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Monitorizar tudo excepto os especificados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Monitorar todas as portas locais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Monitorar todas os sensores" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "Dispositivo(s) de monitoramento / zona(s) térmica(s)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Monitorar dispositivos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Monitoras discos e partições" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Monitorar tipos de sistemas de arquivos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "Equipamento Monitor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Monitorar os hosts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Monitorizar interfaces" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Monitorar interrupções" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Monitorar as portas locais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Monitorar pontos de montagem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Monitorar processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Monitorar portas remotas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "Mais detalhes sobre o uso de frequências e transições" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Nome" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Nome da regra" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Configuração do plugin Netlink" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Configuração do plugin Rede" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Plugins de rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Protocolo de rede" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -547,269 +736,287 @@ msgstr "" "ficheiros * .rrd, o diretório de armazenamento e todos os seus diretórios " "superiores precisam ser legíveis a todos." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Número de threads para o coletor de dados" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "Configuração do Plugin OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Somente criar RRAs de média" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "Configuração do Plugin do OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "Ficheiros de estado do OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Opções" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Interface de saída" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Plugins de saída" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "Valores percentuais" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Configuração do plugin Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Porta" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "Porta para comunicação do apcupsd" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Configuração do plugin Processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "Processos para monitorar, separado por espaços" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Processador" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Monitoramento do Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "Arquivos RRD XFiles Factor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "Intervalo entre duas atualizações" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "Intervalo de atualização" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Configuração do plugin RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "Relatório por CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "Relatório por estado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "Relatório em percentagem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Linhas por RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Script" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "Lista de sensores" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Sensores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Configuração do Plugin de Sensores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "IP/Hostname do servidor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Porta do servidor" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "Configuração" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Monitoramento das Classes de Shaping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "Mostrar valores máximos em vez de médias" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Ficheiro do socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Grupo do socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Permissões do socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "IP de origem" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Especifica quais informações serão coletadas sobre os enlaces." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Especifica quais informações serão coletadas sobre as rotas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Especifica quais informações serão coletadas sobre a topologia global." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "Concessões do Splash" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "Configuração do Plugin das Concessões do Splash" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Estatística" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Diretório de armazenamento" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Diretório para armazenamento dos arquivos csv" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Armazenar os valores dos dados como taxas em vez de valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Intervalos armazenados" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Carga do Sistema" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Conexões TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Configuração do plugin TCPConns" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL para os pacotes de rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL para os pacotes do ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tabela" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "O módulo APCUPS coleta estatísticas sobre o nobreak APC." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "O plugin NUT lê informações sobre Fontes de alimentação ininterruptas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." @@ -817,14 +1024,22 @@ msgstr "" "O plugin OLSRd lê informações sobre redes em malha (mesh) a partir do plugin " "txtinfo do OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" "O plugin OpenVPN reúne informações sobre o status atual da conexão VPN." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -832,12 +1047,12 @@ msgstr "" "O plugin do conntrack coleta estatísticas sobre o número de conexões " "rastreadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" "O plugin cpu coleta as estatísticas básicas sobre o uso do processador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -845,7 +1060,7 @@ msgstr "" "O plugin csv armazena os dados coletados em um arquivo no formato csv para " "um futuro processamento por outros programas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -853,7 +1068,7 @@ msgstr "" "O plugin df coleta estatísticas sobre a utilização de espaço em disco em " "diferentes dispositivos, pontos de montagem ou tipos de sistemas de arquivos." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -861,7 +1076,7 @@ msgstr "" "O plugin disco coleta estatísticas de uso detalhadas das partições " "selecionadas ou discos inteiros." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -869,7 +1084,7 @@ msgstr "" "O plugin dns coleta estatísticas detalhadas sobre o tráfego do dns nas " "interfaces selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -881,11 +1096,11 @@ msgstr "" "destinado a ser utilizado em conjunto com o plugin Mail::SpamAssasin::" "Plugin::Collectd mas pode ser utilizado de outras maneiras também." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "O plugin de entropia coleta estatísticas sobre a entropia disponível." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -893,14 +1108,18 @@ msgstr "" "O plugin exec inicia comandos externos para leitura de valores ou notificar " "processos externos quando um determinado valor limite for atingido." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "O plugin interface plugin coleta estatísticas sobre o tráfego das interfaces " "selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -908,7 +1127,7 @@ msgstr "" "O plugin iptables irá monitorar as regras de firewall selecionadas e coletar " "informações sobre pacotes e bytes processados pela regra." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -917,7 +1136,7 @@ msgstr "" "selecionada. Se nenhuma interrupção for selecionada então todas as " "interrupções serão monitoradas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." @@ -925,15 +1144,15 @@ msgstr "" "O plugin iwinfo coleta estatísticas sobre a força, ruído e qualidade do " "sinal da rede sem fio." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "O plugin carga coleta estatísticas gerais sobre a carga do sistema." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "O plugin de memória coleta estatísticas sobre o uso da memória." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -941,7 +1160,7 @@ msgstr "" "O plugin Netlink coleta informações detalhadas como qdisc-, classe- e filtro " "de estatísticas das interfaces selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -954,7 +1173,7 @@ msgstr "" "localmente são transferidos para um servidor collectd, no modo de servidor a " "instância local recebe dados de outros hosts." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -962,7 +1181,7 @@ msgstr "" "O plugin ping irá enviar pacotes ICMP to tipo echo aos hosts selecionados e " "medir o tempo de resposta para cada host." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -970,7 +1189,7 @@ msgstr "" "O plugin processo coleta informações como o tempo da cpu, página falhas e " "uso de memória dos processos selecionados." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -982,7 +1201,7 @@ msgstr "" "em um valor muito elevado no consumo de memória no diretório temporário. " "Isso pode tornar o equipamento inutilizável!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -990,7 +1209,7 @@ msgstr "" "O plugin de sensores usa a estrutura de sensores do Linux para coletar " "estatísticas ambientais." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:6 msgid "" "The splash leases plugin uses libuci to collect statistics about splash " "leases." @@ -998,7 +1217,7 @@ msgstr "" "O plug-in de concessões splash usa o libuci para coletar estatísticas sobre " "concessões de splash." -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -1008,7 +1227,7 @@ msgstr "" "para coletar dados e <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> " "para desenhar os gráficos." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1016,7 +1235,7 @@ msgstr "" "O plugin tcpconns coleta informações sobre as conexões TCP abertas das " "portas selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -1026,7 +1245,7 @@ msgstr "" "tipicamente lidos de /sys/class/thermal/*/temp ('*' indica o aparelho " "térmico a ser lido, ex:, thermal_zone1)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1034,33 +1253,33 @@ msgstr "" "O plugin unixsock cria um socket unix, que pode ser usado para ler os dados " "coletados a partir de uma instância do collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" "O plugin de tempo de atividade coleta estatísticas sobre o tempo de " "atividade do sistema." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "Térmico" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "Configuração do Plugin Térmico" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" "Este módulo coleta estatísticas sobre as trocas de contexto do processador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" "Este plugin coleta as estatísticas sobre o escalonamento da frequência do " "processador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1068,133 +1287,230 @@ msgstr "" "Esta seção define em quais interfaces o collectd irá aguardar para receber " "conexões." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Esta seção define para qual servidor os dados coletados localmente serão " "enviados." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Tentar encontrar o nome do host completo (FQDN)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS (no-breaks)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Plugin de configuração UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "Nome do UPS no NUT em formato ups@equipamento" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Configuração do plugin Unixsock" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Uptime" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "Configuração do Plugin de Tempo de Atividade" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "Use um esquema de nomeação melhorado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Arquivo PID usado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Utilizador" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Monitoramento no modo verbose" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" "Quando definido como verdadeiro relata a métrica por estado (sistema, " "utilizador, ocioso)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "Quando definido como verdadeiro, solicitamos valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "Quando definido como verdadeiro solicitamos valores percentuais" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Wireless" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "Configuração do Plugin iwinfo da Rede Sem Fio (Wireless)" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "Pode instalar plugins adicionais (collectd-mod-*) para ativar mais " "estatísticas." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "Configuração do Plugin cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "ex. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" +msgstr "reduzir o tamanho do rrd" + +#~ msgid "Action (target)" +#~ msgstr "Ação (destino)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "ex. br-lan" +#~ msgid "Add matching rule" +#~ msgstr "Adicionar regra" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "ex. rejeitar-com tcp-reset" +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Adicionar hosts múltiplos separados por espaço." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "max. 16 caract." +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd é um pequeno daemon que coleta dados de várias fontes através de " +#~ "diferentes plugins. Nesta página você pode alterar as configurações " +#~ "gerais do daemon collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "reduzir o tamanho do rrd" +#~ msgid "Destination ip range" +#~ msgstr "IP de destino" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "" +#~ "Segure o Ctrl para selecionar múltiplos itens ou para retirar entradas." + +#~ msgid "Incoming interface" +#~ msgstr "Interface de entrada" + +#~ msgid "Monitor all sensors" +#~ msgstr "Monitorar todas os sensores" + +#~ msgid "Name of the rule" +#~ msgstr "Nome da regra" + +#~ msgid "Network protocol" +#~ msgstr "Protocolo de rede" + +#~ msgid "Options" +#~ msgstr "Opções" + +#~ msgid "Outgoing interface" +#~ msgstr "Interface de saída" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "Processos para monitorar, separado por espaços" + +#~ msgid "Source ip range" +#~ msgstr "IP de origem" + +#~ msgid "e.g. br-ff" +#~ msgstr "ex. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "ex. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "ex. rejeitar-com tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "max. 16 caract." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "segundos; vários valores, separar com espaço" +#~ msgid "seconds; multiple separated by space" +#~ msgstr "segundos; vários valores, separar com espaço" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "Interfaces do servidor" +#~ msgid "server interfaces" +#~ msgstr "Interfaces do servidor" diff --git a/applications/luci-app-statistics/po/pt_BR/statistics.po b/applications/luci-app-statistics/po/pt_BR/statistics.po index 45d7ad5ba..1794c05db 100644 --- a/applications/luci-app-statistics/po/pt_BR/statistics.po +++ b/applications/luci-app-statistics/po/pt_BR/statistics.po @@ -14,306 +14,342 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "Nobreak APC" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "Configuração do Módulo APCUPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Ação (destino)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Adicionar comando para leitura de valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Adicionar regra" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Adicione múltiplos equipamentos separados por espaço." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Adicionar o comando de notificação" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Família de endereços" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Numero agregado de usuários conectados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Diretório Base" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Monitoramento básico" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" "Ao definir esta opção a CPU não se agregará a todos os processos do sistema" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "Configuração do Módulo de Troca de Contexto da CPU" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "Frequência da CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "Configuração do Plugin da Frequência da CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Configuração do plugin CPU" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "Saida CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Configuração do plugin CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Cache dos dados coletados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Intervalo de limpeza do cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Corrente" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "Coleção de Links" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "Coleção de Rotas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "Coleção de Topologias" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Configurações do Coletadas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd é um pequeno daemon que coleta dados de várias fontes através de " -"diferentes plugins. Nesta página você pode alterar as configurações gerais " -"do daemon collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Configuração do Plugin do Conntrack" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "Trocas de Contexto" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Configuração do plugin DF" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Configuração do plugin DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Intervalo da coleta de dados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Arquivo com a definição de dados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Faixa IP de destino" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Diretório para os plugins do collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Diretório para sub-configurações" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Configuração do plugin Disco" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Utilização de espaço em disco" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Utilização do Disco" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Mostrar Host" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Mostrar intervalo »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Configuração do plugin E-Mail" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Email" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "Valor vazio = monitore todos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Ativar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Habilitar este plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Entropia" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Configuração do Plugin de Entropia" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Configuração do plugin Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "Items extras" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Monitoramento das Classes de Filtros" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Limpar cache após" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" "Encaminhamento entre o endereço de escuta e os endereços dos servidores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "Obter estatísticas sobre a compressão" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Plugins Gerais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "Gerar um gráfico separado para cada usuário conectado" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Gráficos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Grupo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -321,7 +357,7 @@ msgstr "" "Aqui você pode definir comandos externos que serão iniciados pelo collectd a " "fim de ler determinados valores. Os valores serão lidos a partir do stdout." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -331,7 +367,7 @@ msgstr "" "collectd quando determinados valores limite forem atingidos. Os valores " "passados ao comando serão enviados para o stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -339,81 +375,87 @@ msgstr "" "Aqui você pode definir diversos critérios para as regras iptables " "selecionadas serem monitoradas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" -"Mantenha a tecla Ctrl pressionada para selecionar múltiplos itens ou para " -"retirar entradas." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Nome do equipamento" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "Endereço IP ou nome do equipamento de onde obter a saída do txtinfo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Configuração do plugin IRQ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignorar endereços de origem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Interface de entrada" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Configuração do plugin Interface" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Interrupções" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Intervalo para pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Configuração do plugin Iptables" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "Deixe sem selecionar para determinar automaticamente a interface a ser " "monitorada." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Endereço de escuta do Host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Porta de escuta" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Escutar na(s) interface(s)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Configuração do plugin carga" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" @@ -421,126 +463,272 @@ msgstr "" "Valores máximos para um período podem ser usados em vez de médias quando não " "estiver usando 'somente RRAs de médias'" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Máximo de conexões permitidas" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Configuração do Plugin da Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Monitore tudo exceto se especificado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Monitorar todas as portas locais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Monitorar todas os sensores" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "Dispositivo(s) de monitoramento / zona(s) térmica(s)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Monitorar dispositivos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Monitoras discos e partições" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Monitorar tipos de sistemas de arquivos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "Equipamento Monitor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Monitorar os equipamentos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Monitorar interfaces" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Monitorar interrupções" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Monitorar as portas locais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Monitorar pontos de montagem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Monitorar processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Monitorar portas remotas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "Mais detalhes sobre a frequência usada e transições" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Nome" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Nome da regra" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Configuração do plugin Netlink" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Configuração do plugin Rede" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Plugins de rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Protocolo de rede" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -549,269 +737,287 @@ msgstr "" "rrd, o diretório de armazenamento e todos os seus diretórios superiores " "precisam ser legíveis a todos." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Número de threads para o coletor de dados" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "Configuração do Plugin OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Somente criar RRAs de média" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "Configuração do Plugin do OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "Arquivos de estado do OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Opções" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Interface de saída" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Plugins de saída" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "Valores em percentual" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Configuração do plugin Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Porta" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "Porta para comunicação do apcupsd" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Configuração do plugin Processos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "Processos para monitorar, separado por espaços" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Processador" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Monitoramento do Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "Fator RRD XFiles" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "Intervalo entre duas atualizações" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "Intervalo de atualização" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Configuração do plugin RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "Relatado pela CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "Relatório por estado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "Relatório em porcentagem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Linhas por RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Script" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "Lista de sensores" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Sensores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Configuração do Plugin de Sensores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Endereço do servidor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Porta do servidor" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "Configuração" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Monitoramento das Classes de Shaping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "Mostrar valores máximos em vez de médias" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Arquivo do socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Grupo do socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Permissões do socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Faixa de IP de origem" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Especifica quais informações serão coletadas sobre os enlaces." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Especifica quais informações serão coletadas sobre as rotas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Especifica quais informações serão coletadas sobre a topologia global." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "Concessões do Splash" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "Configuração do Plugin das Concessões do Splash" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Estatísticas" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Diretório de armazenamento" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Diretório para armazenamento dos arquivos csv" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Armazenar os valores dos dados como taxas em vez de valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Intervalos armazenados" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Carga do Sistema" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Conexões TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Configuração do plugin TCPConns" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL para os pacotes de rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL para os pacotes do ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tabela" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "O módulo APCUPS coleta estatísticas sobre o nobreak APC." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "O plugin NUT lê informações sobre Fontes de alimentação ininterruptas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." @@ -819,14 +1025,22 @@ msgstr "" "O plugin OLSRd lê informações sobre redes em malha (mesh) a partir do plugin " "txtinfo do OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" "O plugin OpenVPN reúne informações sobre o status atual da conexão VPN." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -834,12 +1048,12 @@ msgstr "" "O plugin do conntrack coleta estatísticas sobre o número de conexões " "rastreadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" "O plugin cpu coleta as estatísticas básicas sobre o uso do processador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -847,7 +1061,7 @@ msgstr "" "O plugin csv armazena os dados coletados em um arquivo no formato csv para " "um futuro processamento por outros programas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -855,7 +1069,7 @@ msgstr "" "O plugin df coleta estatísticas sobre a utilização de espaço em disco em " "diferentes dispositivos, pontos de montagem ou tipos de sistemas de arquivos." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -863,7 +1077,7 @@ msgstr "" "O plugin disco coleta estatísticas de uso detalhadas das partições " "selecionadas ou discos inteiros." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -871,7 +1085,7 @@ msgstr "" "O plugin dns coleta estatísticas detalhadas sobre o tráfego do dns nas " "interfaces selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -883,11 +1097,11 @@ msgstr "" "destinado a ser utilizado em conjunto com o plugin Mail::SpamAssasin::" "Plugin::Collectd mas pode ser utilizado de outras maneiras também." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "O plugin de entropia coleta estatísticas sobre a entropia disponível." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -895,14 +1109,18 @@ msgstr "" "O plugin exec inicia comandos externos para leitura de valores ou notificar " "processos externos quando um determinado valor limite for atingido." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "O plugin interface plugin coleta estatísticas sobre o tráfego das interfaces " "selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -910,7 +1128,7 @@ msgstr "" "O plugin iptables irá monitorar as regras de firewall selecionadas e coletar " "informações sobre pacotes e bytes processados pela regra." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -919,7 +1137,7 @@ msgstr "" "interrupção selecionada. Se nenhuma interrupção for selecionada então todas " "as interrupções serão monitoradas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." @@ -927,15 +1145,15 @@ msgstr "" "O plugin iwinfo coleta estatísticas sobre a força, ruído e qualidade do " "sinal da rede sem fio." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "O plugin de carga coleta estatísticas gerais sobre a carga do sistema." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "O plugin de memória coleta estatísticas sobre o uso da memória." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -943,7 +1161,7 @@ msgstr "" "O plugin Netlink coleta informações detalhadas como qdisc-, classe- e " "estatísticas de filtro das interfaces selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -956,7 +1174,7 @@ msgstr "" "localmente são transferidos para um servidor collectd. No modo de servidor, " "o servidor local recebe os dados de outros servidores." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -964,7 +1182,7 @@ msgstr "" "O plugin ping irá enviar pacotes ICMP to tipo echo aos equipamentos " "selecionados e medir o tempo de resposta para cada equipamento." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -972,7 +1190,7 @@ msgstr "" "O plugin de processos coleta informações como o tempo da cpu, falha de " "página e uso de memória dos processos selecionados." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -984,7 +1202,7 @@ msgstr "" "em um valor muito elevado no consumo de memória no diretório temporário. " "Isso pode tornar o equipamento inutilizável!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -992,7 +1210,7 @@ msgstr "" "O plugin de sensores usa a estrutura de sensores do Linux para coletar " "estatísticas ambientais." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:6 msgid "" "The splash leases plugin uses libuci to collect statistics about splash " "leases." @@ -1000,7 +1218,7 @@ msgstr "" "O plug-in de concessões splash usa o libuci para coletar estatísticas sobre " "concessões de splash." -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -1010,7 +1228,7 @@ msgstr "" "a> para coletar dados e <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</" "a> para desenhar os gráficos." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1018,7 +1236,7 @@ msgstr "" "O plugin tcpconns coleta informações sobre as conexões TCP abertas das " "portas selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -1028,7 +1246,7 @@ msgstr "" "tipicamente lidos de /sys/class/thermal/*/temp ('*' indica o dispositivo " "térmico a ser lido, ex:, thermal_zone1)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1036,33 +1254,33 @@ msgstr "" "O plugin unixsock cria um socket unix, que pode ser usado para ler os dados " "coletados a partir de uma collectd em execução." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" "O plugin de tempo de atividade coleta estatísticas sobre o tempo de " "atividade do sistema." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "Térmico" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "Configuração do Plugin Térmico" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" "Este módulo coleta estatísticas sobre as trocas de contexto do processador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" "Este plugin coleta as estatísticas sobre o escalonamento da frequência do " "processador." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1070,134 +1288,232 @@ msgstr "" "Esta seção define em quais interfaces o collectd irá aguardar para receber " "conexões." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Esta seção define para qual servidor os dados coletados localmente serão " "enviados." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Tentar encontrar o nome completo do equipamento (FQDN)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS (no-breaks)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Plugin de configuração UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "Nome do UPS no NUT em formato ups@equipamento" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Configuração do plugin Unixsock" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Tempo de atividade" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "Configuração do Plugin de Tempo de Atividade" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "Use um esquema de nomeação melhorado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Arquivo PID usado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Usuário" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Monitoramento no modo detalhado" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" "Quando definido como verdadeiro, os relatório são feitos pela métrica de " "estado (sistema, usuário, ocioso)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "Quando definido como verdadeiro, serão requeridos valores absolutos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" "Quando definido como verdadeiro, serão requeridos valores em percentual" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Rede sem fio" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "Configuração do Plugin iwinfo da Rede Sem Fio (Wireless)" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "Você pode instalar plugins adicionais (collectd-mod-*) para habilitar mais " "estatísticas." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "Configuração do Plug-in cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "ex: br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" +msgstr "reduzir o tamanho do rrd" + +#~ msgid "Action (target)" +#~ msgstr "Ação (destino)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "ex: br-lan" +#~ msgid "Add matching rule" +#~ msgstr "Adicionar regra" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "ex: rejeitar-com tcp-reset" +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Adicione múltiplos equipamentos separados por espaço." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "máx. 16 caracteres" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd é um pequeno daemon que coleta dados de várias fontes através de " +#~ "diferentes plugins. Nesta página você pode alterar as configurações " +#~ "gerais do daemon collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "reduzir o tamanho do rrd" +#~ msgid "Destination ip range" +#~ msgstr "Faixa IP de destino" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "" +#~ "Mantenha a tecla Ctrl pressionada para selecionar múltiplos itens ou para " +#~ "retirar entradas." + +#~ msgid "Incoming interface" +#~ msgstr "Interface de entrada" + +#~ msgid "Monitor all sensors" +#~ msgstr "Monitorar todas os sensores" + +#~ msgid "Name of the rule" +#~ msgstr "Nome da regra" + +#~ msgid "Network protocol" +#~ msgstr "Protocolo de rede" + +#~ msgid "Options" +#~ msgstr "Opções" + +#~ msgid "Outgoing interface" +#~ msgstr "Interface de saída" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "Processos para monitorar, separado por espaços" + +#~ msgid "Source ip range" +#~ msgstr "Faixa de IP de origem" + +#~ msgid "e.g. br-ff" +#~ msgstr "ex: br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "ex: br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "ex: rejeitar-com tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "máx. 16 caracteres" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "segundos; vários valores, separar com espaço" +#~ msgid "seconds; multiple separated by space" +#~ msgstr "segundos; vários valores, separar com espaço" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "interfaces do servidor" +#~ msgid "server interfaces" +#~ msgstr "interfaces do servidor" diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index 1b2478dff..3145d6b98 100644 --- a/applications/luci-app-statistics/po/ro/statistics.po +++ b/applications/luci-app-statistics/po/ro/statistics.po @@ -15,834 +15,1064 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Directorul de baza" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Configurarea pluginului CPU" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "Afisarea CSV" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Configurarea pluginului CVS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Setarile Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -"Collectd e un serviciu mic pentru colectarea de date din diferite surse prin " -"diferite pluginuri. In aceasta pagina poti schimba setarile generale pentru " -"Collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Intervalul de colectare date" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Fisierul de definitii dataseturi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Directorul pentru pluginurile collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Directorul pentru sub-configuratii" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Utilizarea spatiului pe disc" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Utilizarea discului" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Email" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Activează" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Grafice" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Numele de host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfete" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Intreruperi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Interval pentru ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Legatura de retea" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Retea" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Pluginuri de retea" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Numarul de threaduri pentru colectarea datelor" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Pluginuri de iesire" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Procese" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Procesor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Secunde" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Incarcarea de sistem" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Conexiuni TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" "Pluginul pentru CPU colecteaza statistici de baza despre utilizarea " "procesorului." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -850,54 +1080,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -905,19 +1139,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -925,195 +1159,239 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Incearca sa rezolvi numele de domeniu complet" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Fisierul pentru PID folosit" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Wireless" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 -msgid "" -"You can install additional collectd-mod-* plugins to enable more statistics." +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 -msgid "cUrl" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 -msgid "cUrl Plugin Configuration" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: luasrc/view/admin_statistics/index.htm:15 +msgid "" +"You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 +msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 +msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd e un serviciu mic pentru colectarea de date din diferite surse " +#~ "prin diferite pluginuri. In aceasta pagina poti schimba setarile generale " +#~ "pentru Collectd." #~ msgid "Collectd" #~ msgstr "Collectd" diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index 0983871db..85fb23fc4 100644 --- a/applications/luci-app-statistics/po/ru/statistics.po +++ b/applications/luci-app-statistics/po/ru/statistics.po @@ -16,305 +16,342 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "APC ИБП" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "Настройка плагина «APCUPS»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "Абсолютные значения" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Действие (цель)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Добавить команду для чтения значений" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Добавить правило выборки" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Добавить несколько хостов, разделённых пробелом" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Добавить команду уведомления" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "Тип адреса" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "Общее число подключенных пользователей" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Основная папка приложения" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Основная статистика" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" "При установке данной опции график CPU не будет агрегировать данные всех " "процессоров в системе" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "Настройка плагина переключений контекста CPU" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "Частота CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "Настройка плагина частоты CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Настройка плагина «CPU»" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV вывод" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Настройка плагина «CSV»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Кэшировать собранную статистику в течении" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Интервал сброса кэша" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Цепочка" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "Сбор информации о соединениях (CollectLinks)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "Сбор информации о маршрутах (CollectRoutes)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "Сбор информации о топологии (CollectTopology)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Настройки сollectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd — это сервис для сбора данных из разных источников при помощи " -"плагинов. На этой странице вы можете изменить настройки collectd." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Отслеживание подключений (Conntrack)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Настройка плагина «Conntrack»" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "Переключения контекста" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Настройка плагина «DF»" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Настройка плагина «DNS»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Интервал сбора данных" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Файл с определением набора данных" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Диапазон IP-адресов назначения" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Папка с плагинами collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Папка с config файлом" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Настройка плагина «Disk»" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Использовано места на диске" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Использование диска" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Показать хост »" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Показать за промежуток »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Настройка плагина «E-Mail»" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "E-mail" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "Если пусто = отслеживать все" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Включить" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Включить этот плагин" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Энтропия" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Настройка плагина «Энтропия»" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Настройка плагина «Exec»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "Дополнительные элементы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Мониторинг класса фильтров" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Межсетевой экран" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Сбросить кэш после" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Перенаправление между локальным адресом и адресом сервера" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "Сбор статистики сжатия" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Основные плагины" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "Создать отдельный график для каждого авторизованного пользователя" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Графики" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Группа" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -322,7 +359,7 @@ msgstr "" "Здесь вы можете определить внешние команды, которые будут выполнены для " "чтения определенных значений. Значения будут считаны со стандартного вывода." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -332,7 +369,7 @@ msgstr "" "значения достигнут определенного порога. Значения будут переданы на " "стандартный ввод вызванным программам." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -340,81 +377,87 @@ msgstr "" "Здесь вы можете указать различные критерии, по которым будут выбраны правила " "для сбора статистики." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" -"Удерживая нажатой клавишу Ctrl, выберите несколько элементов или отмените " -"выбор записей." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Хост" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Имя хоста" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "IP-адрес или имя хоста, с которых получать текстовый вывод" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Настройка плагина «IRQ»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Игнорировать исходящие адреса" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Входящий интерфейс" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Настройка плагина «Интерфейсы»" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Интерфейсы" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Прерывания" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Интервал для ping-запросов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Настройка плагина «Iptables»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" "Оставьте невыбранным для автоматического определения интерфейсов для " "мониторинга." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Хост для входящих соединений" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Порт" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Прослушивать интерфейсы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Настройка плагина «Загрузка системы»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" @@ -422,126 +465,286 @@ msgstr "" "Максимальные значения для периода могут использоваться вместо средних " "значений, когда не используется опция «Создавать только средние RRA»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Максимум разрешенных соединений" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Оперативная память (RAM)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Настройка плагина «Оперативная память (RAM)»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Собирать статистику со всех кроме указанных" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Собирать статистику со всех портов для входящих соединений" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Мониторить все сенсоры" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "Мониторить устройство(а) / зону(ы) нагрева" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Мониторить устройства" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Мониторить диски и разделы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Монитоить типы файловых систем" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "Мониторить хост" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Мониторить хосты" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Мониторить интерфейсы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Мониторить прерывания" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Мониторить локальные порты" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Мониторить точки монтирования" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Мониторить процессы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Мониторить удаленные порты" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "Более подробная информация о частоте и переключениях" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Имя" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Имя правила" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Настройка плагина «Netlink»" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Сеть" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Настройка плагина «Сеть»" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Сетевые плагины" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Сетевой протокол" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -549,298 +752,324 @@ msgstr "" "Внимание: все операции осуществляются под пользователем «nobody», " "соответственно все файлы *.rrd и папки будут доступны любому пользователю." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Количество потоков сбора данных" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "Настройка плагина «OLSRd»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Создавать только средние RRA" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "Настройка плагина «OpenVPN»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "Файлы состояния службы OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Опции" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Исходящий интерфейс" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Плагины вывода" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "Значения в процентах" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Пинг-запрос" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Настройка плагина «Пинг-запрос»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Порт" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "Порт для связи со службой apcupsd" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Процессы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Настройка плагина «Процессы»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "Процессы для мониторинга (разделённые пробелом)" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "CPU" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Мониторинг Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" "Часть интервала консолидации, которая может состоять из неопределенных " "значений (*UNKNOWN*), если консолидированное значение может быть определено " "(известно)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "Максимальное количество секунд между двумя обновлениями (HeartBeat)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "Базовый интервал между данными в RRD (StepSize)" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Настройка плагина «RRDTool»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "Отдельно для каждого процессора" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "Отдельно для каждого состояния" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "Отображать в процентах" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Количество «поколений» данных в архиве RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Скрипт" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Секунд(ы)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "Список сенсоров" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Сенсоры" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Настройка плагина «Сенсоры»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Хост сервера" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Порт сервера" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "Настройка" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Мониторинг классов Shaping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "Показывать максимальные значения, а не средние" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Файл сокета" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Группа сокета" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Права доступа сокета" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Диапазон IP-адресов источника" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Указывает, какую информацию собирать о соединениях." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Указывает, какую информацию собирать о маршрутах." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Указывает, какую информацию собирать о глобальной топологии." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "Splash Leases" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "Настройка плагина «Splash Leases»" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Статистика" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Папка с данными" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Папка для CSV-файлов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Хранить данные в виде коэффициентов вместо абсолютных значений" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Сохраняемые промежутки времени" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Загрузка системы" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCPConns" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Настройка плагина «TCPConns»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL для сетевых пакетов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL для ping-пакетов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Таблица" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "Плагин «APCUPS» собирает статистику об ИБП APC." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" "Плагин «NUT» считывает информацию об источниках бесперебойного питания." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" "Плагин «OLSRd» считывает информацию о узловых сетях с плагина txtinfo OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" "Плагин «OpenVPN» собирает информацию о текущем состоянии VPN подключения." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" "Плагин «Conntrack» собирает статистику о количестве отслеживаемых соединений." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "Плагин «CPU» собирает статистику об использовании процессора." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -848,7 +1077,7 @@ msgstr "" "Плагин «CSV» позволяет сохранить статистику в формате CSV для последующей " "обработки." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -856,14 +1085,14 @@ msgstr "" "Плагин «DF» собирает статистику о доступном пространстве на различных " "устройствах, точках монтирования или файловых системах." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" "Плагин «Disk» собирает подробную статистику по выбранным разделам или дискам." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -871,7 +1100,7 @@ msgstr "" "Плагин «DNS» собирает подробную статистику о DNS трафике на выбранных " "интерфейсах." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -883,11 +1112,11 @@ msgstr "" "плагин предназначен для использования вместе с Mail::SpamAssasin::Plugin::" "Collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "Плагин «Энтропия» собирает статистику о доступной энтропии." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -895,13 +1124,17 @@ msgstr "" "Плагин «Exec» выполняет внешнюю команду в случае, когда определенные " "значения достигают заданного порога." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "Плагин «Интерфейсы» собирает статистику на выбранных сетевых интерфейсах." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -909,7 +1142,7 @@ msgstr "" "Плагин «Iptables» собирает статистику с определенных правил межсетевого " "экрана." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -917,31 +1150,31 @@ msgstr "" "Плагин «IRQ» собирает статистику по выбранным прерываниям. Если ни одно " "прерывание не выбрано, сбор статистики будет проводиться по всем прерываниям." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" "Плагин «Wi-Fi» собирает статистику о качестве и шуме беспроводного сигнала." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "Плагин «Загрузка системы» собирает статистику о загрузке системы." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" "Плагин «Оперативная память (RAM)» собирает статистику об использовании " "памяти." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" "Плагин «Netlink» собирает расширенную статистику с выбранных интерфейсах." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -953,7 +1186,7 @@ msgstr "" "клиента. В режиме клиента, локальная статистика передается collectd-серверу, " "в режиме сервера collectd собирает статистику с удаленных хостов." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -961,7 +1194,7 @@ msgstr "" "Плагин «Пинг-запрос» посылает ICMP-запросы выбранным хостам и измеряет время " "отклика." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -969,7 +1202,7 @@ msgstr "" "Плагин «Процессы» собирает информацию, такую как время CPU, ошибки страниц и " "использование памяти выбранных процессов." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -981,7 +1214,7 @@ msgstr "" "параметров может привезти к высокому потреблению памяти устройства. Это " "может привести к зависанию устройства!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -989,13 +1222,13 @@ msgstr "" "Плагин «Сенсоры» использует сенсоры Linux, чтобы собрать статистику " "состояния устройства." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "Плагин «Splash» использует libuci для сбора статистики работы splash." -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -1005,7 +1238,7 @@ msgstr "" "a> для сбора данных и <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> " "для представления их в виде графиков." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -1013,7 +1246,7 @@ msgstr "" "Плагин «TCPConns» собирает информацию об открытых TCP соединениях на " "выбранных портах." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -1023,7 +1256,7 @@ msgstr "" "считываются из /sys/class/thermal/*/temp ( '*' обозначает сенсор " "устройства , как-то thermal_zone1 )" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1031,28 +1264,28 @@ msgstr "" "Плагин «UnixSock» создает Unix-сокет, который может быть использован для " "получения статистики от работающего сервиса collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "Плагин «Uptime» собирает статистику о времени работы системы." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "Thermal" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "Настройка плагина «Thermal»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "Данный плагин собирает статистику о переключение контекста процессора." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "Этот плагин собирает статистику о частоте процессора масштабирования." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." @@ -1060,132 +1293,234 @@ msgstr "" "Строка задает интерфейсы, на которых collectd будет обрабатывать входящие " "соединения." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" "Строка задает сервера, на которые будет передаваться локальная статистика." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Пытаться определять полное имя хоста" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "ИБП" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Настройка плагина «UPS»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "Имя ИБП в формате NUT ups@host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Настройка плагина «UnixSock»" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Время работы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "Настройка плагина «Uptime»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "Использовать улучшенную схему наименования" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Используемый PID-файл" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Пользователь" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Расширенная статистика" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" "При включении, отображаются метрики для каждого состояния (system, user, " "idle)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "При включении, отображаются абсолютные значения" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "При включении, отображаются значения в процентах" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Wi-Fi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "Настройка плагина «Wi-Fi»" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "Вы можете установить плагины collectd-mod-* для включения дополнительной " "статистики." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "Настройка плагина «cUrl»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "напр. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" +msgstr "позволяет уменьшить размер RRD" + +#~ msgid "Action (target)" +#~ msgstr "Действие (цель)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "напр. br-lan" +#~ msgid "Add matching rule" +#~ msgstr "Добавить правило выборки" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "напр. reject-with tcp-reset" +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Добавить несколько хостов, разделённых пробелом" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "не более 16 символов" +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd — это сервис для сбора данных из разных источников при помощи " +#~ "плагинов. На этой странице вы можете изменить настройки collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "позволяет уменьшить размер RRD" +#~ msgid "Destination ip range" +#~ msgstr "Диапазон IP-адресов назначения" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "" +#~ "Удерживая нажатой клавишу Ctrl, выберите несколько элементов или отмените " +#~ "выбор записей." + +#~ msgid "Incoming interface" +#~ msgstr "Входящий интерфейс" + +#~ msgid "Monitor all sensors" +#~ msgstr "Мониторить все сенсоры" + +#~ msgid "Name of the rule" +#~ msgstr "Имя правила" + +#~ msgid "Network protocol" +#~ msgstr "Сетевой протокол" + +#~ msgid "Options" +#~ msgstr "Опции" + +#~ msgid "Outgoing interface" +#~ msgstr "Исходящий интерфейс" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "Процессы для мониторинга (разделённые пробелом)" + +#~ msgid "Source ip range" +#~ msgstr "Диапазон IP-адресов источника" + +#~ msgid "e.g. br-ff" +#~ msgstr "напр. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "напр. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "напр. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "не более 16 символов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "секунд; значения разделенные пробелом" +#~ msgid "seconds; multiple separated by space" +#~ msgstr "секунд; значения разделенные пробелом" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "Интерфейсы сервера" +#~ msgid "server interfaces" +#~ msgstr "Интерфейсы сервера" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 995f9de57..e0d19b9aa 100644 --- a/applications/luci-app-statistics/po/sk/statistics.po +++ b/applications/luci-app-statistics/po/sk/statistics.po @@ -12,829 +12,1062 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -842,54 +1075,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -897,19 +1134,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -917,192 +1154,227 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 -msgid "" -"You can install additional collectd-mod-* plugins to enable more statistics." -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 -msgid "cUrl" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 -msgid "cUrl Plugin Configuration" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: luasrc/view/admin_statistics/index.htm:15 +msgid "" +"You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 +msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 +msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "" diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index eb033f163..11fc86085 100644 --- a/applications/luci-app-statistics/po/sv/statistics.po +++ b/applications/luci-app-statistics/po/sv/statistics.po @@ -12,833 +12,1048 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.9.1-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Lägg till kommando för läsning av värden" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Lägg till en matchande regel" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "Lägg till flertalet värdar separerade av mellanslag." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Lägg till aviseringskommando" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Basmapp" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Standardövervakning" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV-utmatning" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Kedja" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Inställningar för Collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" msgstr "" -"Collectd är en liten demon för insamling av data från olika källor via olika " -"insticksprogam. På den här sidan så kan du ändra generella inställningar för " -"collectd-demonen." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Konfiguration av insticksprogrammet DF" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Konfiguration av insticksprogrammet DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Intervall för insamling av data" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Mapp för collectd's insticksprogram" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Mapp för under-konfigurationer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Disk" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Användning av diskutrymme" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Användning av disk" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "Visa värd »" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Visa tidsspann »" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Konfiguration av insticksprogrammet E-post" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "E-post" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Aktivera" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Aktivera det här insticksprogrammet" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "Entropi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Entropi" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Brandvägg" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "Vidarebefordring mellan lyssning och server-adressen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "Generall insticksprogram" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "Generera en separat graf för varje loggade användare" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Grafer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "Grupp" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" -"Håll ner Ctrl för att välja flera poster eller för att inte välja poster." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Värd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Värdnamn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Konfiguration av insticksprogrammet IRQ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Ignorera källadresser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Inkommande gränssnitt" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Konfiguration av insticksprogrammets gränssnitt" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Gränssnitt" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Avbrott" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "Intervaller för pingningar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Iptabels" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Värd för lyssning" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Lyssningsport" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Load" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Maximalt tillåtna anslutningar" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Minne" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Memory" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "Övervaka alla förutom specificerat" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Övervaka alla lokala lyssningsportar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "Övervaka alla sensorer" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Övervaka enheter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Övervaka hårddiskar och partitioner" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Övervaka filsystemtyper" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Övervaka värdar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "Övervaka gränssnitt" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Övervaka avbrott" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Övervaka lokala portar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Övervaka monteringspunkter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Övervaka processer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Övervaka fjärrportar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Namn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Regelns namn" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Nätlänk" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Nätverk" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Insticksprogram för nätverket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Nätverksprotokoll" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Antalet trådar för insamling av data" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "Statusfiler för OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Alternativ" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Utgående gränssnitt" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Insticksprogram för utmatning" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Processer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Processor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Övervakning av Qdisc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Rader per RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "Skript" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Sekunder" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "Sensorer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Värd-server" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Server-port" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "Installera" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "Socketfil" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "Socketgrupp" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "Tillstånd för socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "Anger vilken information som ska samlas in om länkar." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "Anger vilken information som ska samlas in om rutter." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "Anger vilken information som ska samlas in om den globala topologin." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "Statistik" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Lagringsmapp" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Lagringsmapp för csv-filerna" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Lagrade tidsspann" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "Belastning av systemet" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP-anslutningar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL för nätverkspaket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTL för ping-paket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Tabell" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -846,54 +1061,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -901,19 +1120,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -921,194 +1140,279 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Försök att kolla upp fullständigt kvalificerade värdnamn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "Konfiguration av insticksprogrammet UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "UPS-namnet i NUT ups@värd-format" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "Webbadress" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Konfiguration av insticksprogrammet UnixSock" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Upptid" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Upptid" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Använd PID-fil" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Användare" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Detaljerad övervakning" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Trådlöst" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" "Du kan installera ytterligare collectd-mod* insticksprogram för att aktivera " "mer statistik." -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "t.ex br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "t.ex br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "t.ex reject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "maxmialt 16 tecken" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "reducerar storlek på rrd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "sekunder; flertalet åtskillda med mellanrum" +#~ msgid "Add matching rule" +#~ msgstr "Lägg till en matchande regel" + +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "Lägg till flertalet värdar separerade av mellanslag." + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd är en liten demon för insamling av data från olika källor via " +#~ "olika insticksprogam. På den här sidan så kan du ändra generella " +#~ "inställningar för collectd-demonen." + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "" +#~ "Håll ner Ctrl för att välja flera poster eller för att inte välja poster." + +#~ msgid "Incoming interface" +#~ msgstr "Inkommande gränssnitt" + +#~ msgid "Monitor all sensors" +#~ msgstr "Övervaka alla sensorer" + +#~ msgid "Name of the rule" +#~ msgstr "Regelns namn" + +#~ msgid "Network protocol" +#~ msgstr "Nätverksprotokoll" + +#~ msgid "Options" +#~ msgstr "Alternativ" + +#~ msgid "Outgoing interface" +#~ msgstr "Utgående gränssnitt" + +#~ msgid "e.g. br-ff" +#~ msgstr "t.ex br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "t.ex br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "t.ex reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "maxmialt 16 tecken" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "sekunder; flertalet åtskillda med mellanrum" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "gränssnitt för servern" +#~ msgid "server interfaces" +#~ msgstr "gränssnitt för servern" diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index 466993ef6..8fa6abf9a 100644 --- a/applications/luci-app-statistics/po/templates/statistics.pot +++ b/applications/luci-app-statistics/po/templates/statistics.pot @@ -1,829 +1,1048 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -831,54 +1050,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -886,19 +1109,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -906,192 +1129,222 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" msgstr "" diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index 2578971e7..6b7868e93 100644 --- a/applications/luci-app-statistics/po/tr/statistics.po +++ b/applications/luci-app-statistics/po/tr/statistics.po @@ -12,829 +12,1034 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 -msgid "More details about frequency usage and transitions" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 -msgid "Name" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 +msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 +msgid "Name" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -842,54 +1047,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -897,19 +1106,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -917,192 +1126,217 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 -msgid "reduces rrd size" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 +msgid "reduces rrd size" msgstr "" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index b39a23277..826555676 100644 --- a/applications/luci-app-statistics/po/uk/statistics.po +++ b/applications/luci-app-statistics/po/uk/statistics.po @@ -15,829 +15,1062 @@ msgstr "" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 -msgid "Add command for reading values" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 +msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Ланцюжок" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Увімкнути" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Брандмауер" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "Вузол" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Назва (ім'я) вузла" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Інтерфейси" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "Пам'ять" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 -msgid "Monitor all except specified" +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 -msgid "Monitor all local listen ports" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 +msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 +msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "Ім'я" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Мережа" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 -msgid "Network plugins" +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Мережевий протокол" +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 +msgid "Network plugins" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Опції" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ехо-запит" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "Порт" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Процеси" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Таблиця" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -845,54 +1078,58 @@ msgid "" "be used in other ways as well." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -900,19 +1137,19 @@ msgid "" "instance, in server mode the local instance receives data from other hosts." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -920,192 +1157,233 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "Час безперервної роботи" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "Користувач" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Бездротові мережі" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 -msgid "" -"You can install additional collectd-mod-* plugins to enable more statistics." +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 -msgid "cUrl" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 -msgid "cUrl Plugin Configuration" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" +#: luasrc/view/admin_statistics/index.htm:15 +msgid "" +"You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 +msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 +msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "" +#~ msgid "Network protocol" +#~ msgstr "Мережевий протокол" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "" +#~ msgid "Options" +#~ msgstr "Опції" diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index 65c721ba8..7b1ab2ef5 100644 --- a/applications/luci-app-statistics/po/vi/statistics.po +++ b/applications/luci-app-statistics/po/vi/statistics.po @@ -16,304 +16,340 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "Action (target)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "Thêm lệnh cho giá trị đang đọc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "Thêm matching rule" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "Thêm lệnh thông báo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "Thư mục Cơ sở" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "Monitoring căn bản" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "Cấu hình Plugin CPU" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV Output" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "Cấu hình CSV plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "Cache collected data cho" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "Cache flush interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "Chain" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Những cài đặt collectd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd là một daemon nhỏ để thu thập dữ liệu từ nhiều nguồn thông qua các " -"plugins khác nhau. Trên trang này, bạn có thể thay đổi cài đặt tổng quát cho " -"cai collectd daemon. " -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "Cấu hình DF plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "Cấu hình DNS plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "Khoảng thu thập dữ liệu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "Tập tin định nghĩa cơ sở dữ liệu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "Điểm đến ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Danh mục cho collectd plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "Danh mục cho sub-configurations" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Cấu hình disk plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "Khoảng trống trên đĩa" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "Disk Usage" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "Display timespan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "Cấu hình e-mail plugin" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "Email" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "Kích hoạt" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "Kích hoạt plugin này" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Cấu hình Exec Plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Filter class monitoring" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "Firewall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "Flush cache sau khi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "chuyển tiếp giữa listen và địa chỉ server" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "Graphs" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -321,7 +357,7 @@ msgstr "" "Ở đây bạn có thể định nghĩa các lệnh bên ngoài mà sẽ khởi động bằng collectd " "để đọc những giá trị nhất định. Những giá trị sẽ được đọc từ stdout" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -331,7 +367,7 @@ msgstr "" "khi những giá trị threshold nhất định được tiếp cận. Những giá trị dẫn tới " "invocation sẽ được feed tới một chương trình gọi là stdin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -339,492 +375,658 @@ msgstr "" "Ở đây bạn có thể định nghĩa những tiêu chuẩn khác nhau để monitor iptables " "rules được chọn." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "Tên host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "Cấu hình IRQ Plugin " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "Lờ đi những địa chỉ nguồn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "Giao diện đang tới" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Cấu hình giao diện plugin" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Giao diện" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "Cắt ngang" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "cấu hình Iptables Plugin " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "Listen host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "Listen port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "Giao diện listener" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Tải cấu hình plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "Tối đã kết nối cho phép" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "Monitor tất cả local listen port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "Monitor devices" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "Kiểm soát đĩa và phân vùng" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "Kiểm soát loại filesystem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "Monitor hosts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "Monitor interrupts" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "Monitor cổng địa phương" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "Monitor mount points" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "Monitor processes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "Monitor remote ports" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "Tên của rule" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Cấu hình Netlink Plugin " -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Network" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Cấu hình network plugin" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Network plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Network protocol" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "Số lượng các chủ đề để thu thập dữ liệu" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "Chỉ tạo trung bình RRAs" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "Tùy chọn" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "Giao diện ra ngoài" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Output plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Cấu hình Ping plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "Quá trình xử lý" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "Cấu hình processes plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "Bộ xử lý" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Qdisc monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "Yếu tố RRD XFiles" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "RRD heart beat interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "RRD step interval" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "Cấu hình RRDTool Plugin " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "Rows per RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "Giây" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "Server host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "Server port" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "Shaping class monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 -msgid "Socket permissions" +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "Nguồn ip range" +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 +msgid "Socket permissions" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "Thư mục lưu trữ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "Thư mục lưu trữ cho nhưng tập tin csv" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "Những giá trị dữ liệu lưu trữ như một tỉ lệ thay vì giá trị tuyệt đối" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "Lưu timspans" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "System Load" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "Kết nối TCP" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "Cấu hình TCPConns Plugin " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "TTL cho gói mạng" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "TTl cho gói ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "Table" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "CPU plugin thu thập số liệu thống kê cơ bản về sử dụng bộ việc xử lý" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." @@ -832,7 +1034,7 @@ msgstr "" "CSV plugin stores thu thập dữ liệu trong tập tin định dạng csv để tiến hành " "xử lý bằng các chương trình bên ngoài." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." @@ -840,7 +1042,7 @@ msgstr "" "df plugin thu thập số liệu thông kế về khoảng trống trên đĩa trên những " "thiết bị khác, mount points hoặc những loại filesystem." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." @@ -848,7 +1050,7 @@ msgstr "" "Disk plugin thu thập số liệu thống kê chi tiết về cách sử dụng cho những " "phân vùng lựa chọn hoặc toàn bộ đĩa." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." @@ -856,7 +1058,7 @@ msgstr "" " dns plugin thu thập những thông kê chi tiết về dns liên quan đến lưu thông " "trên những giao diện được chọn. " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -868,11 +1070,11 @@ msgstr "" "Mail::SpamAssasin::Plugin::Collectd nhưng cũng có thể dùng trong những cách " "khác." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 msgid "" "The exec plugin starts external commands to read values from or to notify " "external processes when certain threshold values have been reached." @@ -881,14 +1083,18 @@ msgstr "" "những quá trình xử lý thông báo bên ngoài khi giá trị của một threshold nhất " "định được tiếp cận " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" "Giao diện plugin thu thập những thống kê lưu thông trên những giao diện được " "chọn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -896,7 +1102,7 @@ msgstr "" "iptables plugin sẽ monitor những cái firewall rules được chọn và thu thập " "thông tin về bytes xử lý và gói trên rule. " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -906,21 +1112,21 @@ msgstr "" "for each selected interrupt. If no interrupt is selected then all interrupts " "are monitored." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "Plugin tải thu thập thông kê về tổng quát system load" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." @@ -928,7 +1134,7 @@ msgstr "" "Netlink plugin thu thập những thông tin mở rộng như qdisc-, class- and " "filter-statistics cho những giao diện được chọn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -941,7 +1147,7 @@ msgstr "" "tới một collectd server instance, trong chế độ server, instance địa phương " "nhận dữ liệu từ những host khác." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." @@ -949,7 +1155,7 @@ msgstr "" "ping plugin sẽ gửi icmp echo trả lời tới những host được chọn và đo thời " "gian vận hành qua lại cho từng host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." @@ -957,7 +1163,7 @@ msgstr "" "Processes plugin thu thập thông tin như cpu time, page faults và memory " "usage của từng processes được chọn. " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -969,26 +1175,26 @@ msgstr "" "nhớ rất nhiều trong một thư mục tạm thời. Điều này có thể làm thiết bị không " "sử dụng được</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " "render diagram images." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." @@ -996,14 +1202,14 @@ msgstr "" "Tcpconns plugin thu thập thông tin về open tcp kết nối trên những cổng được " "chọn." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." @@ -1011,155 +1217,234 @@ msgstr "" "Unixsock plugin tạo một unix socket mà có thể dùng để đọc dữ liệu thu thập " "từ một collectd instance đang vận hành. " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "" "Section này định nghĩa trên giao diện collectd sẽ đợi những kết nối đang tới" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "Section này định nghĩa servers thu thập dữ liệu địa phương để gửi đi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "Thử tra cứu những tên host đủ điều kiện" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Cấu hình Unixsock Plugin " -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "Tập tin PID đã sử dụng" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "Verbose monitoring" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "Mạng không dây" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "e.g. br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "e.g. br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "e.g. reject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "max. 16 chars" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "Giảm rrd size" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "giây; nhiều phân tách bởi khoảng trống" +#~ msgid "Action (target)" +#~ msgstr "Action (target)" + +#~ msgid "Add matching rule" +#~ msgstr "Thêm matching rule" + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd là một daemon nhỏ để thu thập dữ liệu từ nhiều nguồn thông qua " +#~ "các plugins khác nhau. Trên trang này, bạn có thể thay đổi cài đặt tổng " +#~ "quát cho cai collectd daemon. " + +#~ msgid "Destination ip range" +#~ msgstr "Điểm đến ip range" + +#~ msgid "Incoming interface" +#~ msgstr "Giao diện đang tới" + +#~ msgid "Name of the rule" +#~ msgstr "Tên của rule" + +#~ msgid "Network protocol" +#~ msgstr "Network protocol" + +#~ msgid "Options" +#~ msgstr "Tùy chọn" + +#~ msgid "Outgoing interface" +#~ msgstr "Giao diện ra ngoài" + +#~ msgid "Source ip range" +#~ msgstr "Nguồn ip range" + +#~ msgid "e.g. br-ff" +#~ msgstr "e.g. br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "e.g. br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "e.g. reject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "max. 16 chars" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "giây; nhiều phân tách bởi khoảng trống" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "giao diện server" +#~ msgid "server interfaces" +#~ msgstr "giao diện server" diff --git a/applications/luci-app-statistics/po/zh_Hans/statistics.po b/applications/luci-app-statistics/po/zh_Hans/statistics.po index ba6ec513f..3c6ef8587 100644 --- a/applications/luci-app-statistics/po/zh_Hans/statistics.po +++ b/applications/luci-app-statistics/po/zh_Hans/statistics.po @@ -18,303 +18,340 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "APC 电源" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "APCUPS 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "绝对值" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "动作(目标)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "添加命令读取数据" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "新增匹配规则" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "使用空格分隔多个主机." - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "新增通知命令" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "地址簇" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "连接用户总数" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "基本目录" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "基本监控" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "设置此选项后,CPU 图表上不再统计系统上所有处理器的汇总值" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "CPU 上下文切换插件配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "CPU 频率" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "CPU 频率插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "CPU 插件配置" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV 输出" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "CSV 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "收集缓存数据" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "缓存清空间隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "链" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "收集链接" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "收集路由" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "收集拓扑" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Collectd 设置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd 是一个通过不同插件用于收集各种源数据的小型守护程序。在此页面中,您可" -"以更改 Collectd 守护进程常规设置。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack 插件配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "上下文切换" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "DF 插件配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "DNS 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "数据收集间隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "数据集定义文件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "目标 IP 区间" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Collectd 插件目录" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "子配置目录" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "磁盘插件配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "磁盘空间使用情况" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "磁盘使用情况" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "显示主机" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "显示时间段" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "E-Mail 插件配置" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "电子邮件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "留空 = 监控所有" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "启用" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "启用该插件" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "熵" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "熵插件配置" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Exec 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "额外项目" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Filter 类监测" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "防火墙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "清空缓存时间" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "转发监听服务器和应用服务器之间数据" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "收集压缩统计信息" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "通用插件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "为每个登录用户生成单独的图表" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "图表" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "组" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -322,7 +359,7 @@ msgstr "" "在这里,您可以定义外部命令,Collectd 将启动命令来获取某些值,将获取的值从标准" "输出端口输出。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -331,208 +368,348 @@ msgstr "" "在这里,您可以定义外部命令,当 Collectd 达到一定阈值时,将启动命令。阀值将会" "作为命令的标准输入。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "在这里,您可以定义各种监控 iptables 规则临界值。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "按住 Ctrl 键来选择或取消选择多个项目。" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "主机" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "主机名" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "获取 txtinfo 输出的 IP 地址或主机名" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "IRQ 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "忽略源地址" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "入站接口" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "接口插件配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "接口" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "中断" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "ping 间隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Iptables 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "自动保留对未选中接口的监控。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "监听主机" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "监听端口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "监听接口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "负载插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "在不使用“仅平均 RRA”的情况下,可以使用一段时间的最大值而不是平均值" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "最大允许连接数" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "内存" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "内存插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "监测所有(特别注明除外)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "监测所有本地监听端口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "监控所有传感器" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "监控设备/温感区域" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "监测设备" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "监测磁盘和分区" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "监测文件系统类型" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "监测主机" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "监测主机" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "监测接口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "监测中断" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "监测本地端口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "监测挂载点" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "监测进程" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "监测远程端口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "有关频率使用和切换的更多详细信息" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "名称" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "规则名" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Netlink 插件配置" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "网络" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "网络插件配置" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Network 插件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Network 协议" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -540,315 +717,341 @@ msgstr "" "注意:由于页面是以 'nobody' 身份生成的,因此 *.rrd 文件以及包含此文件的所有父" "目录必须全局可读。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "收集程序使用线程数" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "OLSRd 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "仅创建平均 RRAs" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "OpenVPN 状态文件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "选项" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "出站接口" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Output 插件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "百分比" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Ping 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "端口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "apcupsd 通信端口" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "进程" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "进程插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "监控的进程,用空格隔开" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "处理器" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Qdisc 监测" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "RRD XFiles 因子" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "RRD 心跳间隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "RRD 区间间隙" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "RRDTool 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "按每个 CPU 统计" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "按使用状态统计" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "按百分比统计" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "行/RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "脚本" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "传感器列表" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "传感器" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "传感器插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "服务器主机" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "服务器端口" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "设置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "整形类监控" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "显示最大值而不是平均值" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "套接字文件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "套接字组" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "套接字权限" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "源 IP 区间" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "收集指定链接相关信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "收集指定路由相关信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "收集指定拓扑相关信息。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "Splash Leases" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "Splash Leases 插件配置" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "统计" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "存储目录" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "csv 存储目录" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "存储数据值变化量而不是绝对值" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "存储时间跨度" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "系统负载" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP 连接数" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "TCPConns 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "网络包 TTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "ping 包 TTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "表" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "APCUPS 插件收集 APC UPS 的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "NUT 插件读取 UPS 信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "OLSRd 插件通过 txtinfo 获取 meshed 网络信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "OpenVPN 插件可以获取 VPN 连接当前状态。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "conntrack 插件获取连接数信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "cpu 插件获取处理器相关信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "csv 插件用于存储数据,以方便其他程序处理数据。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "df 插件收集磁盘空间使用情况、挂载点及文件系统相关信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "磁盘插件收集磁盘分区使用情况及相关信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "dns 插件收集 dns 数据流相关信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -859,29 +1062,33 @@ msgstr "" "统。这个插件主要目的是结合使用 Mail::SpamAssasin::Pulgin::Collectd,但可以用" "在其他方面。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "熵插件收集可用熵的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 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 插件用于当某些监控值已到达阈值时,启动外部命令读值或通知外部程序。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "接口插件用于收集选定接口的流量统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "iptables 插件将监测选定防火墙规则和收集关于每个规则处理的数据包信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -889,27 +1096,27 @@ msgstr "" "irq 插件用于监控选定中断的每秒钟产生的中断数。如果没有中断被选中,则表示对所" "有中断进行监测。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "iwinfo 插件收集无线信号强度、噪声和质量的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "负载插件收集系统负载的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "内存插件收集关于内存使用情况的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "netlink 插件为选定接口收集如 qdisc、class 和 filter 的数据。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -920,19 +1127,19 @@ msgstr "" "务器两个模式。在客户端模式下收集本地信息,然后转移到一个 Collectd 服务器实例" "中,在服务器模式将从其他主机收集信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "ping 插件将发送 icmp echo replies 到选定主机来测量每台主机的响应时间。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "进程插件收集选定进程的 cpu 时间、页面错误和内存使用信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -943,19 +1150,19 @@ msgstr "" "><strong>警告:错误的参数设置,将导致非常高的临时内存消耗。这可能会使设备无法" "使用!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "传感器插件使用 Linux Sensors 框架来收集环境统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "splash leases 插件使用 libuci 来收集 splash leases 的统计信息。" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -965,13 +1172,13 @@ msgstr "" "据,并用 <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> 生成统计图" "表。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "tcpconns 插件收集选定端口的 TCP 连接信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -980,160 +1187,250 @@ msgstr "" "温感插件将会监控系统温度。数据主要取自 /sys/class/thermal/*/temp ('*' 表示温" "感设备的名字,比如 thermal_zone1) 。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "unixsock 插件创建一个 unix 套接字可用于读取 Collectd 实例的收集信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "运行时间插件收集系统启动时间的统计信息。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "温感" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "温感插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "此插件收集处理器上下文切换的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "此插件收集处理器频率调整的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "定义 Collectd 将等待传入连接的接口。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "定义本地收集数据被发送到哪台 Collected 服务器。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "尝试解析主机全域名" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "UPS 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "UPS 名使用 NUT(Network UPS Tools)格式:ups@host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Unixsock 插件配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "运行时间" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "运行时间插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "使用更高级的命名规则" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "正在使用的 PID 文件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "用户" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "详细监测" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "当选中时,报告每个状态指标(系统,用户,空闲)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "当选中时,按绝对值统计" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "当选中时,按百分比统计" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "无线" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "无线 iwinfo 插件配置" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "您可以安装更多的 collectd-mod-* 插件以获得更多的统计数据。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "cUrl 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "例如:br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "例如:br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "例如:eject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "最长 16 个字符" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "减少 rrd 大小" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "秒数;多个使用空格分隔" +#~ msgid "Action (target)" +#~ msgstr "动作(目标)" + +#~ msgid "Add matching rule" +#~ msgstr "新增匹配规则" + +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "使用空格分隔多个主机." + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd 是一个通过不同插件用于收集各种源数据的小型守护程序。在此页面中," +#~ "您可以更改 Collectd 守护进程常规设置。" + +#~ msgid "Destination ip range" +#~ msgstr "目标 IP 区间" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "按住 Ctrl 键来选择或取消选择多个项目。" + +#~ msgid "Incoming interface" +#~ msgstr "入站接口" + +#~ msgid "Monitor all sensors" +#~ msgstr "监控所有传感器" + +#~ msgid "Name of the rule" +#~ msgstr "规则名" + +#~ msgid "Network protocol" +#~ msgstr "Network 协议" + +#~ msgid "Options" +#~ msgstr "选项" + +#~ msgid "Outgoing interface" +#~ msgstr "出站接口" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "监控的进程,用空格隔开" + +#~ msgid "Source ip range" +#~ msgstr "源 IP 区间" + +#~ msgid "e.g. br-ff" +#~ msgstr "例如:br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "例如:br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "例如:eject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "最长 16 个字符" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "秒数;多个使用空格分隔" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "服务器接口" +#~ msgid "server interfaces" +#~ msgstr "服务器接口" diff --git a/applications/luci-app-statistics/po/zh_Hant/statistics.po b/applications/luci-app-statistics/po/zh_Hant/statistics.po index e7b8162fb..072f71161 100644 --- a/applications/luci-app-statistics/po/zh_Hant/statistics.po +++ b/applications/luci-app-statistics/po/zh_Hant/statistics.po @@ -17,303 +17,340 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2 +#: luasrc/statistics/rrdtool/definitions/apcups.lua:7 +#: root/usr/share/luci/statistics/plugins/apcups.json:2 msgid "APC UPS" msgstr "APC UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:5 msgid "APCUPS Plugin Configuration" msgstr "APCUPS 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:14 msgid "Absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 -msgid "Action (target)" -msgstr "動作(目標)" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv4 rule selector" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:68 +msgid "Add IPv6 rule selector" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:16 msgid "Add command for reading values" msgstr "新增指令讀取資料" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 -msgid "Add matching rule" -msgstr "新增匹配規則" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 -msgid "Add multiple hosts separated by space." -msgstr "使用空格分隔多個主機" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:38 msgid "Add notification command" msgstr "新增通知指令" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:19 msgid "Address family" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:20 msgid "Aggregate number of connected users" msgstr "連線使用者總數" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:50 +msgid "Awaiting email input at %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:53 msgid "Base Directory" msgstr "基本目錄" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:15 msgid "Basic monitoring" msgstr "基本監控" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:25 +msgid "Basic process monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:15 msgid "By setting this, CPU is not aggregate of all processors on the system" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:5 msgid "CPU Context Switches Plugin Configuration" msgstr "CPU Context Switches 外掛配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2 +#: luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 +#: root/usr/share/luci/statistics/plugins/cpufreq.json:2 msgid "CPU Frequency" msgstr "CPU 頻率" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:5 msgid "CPU Frequency Plugin Configuration" msgstr "CPU 頻率外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:5 msgid "CPU Plugin Configuration" msgstr "CPU 外掛配置" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:31 +msgid "CPU monitoring is enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/csv.json:2 msgid "CSV Output" msgstr "CSV 輸出" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:5 msgid "CSV Plugin Configuration" msgstr "CSV 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:73 msgid "Cache collected data for" msgstr "收集快取資料" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:25 msgid "Cache flush interval" msgstr "快取清空間隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:100 msgid "Chain" msgstr "鏈" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 +msgid "Change the ownership of the socket file to the specified group." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:23 msgid "CollectLinks" msgstr "收集連結" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:30 msgid "CollectRoutes" msgstr "收集路由" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:37 msgid "CollectTopology" msgstr "收集拓撲" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 +#: htdocs/luci-static/resources/view/statistics/collectd.js:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:43 msgid "Collectd Settings" msgstr "Collectd 設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:10 -msgid "" -"Collectd is a small daemon for collecting data from various sources through " -"different plugins. On this page you can change general settings for the " -"collectd daemon." +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:61 +msgid "Command monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:139 +msgid "Comment / Rule Number" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:149 +msgid "Configure…" msgstr "" -"Collectd 是一個通過不同外掛用於收集各種源資料的小型守護程式。在此頁面中,您可" -"以更改 Collectd 守護程序常規設定。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2 +#: luasrc/statistics/rrdtool/definitions/conntrack.lua:7 +#: root/usr/share/luci/statistics/plugins/conntrack.json:2 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack 外掛配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:9 +msgid "Conntrack monitoring enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 +#: root/usr/share/luci/statistics/plugins/contextswitch.json:2 msgid "Context Switches" msgstr "上下文切換" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:9 +msgid "Context switch monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:6 msgid "DF Plugin Configuration" msgstr "DF 外掛配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2 +#: luasrc/statistics/rrdtool/definitions/dns.lua:7 +#: root/usr/share/luci/statistics/plugins/dns.json:2 msgid "DNS" msgstr "DNS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:6 msgid "DNS Plugin Configuration" msgstr "DNS 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 msgid "Data collection interval" msgstr "資料收集間隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40 +#: htdocs/luci-static/resources/view/statistics/collectd.js:65 msgid "Datasets definition file" msgstr "資料集定義檔案" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 -msgid "Destination ip range" -msgstr "目標 IP 區間" +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:23 +msgid "Detailled CPU frequency monitoring enabled" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32 +#: htdocs/luci-static/resources/view/statistics/collectd.js:59 msgid "Directory for collectd plugins" msgstr "Collectd 外掛目錄" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28 +#: htdocs/luci-static/resources/view/statistics/collectd.js:56 msgid "Directory for sub-configurations" msgstr "子配置目錄" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:6 msgid "Disk Plugin Configuration" msgstr "Disk 外掛配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2 +#: luasrc/statistics/rrdtool/definitions/df.lua:7 +#: root/usr/share/luci/statistics/plugins/df.json:2 msgid "Disk Space Usage" msgstr "磁碟空間使用情況" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2 +#: luasrc/statistics/rrdtool/definitions/disk.lua:7 +#: root/usr/share/luci/statistics/plugins/disk.json:2 msgid "Disk Usage" msgstr "磁碟使用情況" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 +#: luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" msgstr "顯示主機" -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 +#: luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" msgstr "顯示時間段" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:6 msgid "E-Mail Plugin Configuration" msgstr "E-Mail 外掛配置" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2 +#: root/usr/share/luci/statistics/plugins/email.json:2 msgid "Email" msgstr "電子郵件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Empty value = monitor all" msgstr "留空 = 監控所有" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:21 msgid "Enable" msgstr "啟用" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:10 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:13 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:11 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:12 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:12 msgid "Enable this plugin" msgstr "啟用該外掛" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2 +#: htdocs/luci-static/resources/view/statistics/collectd.js:107 +msgid "Enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/entropy.lua:7 +#: root/usr/share/luci/statistics/plugins/entropy.json:2 msgid "Entropy" msgstr "熵" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:5 msgid "Entropy Plugin Configuration" msgstr "熵值外掛配置" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:9 +msgid "Entropy monitoring enabled" +msgstr "" + +#: root/usr/share/luci/statistics/plugins/exec.json:2 msgid "Exec" msgstr "Exec" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:6 msgid "Exec Plugin Configuration" msgstr "Exec 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:35 +msgid "Expecting permssions in octal notation" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:58 +msgid "Expecting valid time range" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:14 msgid "Extra items" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:14 +msgid "Fetch pages" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:35 msgid "Filter class monitoring" msgstr "Filter 類監測" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2 +#: luasrc/statistics/rrdtool/definitions/iptables.lua:7 +#: root/usr/share/luci/statistics/plugins/iptables.json:2 msgid "Firewall" msgstr "防火牆" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:80 msgid "Flush cache after" msgstr "清空快取後" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:20 msgid "Forwarding between listen and server addresses" msgstr "轉發監聽伺服器和應用伺服器之間資料" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:25 msgid "Gather compression statistics" msgstr "收集壓縮統計資訊" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 +#: htdocs/luci-static/resources/view/statistics/collectd.js:80 msgid "General plugins" msgstr "通用外掛" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:15 msgid "Generate a separate graph for each logged user" msgstr "為每個記錄的使用者生成一個單獨的圖表" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74 +#: luasrc/controller/luci_statistics/luci_statistics.lua:20 msgid "Graphs" msgstr "圖表" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:54 msgid "Group" msgstr "組" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:17 msgid "" "Here you can define external commands which will be started by collectd in " "order to read certain values. The values will be read from stdout." @@ -321,7 +358,7 @@ msgstr "" "在這裡,您可以定義外部指令,Collectd 將啟動指令來獲取某些值,將獲取的值從標準" "輸出埠輸出。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:52 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:39 msgid "" "Here you can define external commands which will be started by collectd when " "certain threshold values have been reached. The values leading to invocation " @@ -330,208 +367,348 @@ msgstr "" "在這裡,您可以定義外部指令,當 Collectd 達到一定閾值時,將啟動指令。閥值將會" "作為指令的標準輸入。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:21 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "在這裡,您可以定義各種監控 iptables 規則臨界值。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 -msgid "Hold Ctrl to select multiple items or to deselect entries." -msgstr "按住 Ctrl 鍵來選擇或取消選擇多個專案。" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:14 msgid "Host" msgstr "主機" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 +#: htdocs/luci-static/resources/view/statistics/collectd.js:45 msgid "Hostname" msgstr "主機名" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:15 msgid "IP or hostname where to get the txtinfo output from" msgstr "獲取 txtinfo 輸出的 IP 位址或主機名" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:6 msgid "IRQ Plugin Configuration" msgstr "IRQ 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:21 msgid "Ignore source addresses" msgstr "忽略源位址" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "Incoming interface" -msgstr "入介面" +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:70 +msgid "Instance name" +msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:6 msgid "Interface Plugin Configuration" msgstr "Interface 外掛配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2 +#: luasrc/statistics/rrdtool/definitions/interface.lua:7 +#: root/usr/share/luci/statistics/plugins/interface.json:2 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2 +#: luasrc/statistics/rrdtool/definitions/irq.lua:7 +#: root/usr/share/luci/statistics/plugins/irq.json:2 msgid "Interrupts" msgstr "中斷" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 msgid "Interval for pings" msgstr "ping 間隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:7 msgid "Iptables Plugin Configuration" msgstr "Iptables 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Leave unselected to automatically determine interfaces to monitor." msgstr "自動保留對未選中介面的監控。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:41 msgid "Listen host" msgstr "監聽主機" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:45 msgid "Listen port" msgstr "監聽埠" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:33 msgid "Listener interfaces" msgstr "監聽介面" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:5 msgid "Load Plugin Configuration" msgstr "Load 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:9 +msgid "Load monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv4 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:20 +msgid "Match IPv6 iptables rules" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:41 msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "在不使用“僅平均 RRA”的情況下,可以使用一段時間的最大值而不是平均值" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:40 msgid "Maximum allowed connections" msgstr "最大允許連線數" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2 +#: luasrc/statistics/rrdtool/definitions/memory.lua:7 +#: root/usr/share/luci/statistics/plugins/memory.json:2 msgid "Memory" msgstr "記憶體" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:5 msgid "Memory Plugin Configuration" msgstr "記憶體外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:28 +msgid "Memory monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:89 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:33 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:43 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:40 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:47 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:34 msgid "Monitor all except specified" msgstr "監測所有(除特別註明外)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:14 msgid "Monitor all local listen ports" msgstr "監測所有本地監聽埠" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 -msgid "Monitor all sensors" -msgstr "監控所有感測器" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:15 msgid "Monitor device(s) / thermal zone(s)" msgstr "監控裝置/溫感區域" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:15 msgid "Monitor devices" msgstr "監測裝置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:15 msgid "Monitor disks and partitions" msgstr "監測磁碟和分割槽" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:59 msgid "Monitor filesystem types" msgstr "監測檔案系統型別" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:14 msgid "Monitor host" msgstr "監測主機" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:14 msgid "Monitor hosts" msgstr "監測主機" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:15 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:15 msgid "Monitor interfaces" msgstr "監測介面" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:15 msgid "Monitor interrupts" msgstr "監測中斷" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:18 msgid "Monitor local ports" msgstr "監測本地埠" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:37 msgid "Monitor mount points" msgstr "監測掛載點" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:14 msgid "Monitor processes" msgstr "監測程序" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:22 msgid "Monitor remote ports" msgstr "監測遠端埠" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:34 +msgid "Monitoring %s and %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:29 +msgid "Monitoring APC UPS at host %s, port %d" +msgid_plural "Monitoring APC UPS at hosts %s, port %d" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:31 +msgid "Monitoring DNS queries on all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:33 +msgid "Monitoring DNS queries on one interface" +msgid_plural "Monitoring DNS queries on %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:46 +msgid "Monitoring OLSRd status at %s:%d" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:45 +msgid "Monitoring all but one disk" +msgid_plural "Monitoring all but %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:32 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:37 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:54 +msgid "Monitoring all but one interface" +msgid_plural "Monitoring all but %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:56 +msgid "Monitoring all but one interrupt" +msgid_plural "Monitoring all but %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:58 +msgid "Monitoring all but one sensor" +msgid_plural "Monitoring all but %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:43 +msgid "Monitoring all disks" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:104 +msgid "Monitoring all except %s, %s, %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:30 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:52 +msgid "Monitoring all interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:54 +msgid "Monitoring all interrupts" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:102 +msgid "Monitoring all partitions" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:62 +msgid "Monitoring all sensors" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:50 +msgid "Monitoring all thermal zones" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:46 +msgid "Monitoring all thermal zones except %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:32 +msgid "Monitoring local listen ports" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:51 +msgid "Monitoring one OpenVPN instance" +msgid_plural "Monitoring %d OpenVPN instancees" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:22 +msgid "Monitoring one UPS" +msgid_plural "Monitoring %d UPSes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:47 +msgid "Monitoring one disk" +msgid_plural "Monitoring %d disks" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:41 +msgid "Monitoring one host" +msgid_plural "Monitoring %d hosts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:34 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:39 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:56 +msgid "Monitoring one interface" +msgid_plural "Monitoring %d interfaces" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:58 +msgid "Monitoring one interrupt" +msgid_plural "Monitoring %d interrupts" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:23 +msgid "Monitoring one process" +msgid_plural "Monitoring %d processes" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:60 +msgid "Monitoring one sensor" +msgid_plural "Monitoring %d sensors" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:9 +msgid "Monitoring spash leases" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:47 +msgid "Monitoring thermal zones %s" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:15 msgid "More details about frequency usage and transitions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:24 msgid "Name" msgstr "名稱" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "Name of the rule" -msgstr "規則名" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2 +#: luasrc/statistics/rrdtool/definitions/netlink.lua:7 +#: root/usr/share/luci/statistics/plugins/netlink.json:2 msgid "Netlink" msgstr "Netlink" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:6 msgid "Netlink Plugin Configuration" msgstr "Netlink 外掛配置" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2 +#: root/usr/share/luci/statistics/plugins/network.json:2 msgid "Network" msgstr "Network" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:5 msgid "Network Plugin Configuration" msgstr "Network 外掛配置" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:70 +msgid "Network communication enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/collectd.js:81 msgid "Network plugins" msgstr "Network 外掛" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 -msgid "Network protocol" -msgstr "Network 協議" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:15 msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." @@ -539,315 +716,341 @@ msgstr "" "注意:由於頁面是以 'nobody' 身份生成的,因此 *.rrd 檔案以及包含此檔案的所有父" "目錄必須全域性可讀。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 +#: htdocs/luci-static/resources/view/statistics/collectd.js:71 msgid "Number of threads for data collection" msgstr "收集程式使用執行緒數" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2 +#: luasrc/statistics/rrdtool/definitions/olsrd.lua:7 +#: root/usr/share/luci/statistics/plugins/olsrd.json:2 msgid "OLSRd" msgstr "OLSRd" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:5 msgid "OLSRd Plugin Configuration" msgstr "OLSRd 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:35 msgid "Only create average RRAs" msgstr "僅建立平均 RRAs" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2 +#: luasrc/statistics/rrdtool/definitions/openvpn.lua:7 +#: root/usr/share/luci/statistics/plugins/openvpn.json:2 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:6 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:35 msgid "OpenVPN status files" msgstr "OpenVPN 狀態檔案" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "Options" -msgstr "選項" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "Outgoing interface" -msgstr "出介面" - -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:82 msgid "Output plugins" msgstr "Output 外掛" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:20 msgid "Percent values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2 +#: luasrc/statistics/rrdtool/definitions/ping.lua:7 +#: root/usr/share/luci/statistics/plugins/ping.json:2 msgid "Ping" msgstr "Ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:5 msgid "Ping Plugin Configuration" msgstr "Ping 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18 +#: htdocs/luci-static/resources/view/statistics/collectd.js:120 +msgid "Plugin is disabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:19 msgid "Port" msgstr "埠" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:19 msgid "Port for apcupsd communication" msgstr "apcupsd 通訊埠" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2 +#: luasrc/statistics/rrdtool/definitions/processes.lua:7 +#: root/usr/share/luci/statistics/plugins/processes.json:2 msgid "Processes" msgstr "程序" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:5 msgid "Processes Plugin Configuration" msgstr "程序外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 -msgid "Processes to monitor separated by space" -msgstr "過程監控,用空格隔開" - -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2 +#: luasrc/statistics/rrdtool/definitions/cpu.lua:10 +#: root/usr/share/luci/statistics/plugins/cpu.json:2 msgid "Processor" msgstr "處理器" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:25 msgid "Qdisc monitoring" msgstr "Qdisc 監測" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:67 msgid "RRD XFiles Factor" msgstr "RRD XFiles 因子" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:28 msgid "RRD heart beat interval" msgstr "RRD 心跳間隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:21 msgid "RRD step interval" msgstr "RRD 區間間隙" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2 +#: root/usr/share/luci/statistics/plugins/rrdtool.json:2 msgid "RRDTool" msgstr "RRDTool" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:5 msgid "RRDTool Plugin Configuration" msgstr "RRDTool 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:17 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:14 msgid "Report by CPU" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:19 msgid "Report by state" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:31 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:24 msgid "Report in percent" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:61 msgid "Rows per RRA" msgstr "行/RRA" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:164 +msgid "Rule monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:24 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:46 msgid "Script" msgstr "指令碼" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:38 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 +#: htdocs/luci-static/resources/view/statistics/collectd.js:68 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:26 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:31 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:22 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:29 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:74 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:81 msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:23 msgid "Sensor list" msgstr "感測器列表" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2 +#: luasrc/statistics/rrdtool/definitions/sensors.lua:7 +#: root/usr/share/luci/statistics/plugins/sensors.json:2 msgid "Sensors" msgstr "感測器" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:14 msgid "Sensors Plugin Configuration" msgstr "Sensors 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:59 msgid "Server host" msgstr "伺服器主機" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:51 +msgid "Server interfaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:63 msgid "Server port" msgstr "伺服器埠" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: luasrc/controller/luci_statistics/luci_statistics.lua:17 msgid "Setup" msgstr "設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:30 msgid "Shaping class monitoring" msgstr "整形類監控" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:40 msgid "Show max values instead of averages" msgstr "顯示最大值而不是平均值" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:24 +msgid "Simple CPU frequency monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:34 +msgid "Socket %s active" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:15 msgid "Socket file" msgstr "套接字檔案" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:19 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:19 msgid "Socket group" msgstr "套接字組" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:15 +msgid "Socket path" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:25 msgid "Socket permissions" msgstr "套接字許可權" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 -msgid "Source ip range" -msgstr "源 IP 區間" - -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:24 msgid "Specifies what information to collect about links." msgstr "收集指定連結相關資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:31 msgid "Specifies what information to collect about routes." msgstr "收集指定路由相關資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:38 msgid "Specifies what information to collect about the global topology." msgstr "收集指定拓撲相關資訊。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2 +#: luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 +#: root/usr/share/luci/statistics/plugins/splash_leases.json:2 msgid "Splash Leases" msgstr "Splash Leases" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/splash_leases.js:5 msgid "Splash Leases Plugin Configuration" msgstr "Splash Leases 外掛配置" -#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 -#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9 +#: luasrc/controller/luci_statistics/luci_statistics.lua:14 +#: luasrc/view/admin_statistics/index.htm:9 +#: luasrc/view/public_statistics/graph.htm:9 msgid "Statistics" msgstr "統計" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23 +#: htdocs/luci-static/resources/view/statistics/collectd.js:111 +msgid "Status" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:14 msgid "Storage directory" msgstr "儲存目錄" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:14 msgid "Storage directory for the csv files" msgstr "csv 儲存目錄" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:18 msgid "Store data values as rates instead of absolute values" msgstr "儲存資料值變化量而不是絕對值" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:46 msgid "Stored timespans" msgstr "儲存時間跨度" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:25 +msgid "Storing CSV data in %s" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/load.lua:7 +#: root/usr/share/luci/statistics/plugins/load.json:2 msgid "System Load" msgstr "系統載入" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2 +#: luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 +#: root/usr/share/luci/statistics/plugins/tcpconns.json:2 msgid "TCP Connections" msgstr "TCP 連線數" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:5 msgid "TCPConns Plugin Configuration" msgstr "TCPConns 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:14 msgid "TTL for network packets" msgstr "網路包 TTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:32 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:26 msgid "TTL for ping packets" msgstr "ping 包 TTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:85 msgid "Table" msgstr "表" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/apcups.js:6 msgid "The APCUPS plugin collects statistics about the APC UPS." msgstr "APCUPS 外掛收集 APC UPS 的統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:6 msgid "The NUT plugin reads information about Uninterruptible Power Supplies." msgstr "NUT 外掛讀取 UPS 資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/olsrd.js:6 msgid "" "The OLSRd plugin reads information about meshed networks from the txtinfo " "plugin of OLSRd." msgstr "OLSRd 外掛通過 txtinfo 獲取 meshed 網路資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:7 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "OpenVPN 外掛可以獲取 VPN 連線當前狀態" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:134 +msgid "The chain name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:156 +msgid "The comment to match must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/conntrack.js:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." msgstr "conntrack 外掛獲取連線數資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:6 msgid "The cpu plugin collects basic statistics about the processor usage." msgstr "cpu 外掛獲取處理器相關資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/csv.js:6 msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." msgstr "csv外掛用於儲存資料,以方便其他程式處理資料。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:7 msgid "" "The df plugin collects statistics about the disk space usage on different " "devices, mount points or filesystem types." msgstr "df 外掛收集磁碟空間使用情況、掛載點及檔案系統相關資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:7 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." msgstr "disk 外掛收集磁碟分割槽使用情況及相關資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:7 msgid "" "The dns plugin collects detailed statistics about dns related traffic on " "selected interfaces." msgstr "dns 外掛收集 dns 資料流相關資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/email.js:7 msgid "" "The email plugin creates a unix socket which can be used to transmit email-" "statistics to a running collectd daemon. This plugin is primarily intended " @@ -858,29 +1061,33 @@ msgstr "" "統。這個外掛主要目的是結合使用 Mail::SpamAssasin::Pulgin::Collectd,但可以用" "在其他方面。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/entropy.js:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "entropy 外掛收集可用熵的統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:7 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 外掛用於當某些監控值已到達閾值時,啟動外部指令讀值或通知外部程式。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:10 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:80 +msgid "The instance name must not contain spaces" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/interface.js:7 msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Interface 外掛用於收集選定介面的資料包的統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: htdocs/luci-static/resources/view/statistics/plugins/iptables.js:8 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "iptables 外掛將監測選定防火牆規則和收集關於每個規則處理的資料包資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/irq.js:7 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." @@ -888,27 +1095,27 @@ msgstr "" "irq 外掛用於監控選定中斷的每秒鐘產生的中斷數。如果沒有中斷被選中,則表示對所" "有中斷進行監測。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:7 msgid "" "The iwinfo plugin collects statistics about wireless signal strength, noise " "and quality." msgstr "iwinfo 外掛收集無線訊號強度、噪聲和質量的統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/load.js:6 msgid "The load plugin collects statistics about the general system load." msgstr "load 外掛收集常規系統載入統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "memory 外掛收集關於記憶體使用情況的統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:7 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." msgstr "netlink 外掛收集為選定介面 qdisc-、class- 和 filter- 的擴充套件資料。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:6 msgid "" "The network plugin provides network based communication between different " "collectd instances. Collectd can operate both in client and server mode. In " @@ -919,19 +1126,19 @@ msgstr "" "務器兩個模式。在客戶端模式下收集本地資訊,然後轉移到一個 Collectd 伺服器例項" "中,在伺服器模式將從其他主機收集資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/ping.js:6 msgid "" "The ping plugin will send icmp echo replies to selected hosts and measure " "the roundtrip time for each host." msgstr "ping 外掛將傳送 icmp echo replies 到選定主機來測量每臺主機的響應時間。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/processes.js:6 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." msgstr "processes 外掛收集選定程序的 cpu 時間、頁面錯誤和記憶體使用資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:6 msgid "" "The rrdtool plugin stores the collected data in rrd database files, the " "foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong " @@ -942,19 +1149,19 @@ msgstr "" "><strong>警告:錯誤的引數設定,將導致非常高的臨時記憶體消耗。這可能會使裝置無" "法使用!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/sensors.js:15 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." msgstr "sensors 外掛使用 Linux Sensors 框架來收集環境統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 +#: 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 "splash leases 外掛使用 libuci 來收集 splash leases 的統計資訊。" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11 +#: luasrc/view/admin_statistics/index.htm:11 msgid "" "The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> " "to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to " @@ -964,13 +1171,13 @@ msgstr "" "據,並用 <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> 生成統計圖" "表。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:6 msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." msgstr "tcpconns 外掛收集選定埠 TCP 連線資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:7 msgid "" "The thermal plugin will monitor temperature of the system. Data is typically " "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " @@ -979,160 +1186,250 @@ msgstr "" "thermal 外掛將會監控系統溫度。資料主要取自 /sys/class/thermal/*/temp ('*' 表" "示溫感裝置的名字,比如 thermal_zone1) 。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:7 msgid "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." msgstr "unixsock 外掛建立一個 unix 套接字可用於讀取 Collectd 例項的收集資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "uptime 外掛收集系統啟動時間的統計資訊。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2 +#: luasrc/statistics/rrdtool/definitions/thermal.lua:6 +#: root/usr/share/luci/statistics/plugins/thermal.json:2 msgid "Thermal" msgstr "溫感" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/thermal.js:6 msgid "Thermal Plugin Configuration" msgstr "溫感外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/contextswitch.js:6 msgid "This plugin collects statistics about the processor context switches." msgstr "此外掛收集處理器上下文切換的統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/cpufreq.js:6 msgid "This plugin collects statistics about the processor frequency scaling." msgstr "此外掛收集處理器頻率調整的統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:26 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:34 msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." msgstr "定義 Collectd 將監聽哪個介面來傳入連線收集資料。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:47 +#: htdocs/luci-static/resources/view/statistics/plugins/network.js:52 msgid "" "This section defines to which servers the locally collected data is sent to." msgstr "定義本地收集資料被髮送到哪臺 Collected 伺服器。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54 +#: htdocs/luci-static/resources/view/statistics/collectd.js:74 msgid "Try to lookup fully qualified hostname" msgstr "嘗試解析主機全域名" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 +#: luasrc/statistics/rrdtool/definitions/nut.lua:6 +#: root/usr/share/luci/statistics/plugins/nut.json:2 msgid "UPS" msgstr "UPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:5 msgid "UPS Plugin Configuration" msgstr "UPS 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: htdocs/luci-static/resources/view/statistics/plugins/nut.js:14 msgid "UPS name in NUT ups@host format" msgstr "UPS 名使用 NUT(Network UPS Tools)格式:ups@host" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:26 msgid "URL" msgstr "URL" -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2 +#: root/usr/share/luci/statistics/plugins/unixsock.json:2 msgid "UnixSock" msgstr "UnixSock" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/unixsock.js:6 msgid "Unixsock Plugin Configuration" msgstr "Unixsock 外掛配置" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2 +#: luasrc/statistics/rrdtool/definitions/uptime.lua:15 +#: root/usr/share/luci/statistics/plugins/uptime.json:2 msgid "Uptime" msgstr "上線時間" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:5 msgid "Uptime Plugin Configuration" msgstr "執行時間外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/uptime.js:9 +msgid "Uptime monitoring enabled" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/openvpn.js:30 msgid "Use improved naming schema" msgstr "使用更高階的命名規則" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36 +#: htdocs/luci-static/resources/view/statistics/collectd.js:62 msgid "Used PID file" msgstr "正在使用的 PID 檔案" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:27 +#: htdocs/luci-static/resources/view/statistics/plugins/exec.js:49 msgid "User" msgstr "使用者" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35 +#: htdocs/luci-static/resources/view/statistics/plugins/netlink.js:20 msgid "Verbose monitoring" msgstr "詳細監測" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:25 +#: htdocs/luci-static/resources/view/statistics/plugins/disk.js:16 +msgid "When none selected, all disks will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/dns.js:16 +msgid "When none selected, all interfaces will be monitored." +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:20 msgid "When set to true, reports per-state metric (system, user, idle)" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:16 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:15 msgid "When set to true, we request absolute values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:32 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:24 +#: htdocs/luci-static/resources/view/statistics/plugins/cpu.js:25 +#: htdocs/luci-static/resources/view/statistics/plugins/memory.js:21 msgid "When set to true, we request percentage values" msgstr "" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2 +#: luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 +#: root/usr/share/luci/statistics/plugins/iwinfo.json:2 msgid "Wireless" msgstr "無線" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 +#: htdocs/luci-static/resources/view/statistics/plugins/iwinfo.js:6 msgid "Wireless iwinfo Plugin Configuration" msgstr "無線 iwinfo 外掛配置" -#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15 +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:90 +msgid "Writing *.rrd files to %s" +msgstr "" + +#: luasrc/view/admin_statistics/index.htm:15 msgid "" "You can install additional collectd-mod-* plugins to enable more statistics." msgstr "您可以安裝更多的 collectd-mod-* 外掛以獲得更多的統計資料。" -#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 -#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:30 +msgid "cURL plugin enabled" +msgstr "" + +#: luasrc/statistics/rrdtool/definitions/curl.lua:7 +#: root/usr/share/luci/statistics/plugins/curl.json:2 msgid "cUrl" msgstr "cUrl" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 +#: htdocs/luci-static/resources/view/statistics/plugins/curl.js:5 msgid "cUrl Plugin Configuration" msgstr "cUrl 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 -msgid "e.g. br-ff" -msgstr "例如:br-ff" +#: htdocs/luci-static/resources/view/statistics/collectd.js:123 +msgid "none" +msgstr "" + +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:105 +msgid "one device" +msgid_plural "%d devices" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 -msgid "e.g. br-lan" -msgstr "例如:br-lan" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:107 +msgid "one filesystem type" +msgid_plural "%d filesystem types" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 -msgid "e.g. reject-with tcp-reset" -msgstr "例如:eject-with tcp-reset" +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:35 +msgid "one local port" +msgid_plural "%d local ports" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 -msgid "max. 16 chars" -msgstr "最長 16 個字元" +#: htdocs/luci-static/resources/view/statistics/plugins/df.js:106 +msgid "one mount" +msgid_plural "%d mounts" +msgstr[0] "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53 +#: htdocs/luci-static/resources/view/statistics/plugins/tcpconns.js:36 +msgid "one remote port" +msgid_plural "%d remote ports" +msgstr[0] "" + +#: htdocs/luci-static/resources/view/statistics/plugins/rrdtool.js:36 msgid "reduces rrd size" msgstr "減少 rrd 大小" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67 -msgid "seconds; multiple separated by space" -msgstr "秒數;多個使用空格分隔" +#~ msgid "Action (target)" +#~ msgstr "動作(目標)" + +#~ msgid "Add matching rule" +#~ msgstr "新增匹配規則" + +#~ msgid "Add multiple hosts separated by space." +#~ msgstr "使用空格分隔多個主機" + +#~ msgid "" +#~ "Collectd is a small daemon for collecting data from various sources " +#~ "through different plugins. On this page you can change general settings " +#~ "for the collectd daemon." +#~ msgstr "" +#~ "Collectd 是一個通過不同外掛用於收集各種源資料的小型守護程式。在此頁面中," +#~ "您可以更改 Collectd 守護程序常規設定。" + +#~ msgid "Destination ip range" +#~ msgstr "目標 IP 區間" + +#~ msgid "Hold Ctrl to select multiple items or to deselect entries." +#~ msgstr "按住 Ctrl 鍵來選擇或取消選擇多個專案。" + +#~ msgid "Incoming interface" +#~ msgstr "入介面" + +#~ msgid "Monitor all sensors" +#~ msgstr "監控所有感測器" + +#~ msgid "Name of the rule" +#~ msgstr "規則名" + +#~ msgid "Network protocol" +#~ msgstr "Network 協議" + +#~ msgid "Options" +#~ msgstr "選項" + +#~ msgid "Outgoing interface" +#~ msgstr "出介面" + +#~ msgid "Processes to monitor separated by space" +#~ msgstr "過程監控,用空格隔開" + +#~ msgid "Source ip range" +#~ msgstr "源 IP 區間" + +#~ msgid "e.g. br-ff" +#~ msgstr "例如:br-ff" + +#~ msgid "e.g. br-lan" +#~ msgstr "例如:br-lan" + +#~ msgid "e.g. reject-with tcp-reset" +#~ msgstr "例如:eject-with tcp-reset" + +#~ msgid "max. 16 chars" +#~ msgstr "最長 16 個字元" + +#~ msgid "seconds; multiple separated by space" +#~ msgstr "秒數;多個使用空格分隔" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45 -msgid "server interfaces" -msgstr "伺服器介面" +#~ msgid "server interfaces" +#~ msgstr "伺服器介面" diff --git a/applications/luci-app-statistics/root/usr/bin/stat-genconfig b/applications/luci-app-statistics/root/usr/bin/stat-genconfig index 4a7487ccf..8b14c29e5 100755 --- a/applications/luci-app-statistics/root/usr/bin/stat-genconfig +++ b/applications/luci-app-statistics/root/usr/bin/stat-genconfig @@ -17,13 +17,11 @@ $Id$ require("luci.model.uci") -require("luci.sys.iptparser") require("luci.util") require("luci.i18n") require("luci.jsonc") require("nixio.fs") -local ipt = luci.sys.iptparser.IptParser() local uci = luci.model.uci.cursor() local sections = uci:get_all( "luci_statistics" ) @@ -138,29 +136,25 @@ end function config_iptables( c ) local str = "" - for s in pairs(sections) do - if sections[s][".type"] == "collectd_iptables_match" then + for id, s in pairs(sections) do + if s[".type"] == "collectd_iptables_match" or s[".type"] == "collectd_iptables_match6" then + local tname = s.table and tostring(s.table) + local chain = s.chain and tostring(s.chain) - search = { } + if tname and tname:match("^%S+$") and chain and chain:match("^%S+$") then + local line = { #s[".type"] > 23 and "\tChain6" or "\tChain", tname, chain } + local rule = s.rule and tostring(s.rule) - for i, k in ipairs( { - "table", "chain", "target", "protocol", "source", "destination", - "inputif", "outputif", "options" - } ) do - v = sections[s][k] + if rule and rule:match("^%S+$") then + line[#line+1] = rule - if type(v) == "string" then - if k == "options" then v = luci.util.split( v, "%s+", nil, true ) end - search[k] = v + local name = s.name and tostring(s.name) + if name and name:match("^%S+$") then + line[#line+1] = name + end end - end - - for i, rule in ipairs( ipt:find( search ) ) do - - name = sections[s].name:gsub( "%s+", "_" ) - if i > 1 then name = name .. "_(" .. i .. ")" end - str = str .. "\tChain " .. rule.table .. " " .. rule.chain .. " " .. rule.index .. ' "' .. name .. "\"\n" + str = str .. table.concat(line, " ") .. "\n" end end end |