diff options
Diffstat (limited to 'applications/luci-app-statistics')
69 files changed, 2220 insertions, 1378 deletions
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 9a3850d683..eb7769b85f 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 @@ -26,34 +26,34 @@ function index() apcups = _("APC UPS"), conntrack = _("Conntrack"), contextswitch = _("Context Switches"), - cpu = _("Processor"), + cpu = _("Processor"), cpufreq = _("CPU Frequency"), - csv = _("CSV Output"), + csv = _("CSV Output"), curl = _("cUrl"), - df = _("Disk Space Usage"), + df = _("Disk Space Usage"), disk = _("Disk Usage"), - dns = _("DNS"), + dns = _("DNS"), email = _("Email"), entropy = _("Entropy"), exec = _("Exec"), interface = _("Interfaces"), iptables = _("Firewall"), - irq = _("Interrupts"), + irq = _("Interrupts"), iwinfo = _("Wireless"), load = _("System Load"), memory = _("Memory"), netlink = _("Netlink"), network = _("Network"), - nut = _("UPS"), + nut = _("UPS"), olsrd = _("OLSRd"), openvpn = _("OpenVPN"), ping = _("Ping"), processes = _("Processes"), rrdtool = _("RRDTool"), - sensors = _("Sensors"), - splash_leases = _("Splash Leases"), + sensors = _("Sensors"), + splash_leases = _("Splash Leases"), tcpconns = _("TCP Connections"), - thermal = _("Thermal"), + thermal = _("Thermal"), unixsock = _("UnixSock"), uptime = _("Uptime") } @@ -115,11 +115,15 @@ function index() -- get plugin instances local instances = tree:plugin_instances( plugin ) - -- plugin menu entry - entry( - { "admin", "statistics", "graph", plugin }, - call("statistics_render"), labels[plugin], idx - ).query = { timespan = span , host = host } + -- load plugin menu entry from the description + local plugin_name = "luci.statistics.rrdtool.definitions." .. plugin + local stat, def = pcall( require, plugin_name ) + if stat and def and type(def.item) == "function" then + entry( + { "admin", "statistics", "graph", plugin }, + call("statistics_render"), def.item(), idx + ).query = { timespan = span , host = host } + end -- if more then one instance is found then generate submenu if #instances > 1 then @@ -170,12 +174,12 @@ function statistics_render() local images = { } -- find requested plugin and instance - for i, p in ipairs( luci.dispatcher.context.path ) do - if luci.dispatcher.context.path[i] == "graph" then - plugin = luci.dispatcher.context.path[i+1] - instances = { luci.dispatcher.context.path[i+2] } - end - end + for i, p in ipairs( luci.dispatcher.context.path ) do + if luci.dispatcher.context.path[i] == "graph" then + plugin = luci.dispatcher.context.path[i+1] + instances = { luci.dispatcher.context.path[i+2] } + end + end -- no instance requested, find all instances if #instances == 0 then @@ -189,7 +193,6 @@ function statistics_render() is_index = true end - -- render graphs for i, inst in luci.util.vspairs( instances ) do for i, img in luci.util.vspairs( graph:render( plugin, inst, is_index ) ) do 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 index 663a3f12d4..b380febac0 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua @@ -1,7 +1,7 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys") +local sys = require("luci.sys") m = Map("luci_statistics", @@ -17,7 +17,7 @@ s = m:section( NamedSection, "collectd", "luci_statistics" ) -- general.hostname (Hostname) hostname = s:option( Value, "Hostname", translate("Hostname") ) -hostname.default = luci.sys.hostname() +hostname.default = sys.hostname() hostname.optional = true -- general.basedir (BaseDir) 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 index f89cdb1fb8..608144f135 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua @@ -1,13 +1,5 @@ ---[[ - -Copyright 2011 Jo-Philipp Wich <jow@openwrt.org> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.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"), 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 index dafcc452cc..4245018661 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua @@ -1,7 +1,7 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys") +local sys = require("luci.sys") m = Map("luci_statistics", @@ -24,7 +24,7 @@ interfaces.widget = "select" interfaces.size = 5 interfaces:depends( "enable", 1 ) interfaces:value("any") -for k, v in pairs(luci.sys.net.devices()) do +for k, v in pairs(sys.net.devices()) do interfaces:value(v) end 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 index 752212f4d4..60c88d072c 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua @@ -1,7 +1,7 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys") +local sys = require("luci.sys") m = Map("luci_statistics", @@ -23,7 +23,7 @@ interfaces = s:option( MultiValue, "Interfaces", translate("Monitor interfaces") interfaces.widget = "select" interfaces.size = 5 interfaces:depends( "enable", 1 ) -for k, v in pairs(luci.sys.net.devices()) do +for k, v in pairs(sys.net.devices()) do interfaces:value(v) end 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 index ded3f7f996..375a15bf1a 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua @@ -1,13 +1,12 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys.iptparser") +local ip = require("luci.sys.iptparser").IptParser() -ip = luci.sys.iptparser.IptParser() -chains = { } -targets = { } +local chains = { } +local targets = { } -for i, rule in ipairs( ip:find() ) do +for i, rule in ipairs( ip:find() ) do if rule.chain and rule.target then chains[rule.chain] = true targets[rule.target] = true 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 index 5510a5a8e8..fa677b8d12 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua @@ -1,13 +1,5 @@ ---[[ - -Copyright 2011 Manuel Munz <freifunk at somakoma dot de> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.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"), 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 index 66449ec467..784ad1fdbb 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua @@ -1,9 +1,9 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys") +local sys = require("luci.sys") -local devices = luci.sys.net.devices() +local devices = sys.net.devices() m = Map("luci_statistics", 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 index 193f0448ae..f0a5ab5930 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua @@ -1,11 +1,8 @@ -- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require "luci.sys" - local m, s, o - m = Map("luci_statistics", translate("OpenVPN Plugin Configuration"), translate("The OpenVPN plugin gathers information about the current vpn connection status.")) 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 index 77e36bfaff..69066880c3 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua @@ -1,8 +1,6 @@ -- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require "luci.sys" - local m, s, o local sensor_types = { ["12v"] = "voltage", 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 index 3a6c4644e3..5e32da7ffe 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua @@ -1,13 +1,5 @@ ---[[ - -Copyright 2013 Thomas Endt <tmo26@gmx.de> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.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"), diff --git a/applications/luci-app-statistics/luasrc/statistics/i18n.lua b/applications/luci-app-statistics/luasrc/statistics/i18n.lua index 7877e61ab3..6b01958cbe 100644 --- a/applications/luci-app-statistics/luasrc/statistics/i18n.lua +++ b/applications/luci-app-statistics/luasrc/statistics/i18n.lua @@ -3,15 +3,14 @@ module("luci.statistics.i18n", package.seeall) -require("luci.util") -require("luci.i18n") +local util = require("luci.util") +local i18n = require("luci.i18n") -Instance = luci.util.class() - +Instance = util.class() function Instance.__init__( self, graph ) - self.i18n = luci.i18n + self.i18n = i18n self.graph = graph end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua index f543e67599..4586b23caa 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua @@ -3,46 +3,46 @@ module("luci.statistics.rrdtool", package.seeall) -require("luci.statistics.datatree") -require("luci.statistics.rrdtool.colors") -require("luci.statistics.i18n") -require("luci.model.uci") -require("luci.util") -require("luci.sys") +local tree = require("luci.statistics.datatree") +local colors = require("luci.statistics.rrdtool.colors") +local i18n = require("luci.statistics.i18n") +local uci = require("luci.model.uci").cursor() +local util = require("luci.util") +local sys = require("luci.sys") +local fs = require("nixio.fs") -local fs = require "nixio.fs" - -Graph = luci.util.class() +Graph = util.class() function Graph.__init__( self, timespan, opts ) opts = opts or { } - local uci = luci.model.uci.cursor() local sections = uci:get_all( "luci_statistics" ) -- options opts.timespan = timespan or sections.rrdtool.default_timespan or 900 opts.rrasingle = opts.rrasingle or ( sections.collectd_rrdtool.RRASingle == "1" ) opts.rramax = opts.rramax or ( sections.collectd_rrdtool.RRAMax == "1" ) - opts.host = opts.host or sections.collectd.Hostname or luci.sys.hostname() + opts.host = opts.host or sections.collectd.Hostname or sys.hostname() opts.width = opts.width or sections.rrdtool.image_width or 400 + opts.height = opts.height or sections.rrdtool.image_height or 100 opts.rrdpath = opts.rrdpath or sections.collectd_rrdtool.DataDir or "/tmp/rrd" opts.imgpath = opts.imgpath or sections.rrdtool.image_path or "/tmp/rrdimg" opts.rrdpath = opts.rrdpath:gsub("/$","") opts.imgpath = opts.imgpath:gsub("/$","") -- helper classes - self.colors = luci.statistics.rrdtool.colors.Instance() - self.tree = luci.statistics.datatree.Instance(opts.host) - self.i18n = luci.statistics.i18n.Instance( self ) + self.colors = colors.Instance() + self.tree = tree.Instance(opts.host) + self.i18n = i18n.Instance( self ) -- rrdtool default args self.args = { "-a", "PNG", "-s", "NOW-" .. opts.timespan, - "-w", opts.width + "-w", opts.width, + "-h", opts.height } -- store options @@ -62,7 +62,7 @@ function Graph._mkpath( self, plugin, plugin_instance, dtype, dtype_instance ) end function Graph.mkrrdpath( self, ... ) - return string.format( "%s/%s.rrd", self.opts.rrdpath, self:_mkpath( ... ) ) + return string.format( "%s/%s.rrd", self.opts.rrdpath, self:_mkpath( ... ):gsub("\\", "\\\\"):gsub(":", "\\:") ) end function Graph.mkpngpath( self, ... ) @@ -102,7 +102,7 @@ function Graph._rrdtool( self, def, rrd ) opt = opt:gsub( "{file}", rrd ) end - cmdline[#cmdline+1] = luci.util.shellquote(opt) + cmdline[#cmdline+1] = util.shellquote(opt) end -- execute rrdtool diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua index 5b35dff67c..0d3af712fd 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua @@ -3,10 +3,10 @@ module("luci.statistics.rrdtool.colors", package.seeall) -require("luci.util") +local util = require("luci.util") -Instance = luci.util.class() +Instance = util.class() function Instance.from_string( self, s ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua index 9f7a51a868..637b5f9592 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.apcups",package.seeall) +function item() + return luci.i18n.translate("APC UPS") +end + function rrdargs( graph, plugin, plugin_instance ) local lu = require("luci.util") @@ -19,8 +23,7 @@ function rrdargs( graph, plugin, plugin_instance ) ups_inst[t] = graph.tree:data_instances( plugin, plugin_instance, t ) end - - -- Check if hash table or array is empty or nil-filled + -- Check if hash table or array is empty or nil-filled local function empty( t ) for _, v in pairs(t) do @@ -57,8 +60,8 @@ function rrdargs( graph, plugin, plugin_instance ) end - -- Graph definitions for APC UPS measurements MUST use only 'instances': - -- e.g. instances = { voltage = { "input", "output" } } + -- Graph definitions for APC UPS measurements MUST use only 'instances': + -- e.g. instances = { voltage = { "input", "output" } } local voltagesdc = { title = "%H: Voltages on APC UPS - Battery", diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua index fbc47731ef..d99dab0f01 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua @@ -3,7 +3,12 @@ module("luci.statistics.rrdtool.definitions.conntrack",package.seeall) +function item() + return luci.i18n.translate("Conntrack") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) + return { title = "%H: Conntrack entries", vlabel = "Count", diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua index 6826e12adb..f9473e4406 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua @@ -2,6 +2,10 @@ module("luci.statistics.rrdtool.definitions.contextswitch",package.seeall) +function item() + return luci.i18n.translate("Context Switches") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua index ae0c0ce778..226c84ee96 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.cpu",package.seeall) +function item() + return luci.i18n.translate("Processor") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua index 25a72d2285..08aab04b85 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua @@ -2,6 +2,10 @@ module("luci.statistics.rrdtool.definitions.cpufreq",package.seeall) +function item() + return luci.i18n.translate("CPU Frequency") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua index 89a65a6b5f..4fde243ca9 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua @@ -3,7 +3,12 @@ module("luci.statistics.rrdtool.definitions.curl", package.seeall) +function item() + return luci.i18n.translate("cUrl") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) + return { title = "%H: cUrl Response Time for #%pi", y_min = "0", diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua index b5633c15ff..fb732991ba 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua @@ -3,9 +3,13 @@ module("luci.statistics.rrdtool.definitions.df", package.seeall) +function item() + return luci.i18n.translate("Disk Space Usage") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) - return { + local df_complex = { title = "%H: Disk space usage on %pi", vlabel = "Bytes", number_format = "%5.1lf%sB", @@ -36,4 +40,51 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) } } } + + local percent_bytes = { + title = "%H: Disk space usage on %pi", + vlabel = "Percent", + number_format = "%5.2lf %%", + + data = { + instances = { + percent_bytes = { "free", "used", "reserved" } + }, + + options = { + percent_bytes_free = { + color = "00ff00", + overlay = false, + title = "free" + }, + + percent_bytes_used = { + color = "ff0000", + overlay = false, + title = "used" + }, + + percent_bytes_reserved = { + color = "0000ff", + overlay = false, + title = "reserved" + } + } + } + } + + local types = graph.tree:data_types( plugin, plugin_instance ) + + local p = {} + for _, t in ipairs(types) do + if t == "percent_bytes" then + p[#p+1] = percent_bytes + end + + if t == "df_complex" then + p[#p+1] = df_complex + end + end + + return p end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua index 8aabb7f64e..29597ff989 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua @@ -3,7 +3,12 @@ module("luci.statistics.rrdtool.definitions.disk", package.seeall) +function item() + return luci.i18n.translate("Disk Usage") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) + return { { title = "%H: Disk I/O operations on %pi", diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua index cf96d8fbe1..0ff4c76858 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.dns", package.seeall) +function item() + return luci.i18n.translate("DNS") +end + function rrdargs( graph, plugin, plugin_instance ) local traffic = { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua index 3d30a70afb..01eb33f9b4 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.entropy", package.seeall) +function item() + return luci.i18n.translate("Entropy") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua index 6ca65e539f..a4d4eefd53 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.interface", package.seeall) +function item() + return luci.i18n.translate("Interfaces") +end + function rrdargs( graph, plugin, plugin_instance ) -- diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua index 9790e0e3d2..7218bfd441 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.iptables", package.seeall) +function item() + return luci.i18n.translate("Firewall") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua index f61d0da646..56b4547b94 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.irq", package.seeall) +function item() + return luci.i18n.translate("Interrupts") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua index 194afd6fc0..53f4c7a40c 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.iwinfo", package.seeall) +function item() + return luci.i18n.translate("Wireless") +end + function rrdargs( graph, plugin, plugin_instance ) -- diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua index ce762dab46..b06c8c4148 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.load", package.seeall) +function item() + return luci.i18n.translate("System Load") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua index 53d559c599..b05d31dc02 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua @@ -11,6 +11,10 @@ You may obtain a copy of the License at module("luci.statistics.rrdtool.definitions.memory",package.seeall) +function item() + return luci.i18n.translate("Memory") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua index a612126ed0..bdd3f2eb44 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.netlink", package.seeall) +function item() + return luci.i18n.translate("Netlink") +end + function rrdargs( graph, plugin, plugin_instance ) -- @@ -37,7 +41,6 @@ function rrdargs( graph, plugin, plugin_instance ) } } - -- -- packet diagram -- @@ -119,7 +122,6 @@ function rrdargs( graph, plugin, plugin_instance ) } } - -- -- multicast diagram -- @@ -144,7 +146,6 @@ function rrdargs( graph, plugin, plugin_instance ) } } - -- -- collision diagram -- @@ -169,7 +170,6 @@ function rrdargs( graph, plugin, plugin_instance ) } } - -- -- error diagram -- @@ -206,6 +206,5 @@ function rrdargs( graph, plugin, plugin_instance ) } } - return { traffic, packets, multicast, collisions, errors } end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua index dd93196902..df6da3580b 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua @@ -2,25 +2,41 @@ module("luci.statistics.rrdtool.definitions.nut",package.seeall) +function item() + return luci.i18n.translate("UPS") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) - local voltages = { - title = "%H: Voltages on UPS \"%pi\"", + local voltages_ac = { + title = "%H: AC voltages on UPS \"%pi\"", vlabel = "V", number_format = "%5.1lfV", data = { instances = { - voltage = { "battery", "input", "output" } + voltage = { "input", "output" } }, - options = { voltage_output = { color = "00e000", title = "Output voltage", noarea=true, overlay=true }, - voltage_battery = { color = "0000ff", title = "Battery voltage", noarea=true, overlay=true }, voltage_input = { color = "ffb000", title = "Input voltage", noarea=true, overlay=true } } } } + local voltages_dc = { + title = "%H: Battery voltage on UPS \"%pi\"", + vlabel = "V", + number_format = "%5.1lfV", + data = { + instances = { + voltage = { "battery" } + }, + options = { + voltage = { color = "0000ff", title = "Battery voltage", noarea=true, overlay=true } + } + } + } + local currents = { title = "%H: Current on UPS \"%pi\"", vlabel = "A", @@ -29,7 +45,6 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) instances = { current = { "battery", "output" } }, - options = { current_output = { color = "00e000", title = "Output current", noarea=true, overlay=true }, current_battery = { color = "0000ff", title = "Battery current", noarea=true, overlay=true } @@ -48,8 +63,8 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) percent = { "charge", "load" } }, options = { - percent_charge = { color = "00ff00", title = "Charge level" }, - percent_load = { color = "ff0000", title = "Load" } + percent_charge = { color = "00ff00", title = "Charge level", noarea=true, overlay=true }, + percent_load = { color = "ff0000", title = "Load", noarea=true, overlay=true } } } } @@ -63,9 +78,8 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) instances = { temperature = "battery" }, - options = { - temperature_battery = { color = "ffb000", title = "Battery temperature" } + temperature_battery = { color = "ffb000", title = "Battery temperature", noarea=true } } } } @@ -106,12 +120,11 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) instances = { frequency = { "input", "output" } }, - options = { frequency_output = { color = "00e000", title = "Output frequency", noarea=true, overlay=true }, frequency_input = { color = "ffb000", title = "Input frequency", noarea=true, overlay=true } } } } - return { voltages, currents, percentage, temperature, timeleft, power, frequencies } + return { voltages_ac, voltages_dc, currents, percentage, temperature, timeleft, power, frequencies } end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua index a69469568e..52bfbdf4f7 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua @@ -3,24 +3,28 @@ module("luci.statistics.rrdtool.definitions.olsrd", package.seeall) +function item() + return luci.i18n.translate("OLSRd") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) local g = { } if plugin_instance == "routes" then g[#g+1] = { - -- diagram data description + -- diagram data description title = "%H: Total amount of OLSR routes", vlabel = "n", number_format = "%5.0lf", data = { - types = { "routes" }, + types = { "routes" }, options = { routes = { color = "ff0000", title = "Total number of routes" } } - } - } + } + } g[#g+1] = { title = "%H: Average route ETX", vlabel = "ETX", detail = true, @@ -80,7 +84,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) number_format = "%5.2lf", detail = true, data = { types = { "signal_quality" }, - + instances = { signal_quality = { instances[i], instances[i+1] }, }, @@ -106,7 +110,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) title= "%H: Total amount of OLSR links", vlabel = "n", number_format = "%5.0lf", data = { instances = { "" }, - types = { "links" }, + types = { "links" }, options = { links = { color = "0000ff", @@ -114,7 +118,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) } } } - } + } g[#g+1] = { title= "%H: Average signal quality", vlabel = "n", diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua index 876e871d1d..d16dbac908 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.openvpn", package.seeall) +function item() + return luci.i18n.translate("OpenVPN") +end + function rrdargs( graph, plugin, plugin_instance ) local inst = plugin_instance:gsub("^openvpn%.(.+)%.status$", "%1") diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua index 6ecdb5c8ad..c3645e408c 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua @@ -3,7 +3,12 @@ module("luci.statistics.rrdtool.definitions.ping", package.seeall) +function item() + return luci.i18n.translate("Ping") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) + return { -- Ping roundtrip time { title = "%H: ICMP Round Trip Time", diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua index 62d0545973..4303824f34 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua @@ -3,10 +3,14 @@ module("luci.statistics.rrdtool.definitions.processes", package.seeall) +function item() + return luci.i18n.translate("Processes") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) - if plugin_instance == "" then - return { + if plugin_instance == "" then + return { title = "%H: Processes", vlabel = "Processes/s", data = { @@ -26,9 +30,9 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) ps_state_zombies = { color = "ff0000", title = "Zombies" } } } - } - else - return { + } + else + return { { title = "%H: CPU time used by %pi", vlabel = "Jiffies", @@ -113,5 +117,5 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) } } } - end + end end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua index f8bddb96e3..6e09a7b9f0 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua @@ -3,7 +3,12 @@ module("luci.statistics.rrdtool.definitions.sensors", package.seeall) +function item() + return luci.i18n.translate("Sensors") +end + function rrdargs( graph, plugin, plugin_instance ) + return { { per_instance = true, diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua index 65fba5299d..5af998cfb5 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua @@ -1,27 +1,30 @@ -- Copyright 2013 Freifunk Augsburg / Michael Wendland <michael@michiwend.com> -- Licensed to the public under the Apache License 2.0. - module("luci.statistics.rrdtool.definitions.splash_leases", package.seeall) - + +function item() + return luci.i18n.translate("Splash Leases") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) - - return { - title = "%H: Splash Leases", - vlabel = "Active Clients", - y_min = "0", - number_format = "%5.1lf", - data = { - sources = { - splash_leases = { "leased", "whitelisted", "blacklisted" } - }, - - options = { - splash_leases__leased = { color = "00CC00", title = "Leased", overlay = false }, - splash_leases__whitelisted = { color = "0000FF", title = "Whitelisted", overlay = false }, - splash_leases__blacklisted = { color = "FF0000", title = "Blacklisted", overlay = false } - } - } - } -end + return { + title = "%H: Splash Leases", + vlabel = "Active Clients", + y_min = "0", + number_format = "%5.1lf", + data = { + sources = { + splash_leases = { "leased", "whitelisted", "blacklisted" } + }, + + options = { + splash_leases__leased = { color = "00CC00", title = "Leased", overlay = false }, + splash_leases__whitelisted = { color = "0000FF", title = "Whitelisted", overlay = false }, + splash_leases__blacklisted = { color = "FF0000", title = "Blacklisted", overlay = false } + } + } + } + +end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua index 50a9470de5..2d762f7a4c 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua @@ -3,7 +3,12 @@ module("luci.statistics.rrdtool.definitions.tcpconns", package.seeall) +function item() + return luci.i18n.translate("TCP Connections") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) + return { title = "%H: TCP connections to port %pi", vlabel = "Connections/s", diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua index 532246465e..4a555a6054 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua @@ -2,6 +2,10 @@ module("luci.statistics.rrdtool.definitions.thermal",package.seeall) +function item() + return luci.i18n.translate("Thermal") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua index 077ec57e83..8d7d42bc6b 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua @@ -11,17 +11,20 @@ You may obtain a copy of the License at module("luci.statistics.rrdtool.definitions.uptime", package.seeall) -function rrdargs( graph, plugin, plugin_instance, dtype ) +function item() + return luci.i18n.translate("Uptime") +end - return { - title = "%H: Uptime", vlabel = "seconds", - number_format = "%5.0lf%s", data = { - types = { "uptime" }, - options = { - uptime = { title = "Uptime %di", noarea = true } - } - } - } +function rrdargs( graph, plugin, plugin_instance, dtype ) + return { + title = "%H: Uptime", vlabel = "seconds", + number_format = "%5.0lf%s", data = { + types = { "uptime" }, + options = { + uptime = { title = "Uptime %di", noarea = true } + } + } + } end diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index d550facb24..f30a6f7019 100644 --- a/applications/luci-app-statistics/po/ca/statistics.po +++ b/applications/luci-app-statistics/po/ca/statistics.po @@ -16,6 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -23,7 +24,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Acció (objectiu)" @@ -31,7 +32,7 @@ msgstr "Acció (objectiu)" msgid "Add command for reading values" msgstr "Afegeix ordre per llegir valors" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Afegeix regla coincident" @@ -44,7 +45,7 @@ msgstr "Afegeix múltiples hosts separats per espai." msgid "Add notification command" msgstr "Afegeix ordre de notificació" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -61,6 +62,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -88,7 +90,7 @@ msgstr "Emmagatzema en memòria cau les dades recollides de" msgid "Cache flush interval" msgstr "Interval de neteja de memòria cau" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Cadena" @@ -119,14 +121,16 @@ msgstr "" "dimoni Collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Configuració del connector Conntrack" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -135,6 +139,7 @@ msgid "DF Plugin Configuration" msgstr "Configuració del connector DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -150,7 +155,7 @@ msgstr "Interval de recol·lecció de dades" msgid "Datasets definition file" msgstr "Fitxer de definició de dades" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Rang d'IP destí" @@ -167,10 +172,12 @@ msgid "Disk Plugin Configuration" msgstr "Configuració del connector de disc" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Ús d'espai en disc" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Ús de disc" @@ -199,7 +206,7 @@ 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:18 +#: 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 @@ -212,29 +219,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Activa aquest connector" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -255,6 +263,7 @@ msgid "Filter class monitoring" msgstr "Monitoreig de classe filter" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Tallafocs" @@ -266,7 +275,7 @@ msgstr "Neteja la memòria cau després de" 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -274,7 +283,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -305,7 +314,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -313,7 +322,7 @@ 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -337,7 +346,7 @@ msgstr "Configuració de connector IRQ" msgid "Ignore source addresses" msgstr "Ignora adreces origen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interfície entrant" @@ -346,10 +355,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuració de connector d'interfície" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfícies" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupcions" @@ -357,7 +368,7 @@ msgstr "Interrupcions" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuració del connector iptables" @@ -392,10 +403,11 @@ msgid "Maximum allowed connections" msgstr "Connexions màximes permeses" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memòria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Configuració del connector de memòria" @@ -405,7 +417,7 @@ msgstr "Configuració del connector de memòria" #: 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:120 +#: 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" msgstr "" @@ -414,7 +426,7 @@ msgstr "" 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:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -472,11 +484,12 @@ msgstr "Monitoritza els ports remots" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Enllaç de xarxa" @@ -496,7 +509,7 @@ msgstr "Configuració del connector de xarxa" msgid "Network plugins" msgstr "Connectors de xarxa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocol de xarxa" @@ -511,6 +524,7 @@ msgid "Number of threads for data collection" msgstr "Número de fils de recol·lecció de dades" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -523,22 +537,23 @@ msgid "Only create average RRAs" msgstr "Crea només RRAs mitjans" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interfície sortint" @@ -547,6 +562,7 @@ msgid "Output plugins" msgstr "Connectors de sortida" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -563,6 +579,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processos" @@ -575,6 +592,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processador" @@ -621,15 +639,16 @@ msgstr "" msgid "Seconds" msgstr "Segons" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -665,7 +684,7 @@ msgstr "Grup d'endoll" msgid "Socket permissions" msgstr "Permisos d'endoll" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Rang d'IP origen" @@ -682,6 +701,7 @@ 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/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -714,10 +734,12 @@ msgid "Stored timespans" msgstr "Marques de temps emmagatzemades" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Càrrega de sistema" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Connexions TCP" @@ -733,7 +755,7 @@ msgstr "TTL pels paquets de xarxa" msgid "TTL for ping packets" msgstr "TTL per paquets ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Taula" @@ -751,13 +773,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -831,7 +853,7 @@ 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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -862,7 +884,7 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua: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." @@ -915,7 +937,7 @@ 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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -957,11 +979,12 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -998,6 +1021,7 @@ msgstr "Intenta resoldre el nom de màquina (fqdn)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -1022,14 +1046,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuració de connector Unixsock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1047,6 +1072,7 @@ msgid "Verbose monitoring" msgstr "Monitoreig detallat" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1060,6 +1086,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1067,19 +1094,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "p.e. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "p.e. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "màx. 16 caràcters" diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index d9696c0398..6b318016d5 100644 --- a/applications/luci-app-statistics/po/cs/statistics.po +++ b/applications/luci-app-statistics/po/cs/statistics.po @@ -12,6 +12,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -19,7 +20,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Akce (cíl)" @@ -27,7 +28,7 @@ msgstr "Akce (cíl)" 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:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Přidat pravidlo pro výběr" @@ -40,7 +41,7 @@ msgstr "Přidat více hostů, oddělených mezerou" msgid "Add notification command" msgstr "Přidat příkaz pro upozornění" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -57,6 +58,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -84,7 +86,7 @@ msgstr "Mezipamět pro ukládání dat" msgid "Cache flush interval" msgstr "Interval vyprazdňování mezipaměti" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Řetěz" @@ -115,14 +117,16 @@ msgstr "" "collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Nastavení pluginu Conntrack" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -131,6 +135,7 @@ msgid "DF Plugin Configuration" msgstr "Nastavení pluginu DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -146,7 +151,7 @@ msgstr "Interval sběru dat" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Rozsah cílových IP adres" @@ -163,10 +168,12 @@ msgid "Disk Plugin Configuration" msgstr "Nastavení Disk pluginu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Využití místa na disku" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Využití disku" @@ -195,7 +202,7 @@ 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:18 +#: 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 @@ -208,29 +215,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Povolit tento plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -251,6 +259,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -262,7 +271,7 @@ msgstr "Vyprázdnit cache po" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -270,7 +279,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -299,7 +308,7 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -307,7 +316,7 @@ 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -331,7 +340,7 @@ msgstr "Nastavení IRQ pluginu" msgid "Ignore source addresses" msgstr "Ignorovat zdrojové adresy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Příchozí rozhraní" @@ -340,10 +349,12 @@ msgid "Interface Plugin Configuration" msgstr "Nastavení Interface pluginu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Rozhraní" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Přerušení" @@ -351,7 +362,7 @@ msgstr "Přerušení" msgid "Interval for pings" msgstr "Interval pro ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Nastavení Iptables pluginu" @@ -387,10 +398,11 @@ msgid "Maximum allowed connections" msgstr "Maximální množství povolených spojení" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Paměť" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Nastavení pluginu Memory (Paměť)" @@ -400,7 +412,7 @@ msgstr "Nastavení pluginu Memory (Paměť)" #: 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:120 +#: 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" msgstr "Sledovat vše kromě vybraných" @@ -409,7 +421,7 @@ msgstr "Sledovat vše kromě vybraných" msgid "Monitor all local listen ports" msgstr "Monitorovat všechny naslouchající porty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -467,11 +479,12 @@ msgstr "Sledovat vzdálené porty" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -491,7 +504,7 @@ msgstr "Nastavení pluginu Síť" msgid "Network plugins" msgstr "Síťové pluginy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Síťový protokol" @@ -506,6 +519,7 @@ msgid "Number of threads for data collection" msgstr "Počet vláken pro sběr dat" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -518,22 +532,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Odchozí rozhraní" @@ -542,6 +557,7 @@ msgid "Output plugins" msgstr "Výstupní pluginy" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -558,6 +574,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Procesy" @@ -570,6 +587,7 @@ msgid "Processes to monitor separated by space" msgstr "Sledované procesy (oddělte mezerou)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Procesor" @@ -617,15 +635,16 @@ msgstr "Skript" msgid "Seconds" msgstr "Sekundy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -661,7 +680,7 @@ msgstr "Skupina socketů" msgid "Socket permissions" msgstr "Oprávnění socketu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Rozsah zdrojových IP" @@ -678,6 +697,7 @@ 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/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -708,10 +728,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Zatížení systému" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP spojení" @@ -727,7 +749,7 @@ msgstr "TTL pro síťové pakety" msgid "TTL for ping packets" msgstr "TTL pro pakety pingu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -745,13 +767,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -821,7 +843,7 @@ msgid "" 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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -849,7 +871,7 @@ msgstr "" 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "Plugin Memory shromažďuje statistiky o využití paměti." @@ -901,7 +923,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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -943,11 +965,12 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -982,6 +1005,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -1006,14 +1030,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Konfigurace pluginu Unixsock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1031,6 +1056,7 @@ msgid "Verbose monitoring" msgstr "Podrobný monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1044,6 +1070,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1051,19 +1078,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "např. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "např. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 znaků" diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index b7fe0a6c71..80beeea7f8 100644 --- a/applications/luci-app-statistics/po/de/statistics.po +++ b/applications/luci-app-statistics/po/de/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -21,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Aktion (Ziel)" @@ -29,7 +30,7 @@ msgstr "Aktion (Ziel)" msgid "Add command for reading values" msgstr "Kommando zum Werte einlesen hinzufügen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Auswahlregel hinzufügen" @@ -42,7 +43,7 @@ msgstr "Mehrere Hosts durch Leerzeichen getrennt hinzufuegen" msgid "Add notification command" msgstr "Benachrichtigungskommando hinzufügen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -86,7 +88,7 @@ msgstr "Zwischenspeicherzeit für gesammelte Daten" msgid "Cache flush interval" msgstr "Cache-Leerungsintervall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Kette (Chain)" @@ -117,14 +119,16 @@ msgstr "" "generelle Einstellungen für den Collectd-Daemon vorgenommen werden." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack Plugin Einstellungen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "DF Plugin Konfiguration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -148,7 +153,7 @@ msgstr "Daten-Sammelintervall" msgid "Datasets definition file" msgstr "Dataset-Definitionen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Ziel-IP-Bereich" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Disk Plugin Konfiguration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Plattenspeicher" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Plattenauslastung" @@ -197,7 +204,7 @@ 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:18 +#: 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 @@ -210,29 +217,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Plugin aktivieren" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Filterklassen überwachen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -264,7 +273,7 @@ msgstr "Leerungsintervall für Zwischenspeicher" 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +281,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -305,7 +314,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -313,7 +322,7 @@ 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -337,7 +346,7 @@ msgstr "IRQ Plugin Konfiguration" msgid "Ignore source addresses" msgstr "Quelladressen ignorieren" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "eingehende Schnittstelle" @@ -346,10 +355,12 @@ msgid "Interface Plugin Configuration" msgstr "Interface Plugin Konfiguration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Schnittstellen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupts" @@ -357,7 +368,7 @@ msgstr "Interrupts" msgid "Interval for pings" msgstr "Intervall zwischen den Pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables Plugin Konfiguration" @@ -394,10 +405,11 @@ msgid "Maximum allowed connections" msgstr "Maximale Anzahl erlaubter Verbindungen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memory" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Memory-Plugin-Konfiguration" @@ -407,7 +419,7 @@ msgstr "Memory-Plugin-Konfiguration" #: 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:120 +#: 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" msgstr "Alle bis auf Angegebene überwachen" @@ -416,7 +428,7 @@ msgstr "Alle bis auf Angegebene überwachen" 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:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -474,11 +486,12 @@ msgstr "entfernte Ports überwachen" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -498,7 +511,7 @@ msgstr "Network Plugin Konfiguration" msgid "Network plugins" msgstr "Netzwerkplugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Netzwerkprotokoll" @@ -513,6 +526,7 @@ msgid "Number of threads for data collection" msgstr "Anzahl paralleler Sammelprozesse" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -525,22 +539,23 @@ msgid "Only create average RRAs" msgstr "Nur 'average' RRAs erzeugen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "ausgehende Schnittstelle" @@ -549,6 +564,7 @@ msgid "Output plugins" msgstr "Ausgabeplugins" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -565,6 +581,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Prozesse" @@ -577,6 +594,7 @@ msgid "Processes to monitor separated by space" msgstr "Zu überwachende Prozesse (getrennt durch Leerzeichen)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Prozessor" @@ -623,15 +641,16 @@ msgstr "Skript" msgid "Seconds" msgstr "Sekunden" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -667,7 +686,7 @@ msgstr "Socket-Nutzergruppe" msgid "Socket permissions" msgstr "Socket-Berechtigungen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Quell-IP-Bereich" @@ -684,6 +703,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Bestimmt die zu sammelnden Informationen der globalen Topologie." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -714,10 +734,12 @@ msgid "Stored timespans" msgstr "gespeicherte Zeitspannen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Systemlast" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP-Verbindungen" @@ -733,7 +755,7 @@ msgstr "TTL für Netzwerkpakete" msgid "TTL for ping packets" msgstr "TTL für Ping Pakete" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabelle" @@ -754,13 +776,13 @@ msgstr "" "Das OLSRd-Plugin liest Informationen über Meshnetzwerke aus der OLSR-Txtinfo-" "Erweiterung." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -836,7 +858,7 @@ msgstr "" "Das Interface-Plugin sammelt allgemeine Verkehrsstatistiken auf ausgewählten " "Schnittstellen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -865,7 +887,7 @@ msgstr "" 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" "Das memory-Plugin sammelt Statistiken über die RAM-Auslastung des Systems." @@ -920,7 +942,7 @@ 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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -962,11 +984,12 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -1003,6 +1026,7 @@ msgstr "automatisch vollen Hostnamen herausfinden" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "USV" @@ -1027,14 +1051,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock Plugin Konfiguration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1052,6 +1077,7 @@ msgid "Verbose monitoring" msgstr "Schnittstellen detailliert überwachen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Drahtlos" @@ -1065,6 +1091,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1072,19 +1099,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "z.B. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "z.B. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 Buchstaben" diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index 91854366c0..156bb8d74b 100644 --- a/applications/luci-app-statistics/po/el/statistics.po +++ b/applications/luci-app-statistics/po/el/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.4\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -21,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -29,7 +30,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -42,7 +43,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -87,7 +89,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -118,14 +120,16 @@ msgstr "" "γενικές ρυθμίσεις του δαίμονα collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -149,7 +154,7 @@ msgstr "Περίοδος συλλογής δεδομένων" msgid "Datasets definition file" msgstr "Αρχείο ορισμού συνόλων δεδομένων" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -167,10 +172,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Χρήση Χώρου στον δίσκο" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Χρήση Δίσκου" @@ -199,7 +206,7 @@ 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:18 +#: 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 @@ -212,29 +219,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -255,6 +263,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Τείχος προστασίας" @@ -266,7 +275,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -274,7 +283,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -300,13 +309,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -330,7 +339,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -339,10 +348,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Διεπαφές" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Διακοπές" @@ -350,7 +361,7 @@ msgstr "Διακοπές" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -385,10 +396,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Μνήμη" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -398,7 +410,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -407,7 +419,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -465,11 +477,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Όνομα κανόνα" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -489,7 +502,7 @@ msgstr "" msgid "Network plugins" msgstr "Πρόσθετα δικτύου" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -504,6 +517,7 @@ msgid "Number of threads for data collection" msgstr "Αριθμός νημάτων για τη συλλογή δεδομένων" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -516,22 +530,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -540,6 +555,7 @@ msgid "Output plugins" msgstr "Πρόσθετα εξόδου" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -556,6 +572,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Διεργασίες" @@ -568,6 +585,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Επεξεργαστής" @@ -614,15 +632,16 @@ msgstr "" msgid "Seconds" msgstr "Δευτερόλεπτα" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -658,7 +677,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -675,6 +694,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -705,10 +725,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Φόρτος Συστήματος" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Συνδέσεις TCP" @@ -724,7 +746,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Πίνακας" @@ -742,13 +764,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -805,7 +827,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -827,7 +849,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -865,7 +887,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -903,11 +925,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -940,6 +963,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -964,14 +988,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -989,6 +1014,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Ασύρματο" @@ -1002,6 +1028,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1009,19 +1036,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "π.χ. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "π.χ. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index 490cc81c0d..bbfccc60e6 100644 --- a/applications/luci-app-statistics/po/en/statistics.po +++ b/applications/luci-app-statistics/po/en/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.1.1\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -21,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Action (target)" @@ -29,7 +30,7 @@ msgstr "Action (target)" msgid "Add command for reading values" msgstr "Add command for reading values" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Add matching rule" @@ -42,7 +43,7 @@ msgstr "" msgid "Add notification command" msgstr "Add notification command" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -86,7 +88,7 @@ msgstr "Cache collected data for" msgid "Cache flush interval" msgstr "Cache flush interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Chain" @@ -117,14 +119,16 @@ msgstr "" "collectd daemon." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "DF Plugin Configuration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -148,7 +153,7 @@ msgstr "Data collection interval" msgid "Datasets definition file" msgstr "Datasets definition file" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Destination ip range" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Disk Plugin Configuration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Disk Space Usage" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Disk Usage" @@ -197,7 +204,7 @@ 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:18 +#: 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 @@ -210,29 +217,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Enable this plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Filter class monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -264,7 +273,7 @@ msgstr "Flush cache after" 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +281,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -303,7 +312,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -311,7 +320,7 @@ 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -335,7 +344,7 @@ msgstr "IRQ Plugin Configuration" msgid "Ignore source addresses" msgstr "Ignore source addresses" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Incoming interface" @@ -344,10 +353,12 @@ msgid "Interface Plugin Configuration" msgstr "Interface Plugin Configuration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupts" @@ -355,7 +366,7 @@ msgstr "Interrupts" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables Plugin Configuration" @@ -390,10 +401,11 @@ msgid "Maximum allowed connections" msgstr "Maximum allowed connections" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -403,7 +415,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -412,7 +424,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "Monitor all local listen ports" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -470,11 +482,12 @@ msgstr "Monitor remote ports" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -494,7 +507,7 @@ msgstr "Network Plugin Configuration" msgid "Network plugins" msgstr "Network plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Network protocol" @@ -509,6 +522,7 @@ msgid "Number of threads for data collection" msgstr "Number of threads for data collection" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -521,22 +535,23 @@ msgid "Only create average RRAs" msgstr "Only create average RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Outgoing interface" @@ -545,6 +560,7 @@ msgid "Output plugins" msgstr "Output plugins" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -561,6 +577,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processes" @@ -573,6 +590,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processor" @@ -619,15 +637,16 @@ msgstr "" msgid "Seconds" msgstr "Seconds" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -663,7 +682,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Source ip range" @@ -680,6 +699,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -710,10 +730,12 @@ msgid "Stored timespans" msgstr "Stored timespans" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "System Load" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP Connections" @@ -729,7 +751,7 @@ msgstr "TTL for network packets" msgid "TTL for ping packets" msgstr "TTL for ping packets" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Table" @@ -747,13 +769,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -825,7 +847,7 @@ msgid "" msgstr "" "The interface plugin collects traffic statistics on selected interfaces." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -851,7 +873,7 @@ msgstr "" 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -903,7 +925,7 @@ 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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -945,11 +967,12 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -985,6 +1008,7 @@ msgstr "Try to lookup fully qualified hostname" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1009,14 +1033,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock Plugin Configuration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1034,6 +1059,7 @@ msgid "Verbose monitoring" msgstr "Verbose monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1047,6 +1073,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1054,19 +1081,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "e.g. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "e.g. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 chars" diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index c8af36e1bd..603844f5b7 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/statistics.po @@ -1,27 +1,28 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2012-12-12 20:19+0200\n" +"PO-Revision-Date: 2019-03-02 12:57-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"Language-Team: \n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" -msgstr "" +msgstr "APC UPS" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 msgid "APCUPS Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento APCUPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Acción (objetivo)" @@ -29,22 +30,22 @@ msgstr "Acción (objetivo)" msgid "Add command for reading values" msgstr "Añadir comando para leer valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" -msgstr "Añadir regla" +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 máquinas separadas por espacio." +msgstr "Añadir múltiples hosts separados por espacio." #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 msgid "Add notification command" msgstr "Añadir comando de notificación" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" -msgstr "" +msgstr "Agregar número de usuarios conectados" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 msgid "Base Directory" @@ -56,15 +57,16 @@ msgstr "Monitorización básica" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 msgid "CPU Context Switches Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento de conmutadores de contexto de CPU" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" -msgstr "" +msgstr "Frecuencia de CPU" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 msgid "CPU Frequency Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento de frecuencia de la CPU" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 msgid "CPU Plugin Configuration" @@ -86,7 +88,7 @@ msgstr "Almacenar datos recogidos para" msgid "Cache flush interval" msgstr "Intervalo de limpieza del caché" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Cadena" @@ -100,7 +102,7 @@ msgstr "Rutas" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 msgid "CollectTopology" -msgstr "Topología" +msgstr "CollectTopology" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 msgid "Collectd Settings" @@ -112,27 +114,30 @@ msgid "" "different plugins. On this page you can change general settings for the " "collectd daemon." msgstr "" -"Collectd is un demonio para la recolección de datos desde varias fuentes a " +"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/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Seguimiento" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Configuración del seguimiento" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" -msgstr "" +msgstr "Conmutadores de contexto" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 msgid "DF Plugin Configuration" msgstr "Configuración del plugin DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -148,7 +153,7 @@ msgstr "Intervalo de recolección de datos" msgid "Datasets definition file" msgstr "Archivo de definición de conjunto de datos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Rango IP de destino" @@ -165,16 +170,18 @@ msgid "Disk Plugin Configuration" msgstr "Configuración del plugin Disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Espacio en disco ocupado" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Disco ocupado" #: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" -msgstr "Mostrar máquina »" +msgstr "Mostrar Host »" #: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" @@ -190,14 +197,14 @@ msgstr "Correo electrónico" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 msgid "Empty value = monitor all" -msgstr "" +msgstr "Valor vacío = monitorear todo" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 msgid "Enable" -msgstr "" +msgstr "Habilitar" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -210,35 +217,36 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" -msgstr "Activar este plugin" +msgstr "Habilitar este plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" -msgstr "" +msgstr "Entropy" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 msgid "Entropy Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento de Entropy" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38 msgid "Exec" @@ -253,8 +261,9 @@ msgid "Filter class monitoring" msgstr "Monitorización del filtro de clases" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" -msgstr "Cortafuegos" +msgstr "Firewall" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 msgid "Flush cache after" @@ -262,19 +271,19 @@ msgstr "Vaciar caché tras" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 msgid "Forwarding between listen and server addresses" -msgstr "Retransmitir entre las direcciones de escucha y servidor" +msgstr "Reenviar entre las direcciones de escucha y servidor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" -msgstr "" +msgstr "Recopilar estadísticas de compresión" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 msgid "General plugins" -msgstr "" +msgstr "Complementos generales" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" -msgstr "" +msgstr "Genera un gráfico separado para cada usuario registrado" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101 msgid "Graphs" @@ -302,7 +311,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -310,13 +319,13 @@ 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:88 +#: 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 msgid "Host" -msgstr "Máquina" +msgstr "Host" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 msgid "Hostname" @@ -334,7 +343,7 @@ msgstr "Configuración del plugin IRQ" msgid "Ignore source addresses" msgstr "Ignorar direcciones de origen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interfaz de entrada" @@ -343,10 +352,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuración del interfaz de plugins" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupciones" @@ -354,7 +365,7 @@ msgstr "Interrupciones" msgid "Interval for pings" msgstr "Intervalo entre pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuración del plugin Iptables" @@ -383,16 +394,19 @@ msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" 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 msgid "Maximum allowed connections" msgstr "Máximo número de conexiones" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memoria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Configuración del plugin Memoria" @@ -402,7 +416,7 @@ msgstr "Configuración del plugin Memoria" #: 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:120 +#: 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" msgstr "Monitorizar todos menos los especificados" @@ -411,13 +425,13 @@ msgstr "Monitorizar todos menos los especificados" 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:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" -msgstr "" +msgstr "Monitorear todos los sensores" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 msgid "Monitor device(s) / thermal zone(s)" -msgstr "" +msgstr "Dispositivo(s) de monitoreo / zona(s) térmica(es)" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 msgid "Monitor devices" @@ -433,7 +447,7 @@ msgstr "Monitorizar tipos de sistema de archivos" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 msgid "Monitor host" -msgstr "" +msgstr "Monitor de host" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 msgid "Monitor hosts" @@ -467,13 +481,14 @@ msgstr "Monitorizar puertos remotos" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" -msgstr "" +msgstr "Nombre" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Enlace de red" @@ -493,7 +508,7 @@ msgstr "Configuración del plugin \"Red\"" msgid "Network plugins" msgstr "Plugins de red" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocolo de red" @@ -502,12 +517,16 @@ 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 "" +"Nota: como las páginas son representadas por el usuario 'nobody', los " +"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 msgid "Number of threads for data collection" msgstr "Número de hilos para recolección de datos" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -520,22 +539,23 @@ msgid "Only create average RRAs" msgstr "Crear sólo RRAs medias" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" -msgstr "" +msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento \"OpenVPN\"" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" -msgstr "" +msgstr "Archivos de estado de OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interfaz de salida" @@ -544,6 +564,7 @@ msgid "Output plugins" msgstr "Plugins de salida" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -557,9 +578,10 @@ msgstr "Puerto" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 msgid "Port for apcupsd communication" -msgstr "" +msgstr "Puerto para comunicación apcupsd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Procesos" @@ -572,6 +594,7 @@ msgid "Processes to monitor separated by space" msgstr "Procesos a monitorizar (separados por espacios)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Procesador" @@ -606,7 +629,7 @@ 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 msgid "Script" -msgstr "Guión" +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 @@ -618,21 +641,22 @@ msgstr "Guión" msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" -msgstr "" +msgstr "Lista de sensores" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" -msgstr "" +msgstr "Sensors" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" -msgstr "" +msgstr "Configuración del plugin \"Sensors\"" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 msgid "Server host" -msgstr "Máquina servidor" +msgstr "Host servidor" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 msgid "Server port" @@ -640,7 +664,7 @@ msgstr "Puerto servidor" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76 msgid "Setup" -msgstr "" +msgstr "Configuración" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 msgid "Shaping class monitoring" @@ -648,7 +672,7 @@ msgstr "Monitorización de la clase shaping" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 msgid "Show max values instead of averages" -msgstr "" +msgstr "Mostrar valores máximos en lugar de promedios" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 msgid "Socket file" @@ -662,7 +686,7 @@ msgstr "Grupo socket" msgid "Socket permissions" msgstr "Permisos para socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Rango de direcciones IP origen" @@ -679,12 +703,13 @@ 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/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" -msgstr "" +msgstr "Splash Leases" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 msgid "Splash Leases Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento \"Splash Leases\"" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73 #: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 @@ -709,10 +734,12 @@ msgid "Stored timespans" msgstr "Intervalos almacenados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Carga del sistema" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Conexiones TCP" @@ -728,7 +755,7 @@ msgstr "TTL para paquetes de red" msgid "TTL for ping packets" msgstr "TTL para paquetes de ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabla" @@ -750,13 +777,13 @@ 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:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -818,6 +845,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua: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:6 msgid "" @@ -834,12 +862,12 @@ msgstr "" "El plugin \"Interface\" recoge estadísticas de tráfico en las interfaces " "seleccionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -"El plugin \"Iptables\" monitoriza las reglas seleccionadas del cortafuegos y " +"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:6 @@ -847,8 +875,8 @@ msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -"El plugin IRQ monitorizará las activaciones por segundo de cada interrupción " -"elegida. Si no se selecciona ninguna se monitorizarán todas." +"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 msgid "" @@ -863,7 +891,7 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "El plugin \"memoria\" recoge estadísticas sobre el uso de memoria." @@ -916,7 +944,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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -958,17 +986,18 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" -msgstr "" +msgstr "Thermal" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 msgid "Thermal Plugin Configuration" -msgstr "" +msgstr "Configuración del plugin Thermal" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 msgid "This plugin collects statistics about the processor context switches." @@ -999,6 +1028,7 @@ msgstr "Intenta resolver el nombre de máquina cualificado" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "SAI" @@ -1012,7 +1042,7 @@ msgstr "Nombre del SAI en el formato de NUT sai@máquina" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 msgid "URL" -msgstr "" +msgstr "URL" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57 msgid "UnixSock" @@ -1023,14 +1053,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuración del plugin \"UnixSock\"" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" -msgstr "" +msgstr "Tiempo activo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1048,8 +1079,9 @@ msgid "Verbose monitoring" msgstr "Monitorización detallada" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" -msgstr "Red inalámbrica" +msgstr "WiFi" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 msgid "Wireless iwinfo Plugin Configuration" @@ -1061,26 +1093,27 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" -msgstr "" +msgstr "cUrl" #: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "p.e. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "p.e. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "16 caracteres máximo" diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index de88548654..0534a2668d 100644 --- a/applications/luci-app-statistics/po/fr/statistics.po +++ b/applications/luci-app-statistics/po/fr/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.4\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -21,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Action (cible)" @@ -29,7 +30,7 @@ msgstr "Action (cible)" 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:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Ajouter une règle à surveiller" @@ -42,7 +43,7 @@ msgstr "" msgid "Add notification command" msgstr "Ajoute une commande de notification" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -86,7 +88,7 @@ msgstr "Mettre en cache les données collectées pendant" msgid "Cache flush interval" msgstr "Intervalle de vidange du cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Chaîne" @@ -117,14 +119,16 @@ msgstr "" "paramètres généraux de ce démon collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "Configuration du greffon DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -148,7 +153,7 @@ msgstr "Période de récupération des données" 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:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "plage réseau de destination" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Configuration du greffon Disque" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Utilisation de l'espace-disque" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Espace-disque" @@ -197,7 +204,7 @@ 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:18 +#: 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 @@ -210,29 +217,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Activer ce greffon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Surveillance des filtres" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Pare-feu" @@ -264,7 +273,7 @@ msgstr "Vidanger le cache après" 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +281,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -304,7 +313,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +321,7 @@ 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -336,7 +345,7 @@ msgstr "Configuration du greffon IRQ" msgid "Ignore source addresses" msgstr "Ignorer les adresses-source" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interface entrante" @@ -345,10 +354,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuration du greffon des Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interruptions" @@ -356,7 +367,7 @@ msgstr "Interruptions" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuration du greffon IPtables" @@ -391,10 +402,11 @@ msgid "Maximum allowed connections" msgstr "Nb de Connexions autorisées au maximum" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -404,7 +416,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -413,7 +425,7 @@ msgstr "" 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:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -471,11 +483,12 @@ msgstr "Surveiller les ports destinataires" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -495,7 +508,7 @@ msgstr "Configuration du greffon réseau" msgid "Network plugins" msgstr "Greffons liés au réseau" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocole réseau" @@ -510,6 +523,7 @@ msgid "Number of threads for data collection" msgstr "Nombre de fils pour la récupération des données" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -522,22 +536,23 @@ msgid "Only create average RRAs" msgstr "Créer seulement des RRAs moyens" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interface sortante" @@ -546,6 +561,7 @@ msgid "Output plugins" msgstr "Greffons liés aux résultats" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -562,6 +578,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processus" @@ -574,6 +591,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processeur" @@ -620,15 +638,16 @@ msgstr "" msgid "Seconds" msgstr "Secondes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -664,7 +683,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "plage réseau source" @@ -681,6 +700,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -711,10 +731,12 @@ msgid "Stored timespans" msgstr "Durée de la période enregistrée" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Charge-système" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Connexions TCP" @@ -730,7 +752,7 @@ msgstr "TTL des paquets-réseau" msgid "TTL for ping packets" msgstr "TTL des paquets ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Table" @@ -748,13 +770,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -827,7 +849,7 @@ 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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -857,7 +879,7 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -911,7 +933,7 @@ 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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -951,11 +973,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -992,6 +1015,7 @@ msgstr "Tente de récupérer des noms d'hôtes complètement qualifiés" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1016,14 +1040,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuration du greffon de socket Unix" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1041,6 +1066,7 @@ msgid "Verbose monitoring" msgstr "Surveillance verbeuse" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Sans-fil" @@ -1054,6 +1080,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1061,19 +1088,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "p.ex. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "p.ex. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "Max. 16 caractères" diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index d841795f93..8d1ed3614d 100644 --- a/applications/luci-app-statistics/po/he/statistics.po +++ b/applications/luci-app-statistics/po/he/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -21,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -29,7 +30,7 @@ msgstr "" msgid "Add command for reading values" msgstr "הוסף פקודה לקריאת נתונים" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -42,7 +43,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -86,7 +88,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -114,14 +116,16 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -130,6 +134,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -145,7 +150,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -162,10 +167,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -194,7 +201,7 @@ 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:18 +#: 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 @@ -207,29 +214,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -250,6 +258,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -261,7 +270,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -269,7 +278,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -295,13 +304,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -325,7 +334,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -334,10 +343,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -345,7 +356,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -380,10 +391,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -393,7 +405,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -402,7 +414,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -460,11 +472,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -484,7 +497,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -499,6 +512,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -511,22 +525,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -535,6 +550,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -551,6 +567,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -563,6 +580,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -609,15 +627,16 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -653,7 +672,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -670,6 +689,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -700,10 +720,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -719,7 +741,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -737,13 +759,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -800,7 +822,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -822,7 +844,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -860,7 +882,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -898,11 +920,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -935,6 +958,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -959,14 +983,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -984,6 +1009,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -997,6 +1023,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1004,19 +1031,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index 4288e99821..d93b30efa5 100644 --- a/applications/luci-app-statistics/po/hu/statistics.po +++ b/applications/luci-app-statistics/po/hu/statistics.po @@ -12,6 +12,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -19,7 +20,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Tevékenység (cél)" @@ -27,7 +28,7 @@ msgstr "Tevékenység (cél)" msgid "Add command for reading values" msgstr "Érték olvasására szolgáló parancs hozzáadása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Szabály hozzáadása" @@ -40,7 +41,7 @@ msgstr "" msgid "Add notification command" msgstr "Értesítési parancs hozzáadása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -57,6 +58,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -84,7 +86,7 @@ msgstr "" msgid "Cache flush interval" msgstr "Gyorsítótár ürítési időköz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Lánc" @@ -115,14 +117,16 @@ msgstr "" "collectd démon általános beállításait." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -131,6 +135,7 @@ msgid "DF Plugin Configuration" msgstr "DF bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -146,7 +151,7 @@ msgstr "Adatgyűjtési időszak" msgid "Datasets definition file" msgstr "Adatkészlet leíró fálj" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Cél IP tartomány" @@ -163,10 +168,12 @@ msgid "Disk Plugin Configuration" msgstr "Lemez bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Felhasznált lemezterület" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Lemezhasználat" @@ -195,7 +202,7 @@ 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:18 +#: 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 @@ -208,29 +215,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Bővítmény engedélyezése" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -251,6 +259,7 @@ msgid "Filter class monitoring" msgstr "Szűrő osztály figyelése" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Tűzfal" @@ -262,7 +271,7 @@ msgstr "Gyorsítótár ürítése ezután:" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -270,7 +279,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -302,7 +311,7 @@ msgstr "" "amikor bizonyos küszbé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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -310,7 +319,7 @@ msgstr "" "Itt addhatók meg különböző feltételek, amelyek alapján a megfigyelt iptables " "szabályok kiválasztásra kerülnek." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -335,7 +344,7 @@ msgstr "IRQ bővítmény beállítása" 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:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Bejövő interfész" @@ -344,10 +353,12 @@ msgid "Interface Plugin Configuration" msgstr "Interfész bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfészek" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Megszakítások" @@ -355,7 +366,7 @@ msgstr "Megszakítások" msgid "Interval for pings" msgstr "Ping-ek közötti idő" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables bővítmény beállítása" @@ -392,10 +403,11 @@ msgid "Maximum allowed connections" msgstr "Megengedett kapcsolatok maximális száma" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Memória bővítmény beállítása" @@ -405,7 +417,7 @@ msgstr "Memória bővítmény beállítása" #: 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:120 +#: 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" msgstr "" @@ -414,7 +426,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -472,11 +484,12 @@ msgstr "Távoli portok figyelése" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -496,7 +509,7 @@ msgstr "Hálózat bővítmény beállítása" msgid "Network plugins" msgstr "Hálózati bővítmények" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Hálózati protokoll" @@ -511,6 +524,7 @@ msgid "Number of threads for data collection" msgstr "Az adatgyűjtő szálak száma" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -523,22 +537,23 @@ msgid "Only create average RRAs" msgstr "Csak átlag RRA-k létrehozása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Lehetőségek" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Kimenő interfész" @@ -547,6 +562,7 @@ msgid "Output plugins" msgstr "Kimeneti bővítmények" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -563,6 +579,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Folyamatok" @@ -575,6 +592,7 @@ msgid "Processes to monitor separated by space" msgstr "Figyelendő folyamatok szóközzel elválasztva" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processzor" @@ -621,15 +639,16 @@ msgstr "Parancsfájl" msgid "Seconds" msgstr "másodperc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -665,7 +684,7 @@ msgstr "Socket csoport" msgid "Socket permissions" msgstr "Socket jogosultságok" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Forrás IP tartomány" @@ -686,6 +705,7 @@ msgstr "" "gyűjteni." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -716,10 +736,12 @@ msgid "Stored timespans" msgstr "Tárolt időszakok" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Rendszerterhelés" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP kapcsolatok" @@ -735,7 +757,7 @@ msgstr "TTL a hálózati csomagokhoz" msgid "TTL for ping packets" msgstr "TTL a ping csomagokhoz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Táblázat" @@ -755,13 +777,13 @@ msgstr "" "Az OLSRd bővítmény a összekapcsolt hálózatokról olvas információkat az OLSRd " "txttinfo bővítményén keresztül." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -838,7 +860,7 @@ msgstr "" "Az interface bővítmény forgalmi statisztikákat gyűjt a kiválasztott " "interfészekről." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -863,7 +885,7 @@ msgid "The load plugin collects statistics about the general system load." msgstr "" "A load bővítmény az általános rendszzer terhelésről gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "A memória bővítmény a memórahasználatról gyűjt információkat." @@ -903,7 +925,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -945,11 +967,12 @@ msgstr "" "A unixsock bővítmény létrehoz egy unix socket-et melyen keresztül " "kiolvashatók az összegyűjtött adatok egy futó collectd-ből. " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -984,6 +1007,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1008,14 +1032,15 @@ msgid "Unixsock Plugin Configuration" msgstr "UnixSock bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1033,6 +1058,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Vezeték nélküli" @@ -1046,6 +1072,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1053,19 +1080,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "pl. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "pl. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "pl. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 karakter" diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index 1faf714662..ddabf112f0 100644 --- a/applications/luci-app-statistics/po/it/statistics.po +++ b/applications/luci-app-statistics/po/it/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -21,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Azione (destinazione)" @@ -29,7 +30,7 @@ msgstr "Azione (destinazione)" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -42,7 +43,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -86,7 +88,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -117,14 +119,16 @@ msgstr "" "del demone collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -148,7 +153,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -197,7 +204,7 @@ 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:18 +#: 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 @@ -210,29 +217,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Abilita questo plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -264,7 +273,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +281,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -303,13 +312,13 @@ 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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -333,7 +342,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -342,10 +351,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfacce" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -353,7 +364,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -390,10 +401,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -403,7 +415,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -412,7 +424,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -470,11 +482,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -494,7 +507,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -509,6 +522,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -521,22 +535,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -545,6 +560,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -561,6 +577,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -573,6 +590,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -619,15 +637,16 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -663,7 +682,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -680,6 +699,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -710,10 +730,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -729,7 +751,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabella" @@ -747,13 +769,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -810,7 +832,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -832,7 +854,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -870,7 +892,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -908,11 +930,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -945,6 +968,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -969,14 +993,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -994,6 +1019,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -1007,6 +1033,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1014,19 +1041,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index fcc59142fa..f6d33b8337 100644 --- a/applications/luci-app-statistics/po/ja/statistics.po +++ b/applications/luci-app-statistics/po/ja/statistics.po @@ -14,6 +14,7 @@ msgstr "" "Language-Team: \n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -21,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "アクション(対象)" @@ -29,7 +30,7 @@ msgstr "アクション(対象)" msgid "Add command for reading values" msgstr "値読み取りコマンドの追加" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "マッチング規則の追加" @@ -42,7 +43,7 @@ msgstr "スペースで区切られた複数のホストを追加します。" msgid "Add notification command" msgstr "通知コマンドの追加" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "接続ユーザー数の総計" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "CPU 周波数" @@ -86,7 +88,7 @@ msgstr "収集されたデータをキャッシュする" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "チェイン" @@ -116,14 +118,16 @@ msgstr "" "モンです。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack プラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -132,6 +136,7 @@ msgid "DF Plugin Configuration" msgstr "DF プラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -147,7 +152,7 @@ msgstr "データの収集間隔" msgid "Datasets definition file" msgstr "データベース定義ファイル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "対象IPの範囲" @@ -164,10 +169,12 @@ msgid "Disk Plugin Configuration" msgstr "ディスクプラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "ディスクスペース使用量" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "ディスクの使用" @@ -196,7 +203,7 @@ 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:18 +#: 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 @@ -209,29 +216,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "プラグイン設定を有効にする" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "エントロピー" @@ -252,6 +260,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "ファイアウォール" @@ -263,7 +272,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -271,7 +280,7 @@ msgstr "" msgid "General plugins" msgstr "一般プラグイン" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "ログインユーザーごとの分離されたグラフを生成します。" @@ -302,7 +311,7 @@ msgstr "" "定することができます。呼び出しにつながる値は、呼び出されたプログラムの標準入" "力に送られます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -310,7 +319,7 @@ msgstr "" "ここでは、モニターするiptable規則が選択される様々な基準を設定することができま" "す。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: 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キーを押したままにします。" @@ -334,7 +343,7 @@ msgstr "IRQ プラグイン設定" msgid "Ignore source addresses" msgstr "無視するアクセス元アドレス" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "着信インターフェース" @@ -343,10 +352,12 @@ msgid "Interface Plugin Configuration" msgstr "インターフェース プラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "インターフェース" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "割込み" @@ -354,7 +365,7 @@ msgstr "割込み" msgid "Interval for pings" msgstr "ping間隔" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables プラグイン設定" @@ -392,10 +403,11 @@ msgid "Maximum allowed connections" msgstr "許可された最大接続数" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "メモリー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "メモリー プラグイン設定" @@ -405,7 +417,7 @@ msgstr "メモリー プラグイン設定" #: 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:120 +#: 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" msgstr "設定値以外の全てのインターフェースをモニターする" @@ -414,7 +426,7 @@ msgstr "設定値以外の全てのインターフェースをモニターする msgid "Monitor all local listen ports" msgstr "ローカルの全待ち受けポートをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "全てのセンサーをモニターする" @@ -472,11 +484,12 @@ msgstr "リモートのポートをモニターする" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "ルール名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -496,7 +509,7 @@ msgstr "ネットワークプラグイン設定" msgid "Network plugins" msgstr "ネットワークプラグイン" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "ネットワークプロトコル" @@ -514,6 +527,7 @@ msgid "Number of threads for data collection" msgstr "データ収集用スレッド数" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -526,22 +540,23 @@ msgid "Only create average RRAs" msgstr "平均値のRRAsのみ作成する" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "OpenVPN ステータスファイル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "送信インターフェース" @@ -550,6 +565,7 @@ msgid "Output plugins" msgstr "出力プラグイン" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -566,6 +582,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "プロセス" @@ -578,6 +595,7 @@ msgid "Processes to monitor separated by space" msgstr "スペースで区切られた、モニターするプロセスです。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "プロセッサー" @@ -624,15 +642,16 @@ msgstr "スクリプト" msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "センサー一覧" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "センサー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "センサー プラグイン設定" @@ -668,7 +687,7 @@ msgstr "ソケット グループ" msgid "Socket permissions" msgstr "ソケット パーミッション" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "ソースIPの範囲" @@ -685,6 +704,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -715,10 +735,12 @@ msgid "Stored timespans" msgstr "保存する期間の範囲" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "システム負荷" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP 接続" @@ -734,7 +756,7 @@ msgstr "ネットワークパケットのTTL" msgid "TTL for ping packets" msgstr "pingパケットのTTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "テーブル" @@ -752,14 +774,14 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -833,7 +855,7 @@ msgstr "" "インターフェースプラグインは、選択したインターフェースのトラフィックの統計情" "報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -860,7 +882,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "負荷プラグインは、システム負荷の統計情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "メモリー プラグインは、メモリー使用についての統計を収集します。" @@ -913,7 +935,7 @@ msgstr "" "時的なディレクトリによってメモリー消費量が非常に高くなります。これはデバイス" "を使用不能にする可能性があります!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -960,11 +982,12 @@ msgstr "" "unixsock プラグインは、実行中のcollectd インスタンスから収集データの読み取り" "に使用可能なUNIX ソケットを作成します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "稼働時間 プラグインは、システムの稼働時間についての統計を収集します。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "サーマル" @@ -1002,6 +1025,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -1026,14 +1050,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock プラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "稼働時間" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "稼働時間プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1051,6 +1076,7 @@ msgid "Verbose monitoring" msgstr "詳細モニタリング" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "無線" @@ -1066,6 +1092,7 @@ msgstr "" "効にできます。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1073,19 +1100,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "例: br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "例: br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "例: reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "最大16文字" diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index 9bef9db2ae..728fc6a549 100644 --- a/applications/luci-app-statistics/po/ms/statistics.po +++ b/applications/luci-app-statistics/po/ms/statistics.po @@ -11,6 +11,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -18,7 +19,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -26,7 +27,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -39,7 +40,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -56,6 +57,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -83,7 +85,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -111,14 +113,16 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -127,6 +131,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -142,7 +147,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -159,10 +164,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -191,7 +198,7 @@ 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:18 +#: 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 @@ -204,29 +211,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -247,6 +255,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -258,7 +267,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -266,7 +275,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -292,13 +301,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -322,7 +331,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -331,10 +340,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -342,7 +353,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -377,10 +388,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -390,7 +402,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -399,7 +411,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -457,11 +469,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -481,7 +494,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -496,6 +509,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -508,22 +522,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -532,6 +547,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -548,6 +564,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -560,6 +577,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -606,15 +624,16 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -650,7 +669,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -667,6 +686,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -697,10 +717,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -716,7 +738,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -734,13 +756,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -797,7 +819,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -819,7 +841,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -857,7 +879,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -895,11 +917,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -932,6 +955,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -956,14 +980,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -981,6 +1006,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -994,6 +1020,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1001,19 +1028,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/no/statistics.po b/applications/luci-app-statistics/po/no/statistics.po index cb2b557d0d..f13714ed0e 100644 --- a/applications/luci-app-statistics/po/no/statistics.po +++ b/applications/luci-app-statistics/po/no/statistics.po @@ -5,6 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -12,7 +13,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Handling (mål)" @@ -20,7 +21,7 @@ msgstr "Handling (mål)" 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:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Legg til matchende regel" @@ -33,7 +34,7 @@ msgstr "Legg til flere verter adskilt med mellomrom." msgid "Add notification command" msgstr "Legg til varsling kommando" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -50,6 +51,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -77,7 +79,7 @@ msgstr "Hurtigbufre innsamlede data for" msgid "Cache flush interval" msgstr "Intervall for tømming av hurtigbuffer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Lenke" @@ -108,14 +110,16 @@ msgstr "" "collectd daemon." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -124,6 +128,7 @@ msgid "DF Plugin Configuration" msgstr "DF plugin konfigurasjon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -139,7 +144,7 @@ msgstr "Datainnsamling intervall" msgid "Datasets definition file" msgstr "Datasett definisjonsfil" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Destinasjon ip område" @@ -156,10 +161,12 @@ msgid "Disk Plugin Configuration" msgstr "Disk plugin konfigurasjon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Disk Forbruk" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Disk Anvendelse" @@ -188,7 +195,7 @@ 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:18 +#: 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 @@ -201,29 +208,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Aktiver denne plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -244,6 +252,7 @@ msgid "Filter class monitoring" msgstr "Filter class overvåking" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Brannmur" @@ -255,7 +264,7 @@ msgstr "Tømme hurtigbufferen etter" 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -263,7 +272,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -294,13 +303,13 @@ 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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -324,7 +333,7 @@ msgstr "IRQ plugin konfigurasjon" msgid "Ignore source addresses" msgstr "Ignorer kilde adresser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Innkommende grensesnitt" @@ -333,10 +342,12 @@ msgid "Interface Plugin Configuration" msgstr "Grensesnitt plugin konfigurasjon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Grensesnitt" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Avbrudd" @@ -344,7 +355,7 @@ msgstr "Avbrudd" msgid "Interval for pings" msgstr "Intervall ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptable plugin konfigurasjon" @@ -379,10 +390,11 @@ msgid "Maximum allowed connections" msgstr "Maksimum tillatte tilkoblinger" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -392,7 +404,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -401,7 +413,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "Overvåk alle lokale lyttende porter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -459,11 +471,12 @@ msgstr "Overvåk eksterne porter" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Nettlink" @@ -483,7 +496,7 @@ msgstr "Nettverks plugin konfigurasjon" msgid "Network plugins" msgstr "Nettverks plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Nettverks protokoll" @@ -498,6 +511,7 @@ msgid "Number of threads for data collection" msgstr "Antall tråder for datainnsamling" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -510,22 +524,23 @@ msgid "Only create average RRAs" msgstr "Lag kun gjennomsnittlige RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Utgående grensesnitt" @@ -534,6 +549,7 @@ msgid "Output plugins" msgstr "Utdata Plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -550,6 +566,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Prosesser" @@ -562,6 +579,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Prosessor" @@ -608,15 +626,16 @@ msgstr "" msgid "Seconds" msgstr "Sekunder" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -652,7 +671,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Kilde ip område" @@ -669,6 +688,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -699,10 +719,12 @@ msgid "Stored timespans" msgstr "Lagrede tidsperioder" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "System Belastning" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP Forbindelser" @@ -718,7 +740,7 @@ msgstr "TTL for nettverkspakker" msgid "TTL for ping packets" msgstr "TTL for ping pakker" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabell" @@ -736,13 +758,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -813,7 +835,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -839,7 +861,7 @@ msgstr "" 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -891,7 +913,7 @@ 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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -933,11 +955,12 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -974,6 +997,7 @@ msgstr "Prøv å søk etter fullstendig vertsnavn" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -998,14 +1022,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock plugin konfigurasjon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1023,6 +1048,7 @@ msgid "Verbose monitoring" msgstr "Detaljert overvåking" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Trådløs" @@ -1036,6 +1062,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1043,19 +1070,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "f.eks. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "f.eks. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "maks. 16 tegn" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index 0ad820f9d1..4c362a265f 100644 --- a/applications/luci-app-statistics/po/pl/statistics.po +++ b/applications/luci-app-statistics/po/pl/statistics.po @@ -15,6 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -22,7 +23,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Akcja (cel)" @@ -30,7 +31,7 @@ msgstr "Akcja (cel)" msgid "Add command for reading values" msgstr "Dodaj polecenie do odczytywania wartości" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Dodaj pasującą regułę" @@ -43,7 +44,7 @@ msgstr "Dodaj wiele hostów rozdzielonych spacjami." msgid "Add notification command" msgstr "Dodaj komendę powiadamiającą" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -87,7 +89,7 @@ msgstr "Ciasteczka zbierane dla" msgid "Cache flush interval" msgstr "Odstępy czyszczenia cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Łańcuch" @@ -118,14 +120,16 @@ msgstr "" "collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Konfiguracja wtyczki Conntrack" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "Konfiguracja wtyczki DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -149,7 +154,7 @@ msgstr "Odstępy zbierania danych" msgid "Datasets definition file" msgstr "Zdefiniowany plik ustawień" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Zakres docelowych adresów IP" @@ -166,10 +171,12 @@ msgid "Disk Plugin Configuration" msgstr "Konfiguracja wtyczki dysk" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Zużycie przestrzeni dyskowej" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Użycie dysku" @@ -198,7 +205,7 @@ 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:18 +#: 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 @@ -211,29 +218,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Włącz tę wtyczkę" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -254,6 +262,7 @@ msgid "Filter class monitoring" msgstr "Monitorowanie filtra klas" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -265,7 +274,7 @@ msgstr "Opróżnić cache po" msgid "Forwarding between listen and server addresses" msgstr "Przekazać przez słuchacza na adres serwera" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -273,7 +282,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -304,7 +313,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +321,7 @@ 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -336,7 +345,7 @@ msgstr "Konfiguracja wtyczki IRQ" msgid "Ignore source addresses" msgstr "Ignoruj adresy źródłowe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interfejs przychodzący" @@ -345,10 +354,12 @@ msgid "Interface Plugin Configuration" msgstr "Konfiguracja wtyczki Interfejs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfejsy" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Przerwania" @@ -356,7 +367,7 @@ msgstr "Przerwania" msgid "Interval for pings" msgstr "Odstępy dla pingów" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Konfiguracja wtyczki iptables" @@ -393,10 +404,11 @@ msgid "Maximum allowed connections" msgstr "Maksymalna ilość połączeń" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Pamięć" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Konfiguracja wtyczki Pamięć" @@ -406,7 +418,7 @@ msgstr "Konfiguracja wtyczki Pamięć" #: 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:120 +#: 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" msgstr "Monitoruj wszystko oprócz podanych" @@ -415,7 +427,7 @@ msgstr "Monitoruj wszystko oprócz podanych" msgid "Monitor all local listen ports" msgstr "Monitoruj wszystkie lokalne otwarte porty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -473,11 +485,12 @@ msgstr "Monitoruj porty zdalne" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -497,7 +510,7 @@ msgstr "Konfiguracja wtyczki Sieć" msgid "Network plugins" msgstr "Wtyczki sieciowe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protokoły sieciowe" @@ -512,6 +525,7 @@ msgid "Number of threads for data collection" msgstr "Liczba wątków do zbierania danych" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -524,22 +538,23 @@ msgid "Only create average RRAs" msgstr "Twórz tylko średnie archiwa RRA" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interfejs wychodzący" @@ -548,6 +563,7 @@ msgid "Output plugins" msgstr "Pluginy wyjścia" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -564,6 +580,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Procesy" @@ -576,6 +593,7 @@ msgid "Processes to monitor separated by space" msgstr "Monitorowane procesy oddzielone spacją" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Procesor" @@ -622,15 +640,16 @@ msgstr "Skrypt" msgid "Seconds" msgstr "Sekundy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -666,7 +685,7 @@ msgstr "Gniazdo Grupy" msgid "Socket permissions" msgstr "Uprawnienia Gniazda" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Zakres źródłowych adresów ip" @@ -683,6 +702,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Określa jakie informacje zbierać o globalnej topologii." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -714,10 +734,12 @@ msgid "Stored timespans" msgstr "Przechowywane okresy czasu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Obciążenie systemu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Połączenia TCP" @@ -733,7 +755,7 @@ msgstr "TTL dla pakietów sieciowych" msgid "TTL for ping packets" msgstr "TTL dla pakietów ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabela" @@ -753,13 +775,13 @@ msgstr "" "Wtyczka OLSRd odczytuje informacje o sieciach mesh z wtyczki txtinfo dla " "OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -830,7 +852,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Wtyczka \"interface\" zbiera statystyki z wybranych interfejsów." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -858,7 +880,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "Wtyczka \"load\" zbiera statystyki o ogólnych obciążeniu systemu." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "Wtyczka \"memory\" zbiera statystyki dotyczące wykorzystania pamięci." @@ -911,7 +933,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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -953,11 +975,12 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -992,6 +1015,7 @@ msgstr "Spróbuj znaleźć pełną nazwę hosta" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -1016,14 +1040,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Konfiguracja wtyczki UnixSock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1041,6 +1066,7 @@ msgid "Verbose monitoring" msgstr "Pełny monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "WiFi" @@ -1054,6 +1080,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1061,19 +1088,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "np. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "np. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 znaków" diff --git a/applications/luci-app-statistics/po/pt-br/statistics.po b/applications/luci-app-statistics/po/pt-br/statistics.po index b5e5d5a3c5..10cc1fb8a4 100644 --- a/applications/luci-app-statistics/po/pt-br/statistics.po +++ b/applications/luci-app-statistics/po/pt-br/statistics.po @@ -14,6 +14,7 @@ msgstr "" "Language-Team: \n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "Nobreak APC" @@ -21,7 +22,7 @@ msgstr "Nobreak APC" msgid "APCUPS Plugin Configuration" msgstr "Configuração do Módulo APCUPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Ação (destino)" @@ -29,7 +30,7 @@ msgstr "Ação (destino)" msgid "Add command for reading values" msgstr "Adicionar comando para leitura de valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Adicionar regra" @@ -42,7 +43,7 @@ msgstr "Adicione múltiplos equipamentos separados por espaço." msgid "Add notification command" msgstr "Adicionar o comando de notificação" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "Numero agregado de usuários conectados" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "Configuração do Módulo de Troca de Contexto da CPU" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "Frequência da CPU" @@ -86,7 +88,7 @@ msgstr "Cache dos dados coletados" msgid "Cache flush interval" msgstr "Intervalo de limpeza do cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Cadeia" @@ -117,14 +119,16 @@ msgstr "" "do daemon collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Configuração do Plugin do Conntrack" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "Trocas de Contexto" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "Configuração do plugin DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -148,7 +153,7 @@ msgstr "Intervalo da coleta de dados" msgid "Datasets definition file" msgstr "Arquivo com a definição de dados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Faixa IP de destino" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Configuração do plugin Disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Utilização de espaço em disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Utilização do Disco" @@ -197,7 +204,7 @@ 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:18 +#: 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 @@ -210,29 +217,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Habilitar este plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "Entropia" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Monitoramento das Classes de Filtros" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -265,7 +274,7 @@ 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "Obter estatísticas sobre a compressão" @@ -273,7 +282,7 @@ msgstr "Obter estatísticas sobre a compressão" msgid "General plugins" msgstr "Plugins Gerais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "Gerar um gráfico separado para cada usuário conectado" @@ -304,7 +313,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +321,7 @@ 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:88 +#: 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. " @@ -337,7 +346,7 @@ msgstr "Configuração do plugin IRQ" msgid "Ignore source addresses" msgstr "Ignorar endereços de origem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interface de entrada" @@ -346,10 +355,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuração do plugin Interface" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupções" @@ -357,7 +368,7 @@ msgstr "Interrupções" msgid "Interval for pings" msgstr "Intervalo para pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuração do plugin Iptables" @@ -396,10 +407,11 @@ msgid "Maximum allowed connections" msgstr "Máximo de conexões permitidas" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Configuração do Plugin da Memória" @@ -409,7 +421,7 @@ msgstr "Configuração do Plugin da Memória" #: 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:120 +#: 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" msgstr "Monitore tudo exceto se especificado" @@ -418,7 +430,7 @@ msgstr "Monitore tudo exceto se especificado" msgid "Monitor all local listen ports" msgstr "Monitorar todas as portas locais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "Monitorar todas os sensores" @@ -476,11 +488,12 @@ msgstr "Monitorar portas remotas" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -500,7 +513,7 @@ msgstr "Configuração do plugin Rede" msgid "Network plugins" msgstr "Plugins de rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocolo de rede" @@ -518,6 +531,7 @@ msgid "Number of threads for data collection" msgstr "Número de threads para o coletor de dados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -530,22 +544,23 @@ msgid "Only create average RRAs" msgstr "Somente criar RRAs de média" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "Configuração do Plugin do OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "Arquivos de estado do OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interface de saída" @@ -554,6 +569,7 @@ msgid "Output plugins" msgstr "Plugins de saída" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -570,6 +586,7 @@ msgid "Port for apcupsd communication" msgstr "Porta para comunicação do apcupsd" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processos" @@ -582,6 +599,7 @@ msgid "Processes to monitor separated by space" msgstr "Processos para monitorar, separado por espaços" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processador" @@ -628,15 +646,16 @@ msgstr "Script" msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "Lista de sensores" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "Sensores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "Configuração do Plugin de Sensores" @@ -672,7 +691,7 @@ msgstr "Grupo do socket" msgid "Socket permissions" msgstr "Permissões do socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Faixa de IP de origem" @@ -689,6 +708,7 @@ 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/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "Concessões do Splash" @@ -719,10 +739,12 @@ msgid "Stored timespans" msgstr "Intervalos armazenados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Carga do Sistema" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Conexões TCP" @@ -738,7 +760,7 @@ msgstr "TTL para os pacotes de rede" msgid "TTL for ping packets" msgstr "TTL para os pacotes do ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabela" @@ -758,14 +780,14 @@ 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:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -841,7 +863,7 @@ 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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -870,7 +892,7 @@ msgstr "" 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua: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." @@ -923,7 +945,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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -975,13 +997,14 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua: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/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "Térmico" @@ -1021,6 +1044,7 @@ msgstr "Tentar encontrar o nome completo do equipamento (FQDN)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS (no-breaks)" @@ -1045,14 +1069,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuração do plugin Unixsock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "Tempo de atividade" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua: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:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "Use um esquema de nomeação melhorado" @@ -1070,6 +1095,7 @@ msgid "Verbose monitoring" msgstr "Monitoramento no modo detalhado" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Rede Sem Fio (Wireless)" @@ -1085,6 +1111,7 @@ msgstr "" "estatísticas." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1092,19 +1119,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "ex: br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "ex: br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "máx. 16 caracteres" diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index dc033863ce..9671e17917 100644 --- a/applications/luci-app-statistics/po/pt/statistics.po +++ b/applications/luci-app-statistics/po/pt/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -21,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Ação (destino)" @@ -29,7 +30,7 @@ msgstr "Ação (destino)" msgid "Add command for reading values" msgstr "Adicionar comando para leitura de valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Adicionar regra" @@ -42,7 +43,7 @@ msgstr "Adicionar hosts múltiplos separados por espaço." msgid "Add notification command" msgstr "Adicionar o comando de notificação" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -86,7 +88,7 @@ msgstr "Cache dos dados coletados" msgid "Cache flush interval" msgstr "Intervalo de limpeza do cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Cadeia" @@ -117,14 +119,16 @@ msgstr "" "do daemon collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "Configuração do plugin DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -148,7 +153,7 @@ msgstr "Intervalo da coleta de dados" msgid "Datasets definition file" msgstr "Arquivo com a definição de dados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "IP de destino" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Configuração do plugin Disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Utilização de espaço em disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Utilização do Disco" @@ -197,7 +204,7 @@ 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:18 +#: 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 @@ -210,29 +217,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Habilitar este plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Monitoramento das Classes de Filtros" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -264,7 +273,7 @@ msgstr "Limpar cache após" 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +281,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -303,7 +312,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -311,7 +320,7 @@ 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -335,7 +344,7 @@ msgstr "Configuração do plugin IRQ" msgid "Ignore source addresses" msgstr "Ignorar endereços de origem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interface de entrada" @@ -344,10 +353,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuração do plugin Interface" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupções" @@ -355,7 +366,7 @@ msgstr "Interrupções" msgid "Interval for pings" msgstr "Intervalo dos pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuração do plugin Iptables" @@ -392,10 +403,11 @@ msgid "Maximum allowed connections" msgstr "Máximo de conexões permitidas" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Configuração do Plugin de Memória" @@ -405,7 +417,7 @@ msgstr "Configuração do Plugin de Memória" #: 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:120 +#: 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" msgstr "Monitorizar tudo excepto os especificados" @@ -414,7 +426,7 @@ msgstr "Monitorizar tudo excepto os especificados" msgid "Monitor all local listen ports" msgstr "Monitorar todas as portas locais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -472,11 +484,12 @@ msgstr "Monitorar portas remotas" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -496,7 +509,7 @@ msgstr "Configuração do plugin Rede" msgid "Network plugins" msgstr "Plugins de rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocolo de rede" @@ -511,6 +524,7 @@ msgid "Number of threads for data collection" msgstr "Número de threads para o coletor de dados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -523,22 +537,23 @@ msgid "Only create average RRAs" msgstr "Somente criar RRAs de média" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interface de saída" @@ -547,6 +562,7 @@ msgid "Output plugins" msgstr "Plugins de saída" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -563,6 +579,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processos" @@ -575,6 +592,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processador" @@ -621,15 +639,16 @@ msgstr "" msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -665,7 +684,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "IP de origem" @@ -682,6 +701,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -712,10 +732,12 @@ msgid "Stored timespans" msgstr "Intervalos armazenados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Carga do Sistema" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Conexões TCP" @@ -731,7 +753,7 @@ msgstr "TTL para os pacotes de rede" msgid "TTL for ping packets" msgstr "TTL para os pacotes do ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabela" @@ -749,13 +771,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -829,7 +851,7 @@ 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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -856,7 +878,7 @@ msgstr "" 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -909,7 +931,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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -951,11 +973,12 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -992,6 +1015,7 @@ msgstr "Tentar encontrar o nome do host completo (FQDN)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1016,14 +1040,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuração do plugin Unixsock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1041,6 +1066,7 @@ msgid "Verbose monitoring" msgstr "Monitoramento no modo verbose" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1054,6 +1080,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1061,19 +1088,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "ex. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "ex. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 caract." diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index 371e887ac1..5e98c704d6 100644 --- a/applications/luci-app-statistics/po/ro/statistics.po +++ b/applications/luci-app-statistics/po/ro/statistics.po @@ -15,6 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.4\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -22,7 +23,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -30,7 +31,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -43,7 +44,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -87,7 +89,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -118,14 +120,16 @@ msgstr "" "Collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -149,7 +154,7 @@ msgstr "Intervalul de colectare date" msgid "Datasets definition file" msgstr "Fisierul de definitii dataseturi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -166,10 +171,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Utilizarea spatiului pe disc" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Utilizarea discului" @@ -198,7 +205,7 @@ 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:18 +#: 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 @@ -211,29 +218,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -254,6 +262,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -265,7 +274,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -273,7 +282,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -299,13 +308,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -329,7 +338,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -338,10 +347,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfete" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Intreruperi" @@ -349,7 +360,7 @@ msgstr "Intreruperi" msgid "Interval for pings" msgstr "Interval pentru ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -384,10 +395,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -397,7 +409,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -406,7 +418,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -464,11 +476,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Legatura de retea" @@ -488,7 +501,7 @@ msgstr "" msgid "Network plugins" msgstr "Pluginuri de retea" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -503,6 +516,7 @@ msgid "Number of threads for data collection" msgstr "Numarul de threaduri pentru colectarea datelor" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -515,22 +529,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -539,6 +554,7 @@ msgid "Output plugins" msgstr "Pluginuri de iesire" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -555,6 +571,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Procese" @@ -567,6 +584,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Procesor" @@ -613,15 +631,16 @@ msgstr "" msgid "Seconds" msgstr "Secunde" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -657,7 +676,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -674,6 +693,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -704,10 +724,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Incarcarea de sistem" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Conexiuni TCP" @@ -723,7 +745,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -741,13 +763,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -806,7 +828,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -828,7 +850,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -866,7 +888,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -904,11 +926,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -941,6 +964,7 @@ msgstr "Incearca sa rezolvi numele de domeniu complet" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -965,14 +989,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -990,6 +1015,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1003,6 +1029,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1010,19 +1037,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index 6e7f1b55fb..6e03404f72 100644 --- a/applications/luci-app-statistics/po/ru/statistics.po +++ b/applications/luci-app-statistics/po/ru/statistics.po @@ -16,6 +16,7 @@ msgstr "" "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "APC ИБП" @@ -23,7 +24,7 @@ msgstr "APC ИБП" msgid "APCUPS Plugin Configuration" msgstr "Настройка плагина «APCUPS»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Действие (цель)" @@ -31,7 +32,7 @@ msgstr "Действие (цель)" msgid "Add command for reading values" msgstr "Добавить команду для чтения значений" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Добавить правило выборки" @@ -44,7 +45,7 @@ msgstr "Добавить несколько хостов, разделённых msgid "Add notification command" msgstr "Добавить команду уведомления" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "Общее число подключенных пользователей" @@ -61,6 +62,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "Настройка плагина переключений контекста CPU" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "Частота CPU" @@ -88,7 +90,7 @@ msgstr "Кэшировать собранную статистику в тече msgid "Cache flush interval" msgstr "Интервал сброса кэша" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Цепочка" @@ -118,14 +120,16 @@ msgstr "" "плагинов. На этой странице вы можете изменить настройки collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Отслеживание подключений (Conntrack)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Настройка плагина «Conntrack»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "Переключения контекста" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "Настройка плагина «DF»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -149,7 +154,7 @@ msgstr "Интервал сбора данных" msgid "Datasets definition file" msgstr "Файл с определением набора данных" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Диапазон IP-адресов назначения" @@ -166,10 +171,12 @@ msgid "Disk Plugin Configuration" msgstr "Настройка плагина «Disk»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Использовано места на диске" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Использование диска" @@ -198,7 +205,7 @@ 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:18 +#: 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 @@ -211,29 +218,30 @@ msgstr "Включить" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Включить этот плагин" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "Энтропия" @@ -254,6 +262,7 @@ msgid "Filter class monitoring" msgstr "Мониторинг класса фильтров" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Межсетевой экран" @@ -265,7 +274,7 @@ msgstr "Сбросить кэш после" msgid "Forwarding between listen and server addresses" msgstr "Перенаправление между локальным адресом и адресом сервера" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "Сбор статистики сжатия" @@ -273,7 +282,7 @@ msgstr "Сбор статистики сжатия" msgid "General plugins" msgstr "Основные плагины" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "Создать отдельный график для каждого авторизованного пользователя" @@ -304,7 +313,7 @@ msgstr "" "значения достигнут определенного порога. Значения будут переданы на " "стандартный ввод вызванным программам." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +321,7 @@ msgstr "" "Здесь вы можете указать различные критерии, по которым будут выбраны правила " "для сбора статистики." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: 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, выберите несколько элементов или отмените " @@ -338,7 +347,7 @@ msgstr "Настройка плагина «IRQ»" msgid "Ignore source addresses" msgstr "Игнорировать исходящие адреса" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Входящий интерфейс" @@ -347,10 +356,12 @@ msgid "Interface Plugin Configuration" msgstr "Настройка плагина «Интерфейсы»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Интерфейсы" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Прерывания" @@ -358,7 +369,7 @@ msgstr "Прерывания" msgid "Interval for pings" msgstr "Интервал для ping-запросов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Настройка плагина «Iptables»" @@ -397,10 +408,11 @@ msgid "Maximum allowed connections" msgstr "Максимум разрешенных соединений" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Оперативная память (RAM)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Настройка плагина «Оперативная память (RAM)»" @@ -410,7 +422,7 @@ msgstr "Настройка плагина «Оперативная память #: 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:120 +#: 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" msgstr "Собирать статистику со всех кроме указанных" @@ -419,7 +431,7 @@ msgstr "Собирать статистику со всех кроме указ msgid "Monitor all local listen ports" msgstr "Собирать статистику со всех портов для входящих соединений" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "Мониторить все сенсоры" @@ -477,11 +489,12 @@ msgstr "Мониторить удаленные порты" msgid "Name" msgstr "Имя" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Имя правила" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -501,7 +514,7 @@ msgstr "Настройка плагина «Сеть»" msgid "Network plugins" msgstr "Сетевые плагины" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Сетевой протокол" @@ -518,6 +531,7 @@ msgid "Number of threads for data collection" msgstr "Количество потоков сбора данных" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -530,22 +544,23 @@ msgid "Only create average RRAs" msgstr "Создавать только средние RRA" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "Настройка плагина «OpenVPN»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "Файлы состояния службы OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Исходящий интерфейс" @@ -554,6 +569,7 @@ msgid "Output plugins" msgstr "Плагины вывода" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Пинг-запрос" @@ -570,6 +586,7 @@ msgid "Port for apcupsd communication" msgstr "Порт для связи со службой apcupsd" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Процессы" @@ -582,6 +599,7 @@ msgid "Processes to monitor separated by space" msgstr "Процессы для мониторинга (разделённые пробелом)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "CPU" @@ -631,15 +649,16 @@ msgstr "Скрипт" msgid "Seconds" msgstr "Секунд(ы)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "Список сенсоров" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "Сенсоры" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "Настройка плагина «Сенсоры»" @@ -675,7 +694,7 @@ msgstr "Группа сокета" msgid "Socket permissions" msgstr "Права доступа сокета" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Диапазон IP-адресов источника" @@ -692,6 +711,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Указывает, какую информацию собирать о глобальной топологии." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "Splash Leases" @@ -722,10 +742,12 @@ msgid "Stored timespans" msgstr "Сохраняемые промежутки времени" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Загрузка системы" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCPConns" @@ -741,7 +763,7 @@ msgstr "TTL для сетевых пакетов" msgid "TTL for ping packets" msgstr "TTL для ping-пакетов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Таблица" @@ -761,14 +783,14 @@ msgid "" msgstr "" "Плагин «OLSRd» считывает информацию о узловых сетях с плагина txtinfo OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -840,7 +862,7 @@ msgid "" msgstr "" "Плагин «Интерфейсы» собирает статистику на выбранных сетевых интерфейсах." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -867,7 +889,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "Плагин «Загрузка системы» собирает статистику о загрузке системы." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" "Плагин «Оперативная память (RAM)» собирает статистику об использовании " @@ -920,7 +942,7 @@ msgstr "" "параметров может привезти к высокому потреблению памяти устройства. Это " "может привести к зависанию устройства!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -970,11 +992,12 @@ msgstr "" "Плагин «UnixSock» создает Unix-сокет, который может быть использован для " "получения статистики от работающего сервиса collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "Плагин «Uptime» собирает статистику о времени работы системы." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "Thermal" @@ -1010,6 +1033,7 @@ msgstr "Пытаться определять полное имя хоста" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "ИБП" @@ -1034,14 +1058,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Настройка плагина «UnixSock»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "Время работы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "Настройка плагина «Uptime»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "Использовать улучшенную схему наименования" @@ -1059,6 +1084,7 @@ msgid "Verbose monitoring" msgstr "Расширенная статистика" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wi-Fi" @@ -1074,6 +1100,7 @@ msgstr "" "статистики." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1081,19 +1108,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "Настройка плагина «cUrl»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "напр. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "напр. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "напр. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "не более 16 символов" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 3b324d53e6..46e0a9440f 100644 --- a/applications/luci-app-statistics/po/sk/statistics.po +++ b/applications/luci-app-statistics/po/sk/statistics.po @@ -9,6 +9,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -16,7 +17,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -24,7 +25,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -37,7 +38,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -54,6 +55,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -81,7 +83,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -109,14 +111,16 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -125,6 +129,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -140,7 +145,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -157,10 +162,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -189,7 +196,7 @@ 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:18 +#: 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 @@ -202,29 +209,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -245,6 +253,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -256,7 +265,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -264,7 +273,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -290,13 +299,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -320,7 +329,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -329,10 +338,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -340,7 +351,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -375,10 +386,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -388,7 +400,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -397,7 +409,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -455,11 +467,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -479,7 +492,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -494,6 +507,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -506,22 +520,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -530,6 +545,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -546,6 +562,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -558,6 +575,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -604,15 +622,16 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -648,7 +667,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -665,6 +684,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -695,10 +715,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -714,7 +736,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -732,13 +754,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -795,7 +817,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -817,7 +839,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -855,7 +877,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -893,11 +915,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -930,6 +953,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -954,14 +978,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -979,6 +1004,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -992,6 +1018,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -999,19 +1026,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index e8c70e7906..14cd2777d7 100644 --- a/applications/luci-app-statistics/po/sv/statistics.po +++ b/applications/luci-app-statistics/po/sv/statistics.po @@ -10,6 +10,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -17,7 +18,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -25,7 +26,7 @@ msgstr "" 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:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Lägg till en matchande regel" @@ -38,7 +39,7 @@ msgstr "Lägg till flertalet värdar separerade av mellanslag." msgid "Add notification command" msgstr "Lägg till aviseringskommando" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -55,6 +56,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -82,7 +84,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Kedja" @@ -113,14 +115,16 @@ msgstr "" "collectd-demonen." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -129,6 +133,7 @@ msgid "DF Plugin Configuration" msgstr "Konfiguration av insticksprogrammet DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -144,7 +149,7 @@ msgstr "Intervall för insamling av data" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -161,10 +166,12 @@ msgid "Disk Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Disk" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Användning av diskutrymme" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Användning av disk" @@ -193,7 +200,7 @@ 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:18 +#: 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 @@ -206,29 +213,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Aktivera det här insticksprogrammet" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "Entropi" @@ -249,6 +257,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Brandvägg" @@ -260,7 +269,7 @@ msgstr "" 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -268,7 +277,7 @@ msgstr "" msgid "General plugins" msgstr "Generall insticksprogram" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "Generera en separat graf för varje loggade användare" @@ -294,13 +303,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: 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." @@ -325,7 +334,7 @@ msgstr "Konfiguration av insticksprogrammet IRQ" msgid "Ignore source addresses" msgstr "Ignorera källadresser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Inkommande gränssnitt" @@ -334,10 +343,12 @@ msgid "Interface Plugin Configuration" msgstr "Konfiguration av insticksprogrammets gränssnitt" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Gränssnitt" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Avbrott" @@ -345,7 +356,7 @@ msgstr "Avbrott" msgid "Interval for pings" msgstr "Intervaller för pingningar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Iptabels" @@ -380,10 +391,11 @@ msgid "Maximum allowed connections" msgstr "Maximalt tillåtna anslutningar" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Minne" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Memory" @@ -393,7 +405,7 @@ msgstr "Konfiguration av insticksprogrammet Memory" #: 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:120 +#: 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" msgstr "Övervaka alla förutom specificerat" @@ -402,7 +414,7 @@ msgstr "Övervaka alla förutom specificerat" msgid "Monitor all local listen ports" msgstr "Övervaka alla lokala lyssningsportar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "Övervaka alla sensorer" @@ -460,11 +472,12 @@ msgstr "Övervaka fjärrportar" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Nätlänk" @@ -484,7 +497,7 @@ msgstr "" msgid "Network plugins" msgstr "Insticksprogram för nätverket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Nätverksprotokoll" @@ -499,6 +512,7 @@ msgid "Number of threads for data collection" msgstr "Antalet trådar för insamling av data" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -511,22 +525,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "Statusfiler för OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Utgående gränssnitt" @@ -535,6 +550,7 @@ msgid "Output plugins" msgstr "Insticksprogram för utmatning" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Pinga" @@ -551,6 +567,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processer" @@ -563,6 +580,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processor" @@ -609,15 +627,16 @@ msgstr "Skript" msgid "Seconds" msgstr "Sekunder" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "Sensorer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -653,7 +672,7 @@ msgstr "Socketgrupp" msgid "Socket permissions" msgstr "Tillstånd för socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -670,6 +689,7 @@ 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/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -700,10 +720,12 @@ msgid "Stored timespans" msgstr "Lagrade tidsspann" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Belastning av systemet" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP-anslutningar" @@ -719,7 +741,7 @@ msgstr "TTL för nätverkspaket" msgid "TTL for ping packets" msgstr "TTL för ping-paket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabell" @@ -737,13 +759,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -800,7 +822,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -822,7 +844,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -860,7 +882,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -898,11 +920,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -935,6 +958,7 @@ msgstr "Försök att kolla upp fullständigt kvalificerade värdnamn" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -959,14 +983,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Konfiguration av insticksprogrammet UnixSock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "Upptid" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Upptid" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -984,6 +1009,7 @@ msgid "Verbose monitoring" msgstr "Detaljerad övervakning" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Trådlöst" @@ -999,6 +1025,7 @@ msgstr "" "mer statistik." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1006,19 +1033,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "t.ex br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "t.ex br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "maxmialt 16 tecken" diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index 625e31d9ba..13ebb7d496 100644 --- a/applications/luci-app-statistics/po/templates/statistics.pot +++ b/applications/luci-app-statistics/po/templates/statistics.pot @@ -2,6 +2,7 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -9,7 +10,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -17,7 +18,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -30,7 +31,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -47,6 +48,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -74,7 +76,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -102,14 +104,16 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -118,6 +122,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -133,7 +138,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -150,10 +155,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -182,7 +189,7 @@ 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:18 +#: 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 @@ -195,29 +202,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -238,6 +246,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -249,7 +258,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -257,7 +266,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -283,13 +292,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -313,7 +322,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -322,10 +331,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -333,7 +344,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -368,10 +379,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -381,7 +393,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -390,7 +402,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -448,11 +460,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -472,7 +485,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -487,6 +500,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -499,22 +513,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -523,6 +538,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -539,6 +555,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -551,6 +568,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -597,15 +615,16 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -641,7 +660,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -658,6 +677,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -688,10 +708,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -707,7 +729,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -725,13 +747,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -788,7 +810,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -810,7 +832,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -848,7 +870,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -886,11 +908,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -923,6 +946,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -947,14 +971,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -972,6 +997,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -985,6 +1011,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -992,19 +1019,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index 26aba8e77f..b66455a34b 100644 --- a/applications/luci-app-statistics/po/tr/statistics.po +++ b/applications/luci-app-statistics/po/tr/statistics.po @@ -10,6 +10,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -17,7 +18,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -25,7 +26,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -38,7 +39,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -55,6 +56,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -82,7 +84,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -110,14 +112,16 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -126,6 +130,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -141,7 +146,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -158,10 +163,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -190,7 +197,7 @@ 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:18 +#: 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 @@ -203,29 +210,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -246,6 +254,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -257,7 +266,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -265,7 +274,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -291,13 +300,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -321,7 +330,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -330,10 +339,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -341,7 +352,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -376,10 +387,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -389,7 +401,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -398,7 +410,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -456,11 +468,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -480,7 +493,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -495,6 +508,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -507,22 +521,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -531,6 +546,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -547,6 +563,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -559,6 +576,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -605,15 +623,16 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -649,7 +668,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -666,6 +685,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -696,10 +716,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -715,7 +737,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -733,13 +755,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -796,7 +818,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -818,7 +840,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -856,7 +878,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -894,11 +916,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -931,6 +954,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -955,14 +979,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -980,6 +1005,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -993,6 +1019,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1000,19 +1027,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index f9cadc12c5..9556526fc7 100644 --- a/applications/luci-app-statistics/po/uk/statistics.po +++ b/applications/luci-app-statistics/po/uk/statistics.po @@ -15,6 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -22,7 +23,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -30,7 +31,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -43,7 +44,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -87,7 +89,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -115,14 +117,16 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -131,6 +135,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -146,7 +151,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -163,10 +168,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -195,7 +202,7 @@ 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:18 +#: 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 @@ -208,29 +215,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -251,6 +259,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -262,7 +271,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -270,7 +279,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -296,13 +305,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -326,7 +335,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -335,10 +344,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Інтерфейси" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -346,7 +357,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -381,10 +392,11 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -394,7 +406,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -403,7 +415,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -461,11 +473,12 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -485,7 +498,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Мережевий протокол" @@ -500,6 +513,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -512,22 +526,23 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -536,6 +551,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -552,6 +568,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -564,6 +581,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -610,15 +628,16 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -654,7 +673,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -671,6 +690,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -701,10 +721,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -720,7 +742,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -738,13 +760,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -801,7 +823,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -823,7 +845,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -861,7 +883,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -899,11 +921,12 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -936,6 +959,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -960,14 +984,15 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -985,6 +1010,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -998,6 +1024,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1005,19 +1032,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index ccafdf7398..e986cdfa0d 100644 --- a/applications/luci-app-statistics/po/vi/statistics.po +++ b/applications/luci-app-statistics/po/vi/statistics.po @@ -15,6 +15,7 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -22,7 +23,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Action (target)" @@ -30,7 +31,7 @@ msgstr "Action (target)" 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:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Thêm matching rule" @@ -43,7 +44,7 @@ msgstr "" msgid "Add notification command" msgstr "Thêm lệnh thông báo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -87,7 +89,7 @@ msgstr "Cache collected data cho" msgid "Cache flush interval" msgstr "Cache flush interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Chain" @@ -118,14 +120,16 @@ msgstr "" "cai collectd daemon. " #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "Cấu hình DF plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -149,7 +154,7 @@ msgstr "Khoảng thu thập dữ liệu" 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:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Điểm đến ip range" @@ -166,10 +171,12 @@ msgid "Disk Plugin Configuration" msgstr "Cấu hình disk plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Khoảng trống trên đĩa" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Disk Usage" @@ -198,7 +205,7 @@ 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:18 +#: 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 @@ -211,29 +218,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Kích hoạt plugin này" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -254,6 +262,7 @@ msgid "Filter class monitoring" msgstr "Filter class monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -265,7 +274,7 @@ msgstr "Flush cache sau khi" 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:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -273,7 +282,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -304,7 +313,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +321,7 @@ 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:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -336,7 +345,7 @@ msgstr "Cấu hình IRQ Plugin " msgid "Ignore source addresses" msgstr "Lờ đi những địa chỉ nguồn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Giao diện đang tới" @@ -345,10 +354,12 @@ msgid "Interface Plugin Configuration" msgstr "Cấu hình giao diện plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Giao diện" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Cắt ngang" @@ -356,7 +367,7 @@ msgstr "Cắt ngang" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "cấu hình Iptables Plugin " @@ -391,10 +402,11 @@ msgid "Maximum allowed connections" msgstr "Tối đã kết nối cho phép" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -404,7 +416,7 @@ msgstr "" #: 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:120 +#: 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" msgstr "" @@ -413,7 +425,7 @@ msgstr "" 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:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -471,11 +483,12 @@ msgstr "Monitor remote ports" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: 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/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -495,7 +508,7 @@ msgstr "Cấu hình network plugin" msgid "Network plugins" msgstr "Network plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Network protocol" @@ -510,6 +523,7 @@ 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/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -522,22 +536,23 @@ msgid "Only create average RRAs" msgstr "Chỉ tạo trung bình RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Giao diện ra ngoài" @@ -546,6 +561,7 @@ msgid "Output plugins" msgstr "Output plugins" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -562,6 +578,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Quá trình xử lý" @@ -574,6 +591,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Bộ xử lý" @@ -620,15 +638,16 @@ msgstr "" msgid "Seconds" msgstr "Giây" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -664,7 +683,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Nguồn ip range" @@ -681,6 +700,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -711,10 +731,12 @@ msgid "Stored timespans" msgstr "Lưu timspans" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "System Load" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Kết nối TCP" @@ -730,7 +752,7 @@ msgstr "TTL cho gói mạng" msgid "TTL for ping packets" msgstr "TTl cho gói ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Table" @@ -748,13 +770,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -828,7 +850,7 @@ 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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -856,7 +878,7 @@ msgstr "" 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -909,7 +931,7 @@ 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:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -951,11 +973,12 @@ 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -989,6 +1012,7 @@ msgstr "Thử tra cứu những tên host đủ điều kiện" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1013,14 +1037,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Cấu hình Unixsock Plugin " #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1038,6 +1063,7 @@ msgid "Verbose monitoring" msgstr "Verbose monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Mạng không dây" @@ -1051,6 +1077,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" @@ -1058,19 +1085,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "e.g. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "e.g. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 chars" diff --git a/applications/luci-app-statistics/po/zh-cn/statistics.po b/applications/luci-app-statistics/po/zh-cn/statistics.po index 7bbd2d8b00..d5dae6b01b 100644 --- a/applications/luci-app-statistics/po/zh-cn/statistics.po +++ b/applications/luci-app-statistics/po/zh-cn/statistics.po @@ -1,12 +1,12 @@ # -# Yangfl <mmyangfl@gmail.com>, 2017. +# Yangfl <mmyangfl@gmail.com>, 2017-2019, 2019. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2017-10-29 15:50+0800\n" +"PO-Revision-Date: 2019-02-11 22:41+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -17,6 +17,7 @@ msgstr "" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "APC UPS" @@ -24,7 +25,7 @@ msgstr "APC UPS" msgid "APCUPS Plugin Configuration" msgstr "APCUPS 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "动作(目标)" @@ -32,7 +33,7 @@ msgstr "动作(目标)" msgid "Add command for reading values" msgstr "添加命令读取数据" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "新增匹配规则" @@ -45,7 +46,7 @@ msgstr "使用空格分隔多个主机" msgid "Add notification command" msgstr "新增通知命令" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "连接用户总数" @@ -59,9 +60,10 @@ msgstr "基本监控" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 msgid "CPU Context Switches Plugin Configuration" -msgstr "CPU Context Switches 插件配置" +msgstr "CPU 上下文切换插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "CPU 频率" @@ -89,7 +91,7 @@ msgstr "收集缓存数据" msgid "Cache flush interval" msgstr "缓存清空间隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "链" @@ -119,14 +121,16 @@ msgstr "" "以更改 Collectd 守护进程常规设置。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack 插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "上下文切换" @@ -135,6 +139,7 @@ msgid "DF Plugin Configuration" msgstr "DF 插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -150,7 +155,7 @@ msgstr "数据收集间隙" msgid "Datasets definition file" msgstr "数据集定义文件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "目标 IP 区间" @@ -164,13 +169,15 @@ msgstr "子配置目录" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 msgid "Disk Plugin Configuration" -msgstr "Disk 插件配置" +msgstr "磁盘插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "磁盘空间使用情况" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "磁盘使用情况" @@ -196,10 +203,10 @@ msgstr "留空 = 监控所有" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 msgid "Enable" -msgstr "" +msgstr "启用" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -212,35 +219,36 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "启用该插件" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "熵" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 msgid "Entropy Plugin Configuration" -msgstr "熵值插件配置" +msgstr "熵插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38 msgid "Exec" @@ -255,18 +263,19 @@ msgid "Filter class monitoring" msgstr "Filter 类监测" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "防火墙" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 msgid "Flush cache after" -msgstr "清空缓存后" +msgstr "清空缓存时间" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 msgid "Forwarding between listen and server addresses" msgstr "转发监听服务器和应用服务器之间数据" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "收集压缩统计信息" @@ -274,9 +283,9 @@ msgstr "收集压缩统计信息" msgid "General plugins" msgstr "通用插件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" -msgstr "为每个记录的用户生成一个单独的图表" +msgstr "为每个登录用户生成单独的图表" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101 msgid "Graphs" @@ -304,13 +313,13 @@ msgstr "" "在这里,您可以定义外部命令,当 Collectd 达到一定阈值时,将启动命令。阀值将会" "作为命令的标准输入。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: 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 键来选择或取消选择多个项目。" @@ -334,19 +343,21 @@ msgstr "IRQ 插件配置" msgid "Ignore source addresses" msgstr "忽略源地址" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "入接口" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 msgid "Interface Plugin Configuration" -msgstr "Interface 插件配置" +msgstr "接口插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" -msgstr "Interfaces" +msgstr "接口" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "中断" @@ -354,7 +365,7 @@ msgstr "中断" msgid "Interval for pings" msgstr "ping 间隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables 插件配置" @@ -376,7 +387,7 @@ msgstr "监听接口" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 msgid "Load Plugin Configuration" -msgstr "Load 插件配置" +msgstr "负载插件配置" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 msgid "" @@ -389,10 +400,11 @@ msgid "Maximum allowed connections" msgstr "最大允许连接数" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "内存" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "内存插件配置" @@ -402,16 +414,16 @@ msgstr "内存插件配置" #: 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:120 +#: 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" -msgstr "监测所有(除特别注明外)" +msgstr "监测所有(特别注明除外)" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 msgid "Monitor all local listen ports" msgstr "监测所有本地监听端口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "监控所有传感器" @@ -467,13 +479,14 @@ msgstr "监测远程端口" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" -msgstr "" +msgstr "名称" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "规则名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -483,17 +496,17 @@ msgstr "Netlink 插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 msgid "Network" -msgstr "Network" +msgstr "网络" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 msgid "Network Plugin Configuration" -msgstr "Network 插件配置" +msgstr "网络插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 msgid "Network plugins" msgstr "Network 插件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Network 协议" @@ -510,6 +523,7 @@ msgid "Number of threads for data collection" msgstr "收集程序使用线程数" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -522,22 +536,23 @@ msgid "Only create average RRAs" msgstr "仅创建平均 RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "OpenVPN 状态文件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "出接口" @@ -546,6 +561,7 @@ msgid "Output plugins" msgstr "Output 插件" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -562,6 +578,7 @@ msgid "Port for apcupsd communication" msgstr "apcupsd 通信端口" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "进程" @@ -571,9 +588,10 @@ msgstr "进程插件配置" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 msgid "Processes to monitor separated by space" -msgstr "过程监控,用空格隔开" +msgstr "监控的进程,用空格隔开" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "处理器" @@ -620,17 +638,18 @@ msgstr "脚本" msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "传感器列表" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "传感器" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" -msgstr "Sensors 插件配置" +msgstr "传感器插件配置" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 msgid "Server host" @@ -664,7 +683,7 @@ msgstr "套接字组" msgid "Socket permissions" msgstr "套接字权限" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "源 IP 区间" @@ -681,6 +700,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "收集指定拓扑相关信息。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "Splash Leases" @@ -711,10 +731,12 @@ msgid "Stored timespans" msgstr "存储时间跨度" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" -msgstr "系统加载" +msgstr "系统负载" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP 连接数" @@ -730,7 +752,7 @@ msgstr "网络包 TTL" msgid "TTL for ping packets" msgstr "ping 包 TTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "表" @@ -748,13 +770,13 @@ msgid "" "plugin of OLSRd." msgstr "OLSRd 插件通过 txtinfo 获取 meshed 网络信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." -msgstr "OpenVPN 插件可以获取 VPN 连接当前状态" +msgstr "OpenVPN 插件可以获取 VPN 连接当前状态。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -768,7 +790,7 @@ msgstr "cpu 插件获取处理器相关信息。" msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." -msgstr "csv插件用于存储数据,以方便其他程序处理数据。" +msgstr "csv 插件用于存储数据,以方便其他程序处理数据。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6 msgid "" @@ -780,7 +802,7 @@ msgstr "df 插件收集磁盘空间使用情况、挂载点及文件系统相关 msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." -msgstr "disk 插件收集磁盘分区使用情况及相关信息。" +msgstr "磁盘插件收集磁盘分区使用情况及相关信息。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9 msgid "" @@ -801,7 +823,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 msgid "The entropy plugin collects statistics about the available entropy." -msgstr "entropy 插件收集可用熵的统计信息。" +msgstr "熵插件收集可用熵的统计信息。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6 msgid "" @@ -813,9 +835,9 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9 msgid "" "The interface plugin collects traffic statistics on selected interfaces." -msgstr "Interface 插件用于收集选定接口的数据包的统计信息。" +msgstr "接口插件用于收集选定接口的流量统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -837,17 +859,17 @@ msgstr "iwinfo 插件收集无线信号强度、噪声和质量的统计信息 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6 msgid "The load plugin collects statistics about the general system load." -msgstr "load 插件收集常规系统加载统计信息。" +msgstr "负载插件收集系统负载的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." -msgstr "memory 插件收集关于内存使用情况的统计信息。" +msgstr "内存插件收集关于内存使用情况的统计信息。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." -msgstr "netlink 插件收集为选定接口 qdisc-、class- 和 filter- 的扩展数据。" +msgstr "netlink 插件为选定接口收集如 qdisc、class 和 filter 的数据。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6 msgid "" @@ -858,7 +880,7 @@ msgid "" msgstr "" "network 插件提供了基于网络的不同 Collectd 实例。Collectd 可以工作在客户端和服" "务器两个模式。在客户端模式下收集本地信息,然后转移到一个 Collectd 服务器实例" -"中,在服务器模式将从其他主机收集信息。" +"中,在服务器模式将从其他主机收集信息。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6 msgid "" @@ -870,7 +892,7 @@ msgstr "ping 插件将发送 icmp echo replies 到选定主机来测量每台主 msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." -msgstr "processes 插件收集选定进程的 cpu 时间、页面错误和内存使用信息。" +msgstr "进程插件收集选定进程的 cpu 时间、页面错误和内存使用信息。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6 msgid "" @@ -883,11 +905,11 @@ msgstr "" "><strong>警告:错误的参数设置,将导致非常高的临时内存消耗。这可能会使设备无法" "使用!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." -msgstr "sensors 插件使用 Linux Sensors 框架来收集环境统计信息。" +msgstr "传感器插件使用 Linux Sensors 框架来收集环境统计信息。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 msgid "" @@ -909,7 +931,7 @@ msgstr "" msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." -msgstr "tcpconns 插件收集选定端口 TCP 连接信息。" +msgstr "tcpconns 插件收集选定端口的 TCP 连接信息。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 msgid "" @@ -917,8 +939,8 @@ msgid "" "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -"thermal 插件将会监控系统温度。数据主要取自 /sys/class/thermal/*/temp ('*' 表" -"示温感设备的名字,比如 thermal_zone1) 。" +"温感插件将会监控系统温度。数据主要取自 /sys/class/thermal/*/temp ('*' 表示温" +"感设备的名字,比如 thermal_zone1) 。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6 msgid "" @@ -926,11 +948,12 @@ msgid "" "collected data from a running collectd instance." msgstr "unixsock 插件创建一个 unix 套接字可用于读取 Collectd 实例的收集信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." -msgstr "uptime 插件收集系统启动时间的统计信息。" +msgstr "运行时间插件收集系统启动时间的统计信息。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "温感" @@ -950,7 +973,7 @@ msgstr "此插件收集处理器频率调整的统计信息。" msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." -msgstr "定义 Collectd 将监听哪个接口来传入连接收集数据。" +msgstr "定义 Collectd 将等待传入连接的接口。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46 msgid "" @@ -963,6 +986,7 @@ msgstr "尝试解析主机全域名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -976,7 +1000,7 @@ msgstr "UPS 名使用 NUT(Network UPS Tools)格式:ups@host" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 msgid "URL" -msgstr "" +msgstr "URL" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57 msgid "UnixSock" @@ -987,14 +1011,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock 插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "运行时间" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "运行时间插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "使用更高级的命名规则" @@ -1012,6 +1037,7 @@ msgid "Verbose monitoring" msgstr "详细监测" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "无线" @@ -1025,26 +1051,27 @@ msgid "" msgstr "您可以安装更多的 collectd-mod-* 插件以获得更多的统计数据。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" -msgstr "" +msgstr "cUrl" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 msgid "cUrl Plugin Configuration" -msgstr "" +msgstr "cUrl 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "例如:br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "例如:br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "例如:eject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "最长 16 个字符" diff --git a/applications/luci-app-statistics/po/zh-tw/statistics.po b/applications/luci-app-statistics/po/zh-tw/statistics.po index 634de0118c..881f208888 100644 --- a/applications/luci-app-statistics/po/zh-tw/statistics.po +++ b/applications/luci-app-statistics/po/zh-tw/statistics.po @@ -1,22 +1,23 @@ # -# Yangfl <mmyangfl@gmail.com>, 2017. +# Yangfl <mmyangfl@gmail.com>, 2017-2019. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2017-10-29 15:50+0800\n" +"PO-Revision-Date: 2019-01-03 21:39+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Gtranslator 3.30.1\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "APC UPS" @@ -24,7 +25,7 @@ msgstr "APC UPS" msgid "APCUPS Plugin Configuration" msgstr "APCUPS 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "動作(目標)" @@ -32,7 +33,7 @@ msgstr "動作(目標)" msgid "Add command for reading values" msgstr "新增指令讀取資料" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "新增匹配規則" @@ -45,7 +46,7 @@ msgstr "使用空格分隔多個主機" msgid "Add notification command" msgstr "新增通知指令" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "連線使用者總數" @@ -62,6 +63,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "CPU Context Switches 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "CPU 頻率" @@ -89,7 +91,7 @@ msgstr "收集快取資料" msgid "Cache flush interval" msgstr "快取清空間隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "鏈" @@ -119,14 +121,16 @@ msgstr "" "以更改 Collectd 守護程序常規設定。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "上下文切換" @@ -135,6 +139,7 @@ msgid "DF Plugin Configuration" msgstr "DF 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -150,7 +155,7 @@ msgstr "資料收集間隙" msgid "Datasets definition file" msgstr "資料集定義檔案" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "目標 IP 區間" @@ -167,10 +172,12 @@ msgid "Disk Plugin Configuration" msgstr "Disk 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "磁碟空間使用情況" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "磁碟使用情況" @@ -196,10 +203,10 @@ msgstr "留空 = 監控所有" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 msgid "Enable" -msgstr "" +msgstr "啟用" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -212,29 +219,30 @@ msgstr "" #: 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:29 +#: 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:18 +#: 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:16 +#: 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:72 +#: 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:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "啟用該外掛" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "熵" @@ -255,6 +263,7 @@ msgid "Filter class monitoring" msgstr "Filter 類監測" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "防火牆" @@ -266,7 +275,7 @@ msgstr "清空快取後" msgid "Forwarding between listen and server addresses" msgstr "轉發監聽伺服器和應用伺服器之間資料" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "收集壓縮統計資訊" @@ -274,7 +283,7 @@ msgstr "收集壓縮統計資訊" msgid "General plugins" msgstr "通用外掛" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "為每個記錄的使用者生成一個單獨的圖表" @@ -304,13 +313,13 @@ msgstr "" "在這裡,您可以定義外部指令,當 Collectd 達到一定閾值時,將啟動指令。閥值將會" "作為指令的標準輸入。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 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:88 +#: 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 鍵來選擇或取消選擇多個專案。" @@ -334,7 +343,7 @@ msgstr "IRQ 外掛配置" msgid "Ignore source addresses" msgstr "忽略源位址" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "入介面" @@ -343,10 +352,12 @@ msgid "Interface Plugin Configuration" msgstr "Interface 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "中斷" @@ -354,7 +365,7 @@ msgstr "中斷" msgid "Interval for pings" msgstr "ping 間隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables 外掛配置" @@ -389,10 +400,11 @@ msgid "Maximum allowed connections" msgstr "最大允許連線數" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "記憶體" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "記憶體外掛配置" @@ -402,7 +414,7 @@ msgstr "記憶體外掛配置" #: 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:120 +#: 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" msgstr "監測所有(除特別註明外)" @@ -411,7 +423,7 @@ msgstr "監測所有(除特別註明外)" msgid "Monitor all local listen ports" msgstr "監測所有本地監聽埠" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "監控所有感測器" @@ -467,13 +479,14 @@ msgstr "監測遠端埠" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" -msgstr "" +msgstr "名稱" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "規則名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -493,7 +506,7 @@ msgstr "Network 外掛配置" msgid "Network plugins" msgstr "Network 外掛" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Network 協議" @@ -510,6 +523,7 @@ msgid "Number of threads for data collection" msgstr "收集程式使用執行緒數" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -522,22 +536,23 @@ msgid "Only create average RRAs" msgstr "僅建立平均 RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "OpenVPN 狀態檔案" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: 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:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "出介面" @@ -546,6 +561,7 @@ msgid "Output plugins" msgstr "Output 外掛" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -562,6 +578,7 @@ msgid "Port for apcupsd communication" msgstr "apcupsd 通訊埠" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "程序" @@ -574,6 +591,7 @@ msgid "Processes to monitor separated by space" msgstr "過程監控,用空格隔開" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "處理器" @@ -620,15 +638,16 @@ msgstr "指令碼" msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "感測器列表" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "感測器" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "Sensors 外掛配置" @@ -664,7 +683,7 @@ msgstr "套接字組" msgid "Socket permissions" msgstr "套接字許可權" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "源 IP 區間" @@ -681,6 +700,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "收集指定拓撲相關資訊。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "Splash Leases" @@ -711,10 +731,12 @@ msgid "Stored timespans" msgstr "儲存時間跨度" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "系統載入" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP 連線數" @@ -730,7 +752,7 @@ msgstr "網路包 TTL" msgid "TTL for ping packets" msgstr "ping 包 TTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "表" @@ -748,13 +770,13 @@ msgid "" "plugin of OLSRd." msgstr "OLSRd 外掛通過 txtinfo 獲取 meshed 網路資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 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:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -815,7 +837,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 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -839,7 +861,7 @@ msgstr "iwinfo 外掛收集無線訊號強度、噪聲和質量的統計資訊 msgid "The load plugin collects statistics about the general system load." msgstr "load 外掛收集常規系統載入統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "memory 外掛收集關於記憶體使用情況的統計資訊。" @@ -883,7 +905,7 @@ msgstr "" "><strong>警告:錯誤的引數設定,將導致非常高的臨時記憶體消耗。這可能會使裝置無" "法使用!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -926,11 +948,12 @@ msgid "" "collected data from a running collectd instance." msgstr "unixsock 外掛建立一個 unix 套接字可用於讀取 Collectd 例項的收集資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "uptime 外掛收集系統啟動時間的統計資訊。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "溫感" @@ -963,6 +986,7 @@ msgstr "嘗試解析主機全域名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -976,7 +1000,7 @@ msgstr "UPS 名使用 NUT(Network UPS Tools)格式:ups@host" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 msgid "URL" -msgstr "" +msgstr "URL" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57 msgid "UnixSock" @@ -987,14 +1011,15 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "執行時間" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "執行時間外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "使用更高階的命名規則" @@ -1012,6 +1037,7 @@ msgid "Verbose monitoring" msgstr "詳細監測" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "無線" @@ -1025,26 +1051,27 @@ msgid "" msgstr "您可以安裝更多的 collectd-mod-* 外掛以獲得更多的統計資料。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" -msgstr "" +msgstr "cUrl" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 msgid "cUrl Plugin Configuration" -msgstr "" +msgstr "cUrl 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "例如:br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "例如:br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "例如:eject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "最長 16 個字元" diff --git a/applications/luci-app-statistics/root/etc/config/luci_statistics b/applications/luci-app-statistics/root/etc/config/luci_statistics index 1e841fec8a..f84f67d1fc 100644 --- a/applications/luci-app-statistics/root/etc/config/luci_statistics +++ b/applications/luci-app-statistics/root/etc/config/luci_statistics @@ -137,7 +137,7 @@ config statistics 'collectd_netlink' config statistics 'collectd_nut' option enable '0' - option UPS 'myupsname' + list UPS 'myupsname' config statistics 'collectd_olsrd' option enable '0' diff --git a/applications/luci-app-statistics/root/usr/bin/stat-genconfig b/applications/luci-app-statistics/root/usr/bin/stat-genconfig index 7d1349b249..55cc6979e5 100755 --- a/applications/luci-app-statistics/root/usr/bin/stat-genconfig +++ b/applications/luci-app-statistics/root/usr/bin/stat-genconfig @@ -393,9 +393,9 @@ plugins = { network = config_network, nut = { - { "UPS" }, { }, - { } + { }, + { "UPS" } }, olsrd = { |