From b42465f3fc6e282cf10627f0bc7c0c0cecc7d3c8 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Mon, 4 Mar 2019 16:07:11 +0100 Subject: [PATCH 1/5] luci-app-statistics: rrdtool add canvas height option Added configuration parameters to also configure the height of the rrd images. config statistics 'rrdtool' option image_height '200' Signed-off-by: Florian Eckert --- .../luci-app-statistics/luasrc/statistics/rrdtool.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua index b9f48a45bd..f827e92309 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua @@ -26,6 +26,7 @@ function Graph.__init__( self, timespan, opts ) opts.rramax = opts.rramax or ( sections.collectd_rrdtool.RRAMax == "1" ) 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("/$","") @@ -40,7 +41,8 @@ function Graph.__init__( self, timespan, opts ) self.args = { "-a", "PNG", "-s", "NOW-" .. opts.timespan, - "-w", opts.width + "-w", opts.width, + "-h", opts.height } -- store options From 42a060a85255ac7e4ee33f5c16d3434c12a8f8fb Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Thu, 7 Mar 2019 10:26:12 +0100 Subject: [PATCH 2/5] luci-app-statistics: Diskfree graph show also percent view The Diskfree (df) plugin could also collect the values in percent if the option "ValuesPercentage" is set in the collectd configuration. This commit will check if "df_complex" / "percent_bytes" or both are collected by collectd and so will show the corrsponding graph. Signed-off-by: Florian Eckert --- .../statistics/rrdtool/definitions/df.lua | 49 ++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) 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..7a69e85ee5 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua @@ -5,7 +5,7 @@ module("luci.statistics.rrdtool.definitions.df", package.seeall) 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 +36,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 From 82c2a97314e5a569042056233475d1f97c1278ad Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Thu, 7 Mar 2019 15:09:47 +0100 Subject: [PATCH 3/5] luci-app-statistics: load graph menu entry name from the definitions This change defines the menu entry for the LuCI and the rrd definition in one place. This also has advantage when plugins are written with exec/python/perl or lua. The controller does not have to be touched for the menu entry change. Signed-off-by: Florian Eckert --- .../controller/luci_statistics/luci_statistics.lua | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 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 a89f9f4f87..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 @@ -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 From cd1e8cc6b94ef9aed2199d69f54c94d0c0919605 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Thu, 7 Mar 2019 14:50:17 +0100 Subject: [PATCH 4/5] luci-app-statistics: add new item callback for menu entry Add the item callback function to the rrdtool definitions. Signed-off-by: Florian Eckert --- .../luasrc/statistics/rrdtool/definitions/apcups.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/conntrack.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/contextswitch.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/cpu.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/cpufreq.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/curl.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/df.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/disk.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/dns.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/entropy.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/interface.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/iptables.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/irq.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/iwinfo.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/load.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/memory.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/netlink.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/nut.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/olsrd.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/openvpn.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/ping.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/processes.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/sensors.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/splash_leases.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/tcpconns.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/thermal.lua | 4 ++++ .../luasrc/statistics/rrdtool/definitions/uptime.lua | 4 ++++ 27 files changed, 108 insertions(+) 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 37055f5861..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") 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 5212b736e2..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,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.conntrack",package.seeall) +function item() + return luci.i18n.translate("Conntrack") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { 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 2bbdfb08fb..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,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.curl", package.seeall) +function item() + return luci.i18n.translate("cUrl") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { 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 7a69e85ee5..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,6 +3,10 @@ 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 ) local df_complex = { 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 b6f7d6d5f8..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,6 +3,10 @@ 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 { 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 f485048538..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 ) -- 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..84ca4951f9 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua @@ -2,6 +2,10 @@ 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 = { 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 481557bb7f..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,6 +3,10 @@ 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 = { } 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 5b575bfff2..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,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.ping", package.seeall) +function item() + return luci.i18n.translate("Ping") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { 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 010ac1cd2e..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,6 +3,10 @@ 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 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 b3119234a4..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,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.sensors", package.seeall) +function item() + return luci.i18n.translate("Sensors") +end + function rrdargs( graph, plugin, plugin_instance ) return { 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 1a192ae6a6..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 @@ -3,6 +3,10 @@ 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 { 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 7e7ed238f4..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,6 +3,10 @@ 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 { 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 a50e78491f..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,6 +11,10 @@ You may obtain a copy of the License at module("luci.statistics.rrdtool.definitions.uptime", package.seeall) +function item() + return luci.i18n.translate("Uptime") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { From 05f0649716ccf209ab14a569e49dd8dcefcc04c6 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Fri, 8 Mar 2019 08:39:48 +0100 Subject: [PATCH 5/5] luci-app-statistics: update i18n Signed-off-by: Florian Eckert --- .../luci-app-statistics/po/ca/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/cs/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/de/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/el/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/en/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/es/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/fr/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/he/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/hu/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/it/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/ja/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/ms/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/no/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/pl/statistics.po | 29 ++++++++++++++++++- .../po/pt-br/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/pt/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/ro/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/ru/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/sk/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/sv/statistics.po | 29 ++++++++++++++++++- .../po/templates/statistics.pot | 29 ++++++++++++++++++- .../luci-app-statistics/po/tr/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/uk/statistics.po | 29 ++++++++++++++++++- .../luci-app-statistics/po/vi/statistics.po | 29 ++++++++++++++++++- .../po/zh-cn/statistics.po | 29 ++++++++++++++++++- .../po/zh-tw/statistics.po | 29 ++++++++++++++++++- 26 files changed, 728 insertions(+), 26 deletions(-) diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index 4765dd4821..de10eb60dd 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 "" @@ -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 "" @@ -119,6 +121,7 @@ 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" @@ -127,6 +130,7 @@ 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" @@ -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" @@ -201,8 +208,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -235,6 +242,7 @@ 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" @@ -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" @@ -392,6 +403,7 @@ 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" @@ -477,6 +489,7 @@ 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" @@ -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,6 +537,7 @@ 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 "" @@ -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" @@ -626,6 +644,7 @@ 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 "" @@ -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" @@ -962,6 +984,7 @@ 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,6 +1046,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index 6e35a1bfb4..d7fc23b1b6 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 "" @@ -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 "" @@ -115,6 +117,7 @@ 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" @@ -123,6 +126,7 @@ 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" @@ -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" @@ -197,8 +204,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -231,6 +238,7 @@ 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" @@ -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í" @@ -387,6 +398,7 @@ 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ěť" @@ -472,6 +484,7 @@ 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" @@ -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,6 +532,7 @@ 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 "" @@ -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" @@ -622,6 +640,7 @@ 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 "" @@ -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í" @@ -948,6 +970,7 @@ 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,6 +1030,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index d483136034..8ed2bc7ea3 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 "" @@ -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 "" @@ -117,6 +119,7 @@ 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" @@ -125,6 +128,7 @@ 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" @@ -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" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ 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" @@ -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" @@ -394,6 +405,7 @@ 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" @@ -479,6 +491,7 @@ 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" @@ -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,6 +539,7 @@ 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 "" @@ -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" @@ -628,6 +646,7 @@ 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 "" @@ -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" @@ -967,6 +989,7 @@ 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,6 +1051,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index 7a5e3228fe..4de9c38e00 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 "" @@ -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 "" @@ -118,6 +120,7 @@ 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" @@ -126,6 +129,7 @@ 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" @@ -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 "Χρήση Δίσκου" @@ -201,8 +208,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -235,6 +242,7 @@ 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 "Τείχος προστασίας" @@ -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 "Διακοπές" @@ -385,6 +396,7 @@ 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 "Μνήμη" @@ -470,6 +482,7 @@ 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" @@ -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,6 +530,7 @@ 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 "" @@ -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 "Επεξεργαστής" @@ -619,6 +637,7 @@ 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 "" @@ -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" @@ -908,6 +930,7 @@ 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,6 +988,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index 4be5d1a9fe..d998f04fcd 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 "" @@ -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 "" @@ -117,6 +119,7 @@ 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 "" @@ -125,6 +128,7 @@ 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" @@ -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" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ 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" @@ -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" @@ -390,6 +401,7 @@ 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 "" @@ -475,6 +487,7 @@ 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" @@ -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,6 +535,7 @@ 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 "" @@ -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" @@ -624,6 +642,7 @@ 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 "" @@ -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" @@ -950,6 +972,7 @@ 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,6 +1033,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index f0f13179cd..14ff41067b 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/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 "APC UPS" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" 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 "Frecuencia de CPU" @@ -117,6 +119,7 @@ msgstr "" "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" @@ -125,6 +128,7 @@ 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 "Conmutadores de contexto" @@ -133,6 +137,7 @@ 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" @@ -165,10 +170,12 @@ 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" @@ -199,8 +206,8 @@ 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:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ 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 "Entropy" @@ -253,6 +261,7 @@ 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 "Firewall" @@ -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" @@ -391,6 +402,7 @@ 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" @@ -476,6 +488,7 @@ 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" @@ -513,6 +526,7 @@ 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" @@ -525,6 +539,7 @@ 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 "OpenVPN" @@ -549,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" @@ -565,6 +581,7 @@ msgid "Port for apcupsd communication" 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" @@ -577,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" @@ -628,6 +646,7 @@ 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 "Sensors" @@ -684,6 +703,7 @@ 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 "Splash Leases" @@ -714,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" @@ -969,6 +991,7 @@ 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 "Thermal" @@ -1005,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" @@ -1029,6 +1053,7 @@ 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 "Tiempo activo" @@ -1054,6 +1079,7 @@ 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 "WiFi" @@ -1067,6 +1093,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 "cUrl" diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index bd2011bb19..5e457bcdce 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 "" @@ -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 "" @@ -117,6 +119,7 @@ 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 "" @@ -125,6 +128,7 @@ 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" @@ -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" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ 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" @@ -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" @@ -391,6 +402,7 @@ 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 "" @@ -476,6 +488,7 @@ 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 "" @@ -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,6 +536,7 @@ 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 "" @@ -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" @@ -625,6 +643,7 @@ 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 "" @@ -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" @@ -956,6 +978,7 @@ 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,6 +1040,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index 848b89b7be..2c818902c0 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 "" @@ -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 "" @@ -114,6 +116,7 @@ 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 "" @@ -122,6 +125,7 @@ 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 "" @@ -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 "" @@ -196,8 +203,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -230,6 +237,7 @@ 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 "" @@ -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 "" @@ -380,6 +391,7 @@ 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 "" @@ -465,6 +477,7 @@ 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 "" @@ -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,6 +525,7 @@ 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 "" @@ -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 "" @@ -614,6 +632,7 @@ 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 "" @@ -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 "" @@ -903,6 +925,7 @@ 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,6 +983,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index 7a0ee1e037..030658f65d 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 "" @@ -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 "" @@ -115,6 +117,7 @@ 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" @@ -123,6 +126,7 @@ 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" @@ -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" @@ -197,8 +204,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -231,6 +238,7 @@ 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" @@ -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" @@ -392,6 +403,7 @@ 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" @@ -477,6 +489,7 @@ 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" @@ -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,6 +537,7 @@ 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 "" @@ -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" @@ -626,6 +644,7 @@ 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 "" @@ -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" @@ -950,6 +972,7 @@ 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,6 +1032,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index 3388e0d7ff..6bda3b9b39 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 "" @@ -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 "" @@ -117,6 +119,7 @@ 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 "" @@ -125,6 +128,7 @@ 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 "" @@ -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 "" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ 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" @@ -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 "" @@ -390,6 +401,7 @@ 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 "" @@ -475,6 +487,7 @@ 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 "" @@ -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,6 +535,7 @@ 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 "" @@ -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 "" @@ -624,6 +642,7 @@ 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 "" @@ -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 "" @@ -913,6 +935,7 @@ 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,6 +993,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index 9c63e559d3..e68426eea5 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 "" @@ -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 周波数" @@ -116,6 +118,7 @@ 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" @@ -124,6 +127,7 @@ 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" @@ -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 "ディスクの使用" @@ -198,8 +205,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -232,6 +239,7 @@ 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 "ファイアウォール" @@ -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 "割込み" @@ -392,6 +403,7 @@ 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 "メモリー" @@ -477,6 +489,7 @@ 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" @@ -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,6 +540,7 @@ 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" @@ -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 "プロセッサー" @@ -629,6 +647,7 @@ 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 "センサー" @@ -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 接続" @@ -965,6 +987,7 @@ 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,6 +1050,7 @@ 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 "稼働時間" @@ -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 "" diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index 6914ab1e9f..d3dff62029 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 "" @@ -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 "" @@ -111,6 +113,7 @@ 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 "" @@ -119,6 +122,7 @@ 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 "" @@ -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 "" @@ -193,8 +200,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -227,6 +234,7 @@ 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 "" @@ -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 "" @@ -377,6 +388,7 @@ 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 "" @@ -462,6 +474,7 @@ 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 "" @@ -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,6 +522,7 @@ 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 "" @@ -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 "" @@ -611,6 +629,7 @@ 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 "" @@ -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 "" @@ -900,6 +922,7 @@ 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,6 +980,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/no/statistics.po b/applications/luci-app-statistics/po/no/statistics.po index b99ae17fca..525a7307f2 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 "" @@ -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 "" @@ -108,6 +110,7 @@ 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 "" @@ -116,6 +119,7 @@ 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" @@ -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" @@ -190,8 +197,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -224,6 +231,7 @@ 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" @@ -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" @@ -379,6 +390,7 @@ 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 "" @@ -464,6 +476,7 @@ 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" @@ -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,6 +524,7 @@ 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 "" @@ -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" @@ -613,6 +631,7 @@ 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 "" @@ -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" @@ -938,6 +960,7 @@ 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,6 +1022,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index 2ae1879dfb..06ad09c99a 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 "" @@ -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 "" @@ -118,6 +120,7 @@ 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" @@ -126,6 +129,7 @@ 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" @@ -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" @@ -200,8 +207,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -234,6 +241,7 @@ 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" @@ -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" @@ -393,6 +404,7 @@ 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ęć" @@ -478,6 +490,7 @@ 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" @@ -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,6 +538,7 @@ 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 "" @@ -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" @@ -627,6 +645,7 @@ 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 "" @@ -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" @@ -958,6 +980,7 @@ 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,6 +1040,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/pt-br/statistics.po b/applications/luci-app-statistics/po/pt-br/statistics.po index 491caaa722..0ab5351ad7 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" @@ -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" @@ -117,6 +119,7 @@ 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" @@ -125,6 +128,7 @@ 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" @@ -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" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ 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" @@ -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" @@ -396,6 +407,7 @@ 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" @@ -481,6 +493,7 @@ 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" @@ -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,6 +544,7 @@ 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" @@ -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" @@ -633,6 +651,7 @@ 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" @@ -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" @@ -982,6 +1004,7 @@ msgstr "" "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,6 +1069,7 @@ 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" @@ -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 "" diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index 660f1a3867..928aba7a90 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 "" @@ -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 "" @@ -117,6 +119,7 @@ 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 "" @@ -125,6 +128,7 @@ 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" @@ -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" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ 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" @@ -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" @@ -392,6 +403,7 @@ 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" @@ -477,6 +489,7 @@ 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" @@ -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,6 +537,7 @@ 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 "" @@ -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" @@ -626,6 +644,7 @@ 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 "" @@ -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" @@ -956,6 +978,7 @@ 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,6 +1040,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index 0802685811..486e155f3b 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 "" @@ -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 "" @@ -118,6 +120,7 @@ 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 "" @@ -126,6 +129,7 @@ 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" @@ -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" @@ -200,8 +207,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -234,6 +241,7 @@ 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" @@ -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" @@ -384,6 +395,7 @@ 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 "" @@ -469,6 +481,7 @@ 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" @@ -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,6 +529,7 @@ 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 "" @@ -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" @@ -618,6 +636,7 @@ 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 "" @@ -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" @@ -909,6 +931,7 @@ 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,6 +989,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index 434b7ab756..83395573f2 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 ИБП" @@ -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" @@ -118,6 +120,7 @@ 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)" @@ -126,6 +129,7 @@ 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" @@ -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 "Использование диска" @@ -200,8 +207,8 @@ msgstr "Включить" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -234,6 +241,7 @@ 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 "Межсетевой экран" @@ -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 "Прерывания" @@ -397,6 +408,7 @@ 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)" @@ -482,6 +494,7 @@ 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" @@ -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,6 +544,7 @@ 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" @@ -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" @@ -636,6 +654,7 @@ 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 "Сенсоры" @@ -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" @@ -975,6 +997,7 @@ 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,6 +1058,7 @@ 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 "Время работы" @@ -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 "" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 3f4afe8a36..5bbc165276 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 "" @@ -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 "" @@ -109,6 +111,7 @@ 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 "" @@ -117,6 +120,7 @@ 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 "" @@ -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 "" @@ -191,8 +198,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -225,6 +232,7 @@ 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 "" @@ -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 "" @@ -375,6 +386,7 @@ 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 "" @@ -460,6 +472,7 @@ 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,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,6 +520,7 @@ 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 "" @@ -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 "" @@ -609,6 +627,7 @@ 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 "" @@ -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 "" @@ -898,6 +920,7 @@ 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,6 +978,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index fdf9eb2f4b..6bdede9cb4 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 "" @@ -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 "" @@ -113,6 +115,7 @@ 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 "" @@ -121,6 +124,7 @@ 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" @@ -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" @@ -195,8 +202,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -229,6 +236,7 @@ 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" @@ -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" @@ -380,6 +391,7 @@ 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" @@ -465,6 +477,7 @@ 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" @@ -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,6 +525,7 @@ 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" @@ -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" @@ -614,6 +632,7 @@ 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" @@ -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" @@ -903,6 +925,7 @@ 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,6 +983,7 @@ 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" @@ -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 "" diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index eebbb0577c..c95e0e8726 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 "" @@ -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 "" @@ -102,6 +104,7 @@ 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 "" @@ -110,6 +113,7 @@ 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 "" @@ -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 "" @@ -184,8 +191,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -218,6 +225,7 @@ 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 "" @@ -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 "" @@ -368,6 +379,7 @@ 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 "" @@ -453,6 +465,7 @@ 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 "" @@ -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,6 +513,7 @@ 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 "" @@ -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 "" @@ -602,6 +620,7 @@ 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 "" @@ -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 "" @@ -891,6 +913,7 @@ 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,6 +971,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index 20443b9a6f..cffaee79e8 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 "" @@ -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 "" @@ -110,6 +112,7 @@ 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 "" @@ -118,6 +121,7 @@ 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 "" @@ -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 "" @@ -192,8 +199,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -226,6 +233,7 @@ 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 "" @@ -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 "" @@ -376,6 +387,7 @@ 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 "" @@ -461,6 +473,7 @@ 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 "" @@ -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,6 +521,7 @@ 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 "" @@ -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 "" @@ -610,6 +628,7 @@ 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 "" @@ -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 "" @@ -899,6 +921,7 @@ 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,6 +979,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index bdd9dfc942..ff31fe5f51 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 "" @@ -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 "" @@ -115,6 +117,7 @@ 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 "" @@ -123,6 +126,7 @@ 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" @@ -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 "" @@ -197,8 +204,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -231,6 +238,7 @@ 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 "" @@ -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 "" @@ -381,6 +392,7 @@ 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 "" @@ -466,6 +478,7 @@ 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 "" @@ -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,6 +526,7 @@ 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 "" @@ -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 "" @@ -615,6 +633,7 @@ 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 "" @@ -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 "" @@ -904,6 +926,7 @@ 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,6 +984,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index 7b22ae052f..2b752abef7 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 "" @@ -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 "" @@ -118,6 +120,7 @@ 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 "" @@ -126,6 +129,7 @@ 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" @@ -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" @@ -200,8 +207,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -234,6 +241,7 @@ 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" @@ -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" @@ -391,6 +402,7 @@ 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 "" @@ -476,6 +488,7 @@ 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" @@ -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,6 +536,7 @@ 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 "" @@ -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ý" @@ -625,6 +643,7 @@ 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 "" @@ -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" @@ -956,6 +978,7 @@ 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,6 +1037,7 @@ 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 "" @@ -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 "" diff --git a/applications/luci-app-statistics/po/zh-cn/statistics.po b/applications/luci-app-statistics/po/zh-cn/statistics.po index 3ead4901ba..33fee69b07 100644 --- a/applications/luci-app-statistics/po/zh-cn/statistics.po +++ b/applications/luci-app-statistics/po/zh-cn/statistics.po @@ -17,6 +17,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 "APC UPS" @@ -62,6 +63,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 频率" @@ -119,6 +121,7 @@ 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" @@ -127,6 +130,7 @@ 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" @@ -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 "磁盘使用情况" @@ -201,8 +208,8 @@ msgstr "启用" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -235,6 +242,7 @@ 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 "防火墙" @@ -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 "中断" @@ -389,6 +400,7 @@ 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 "内存" @@ -474,6 +486,7 @@ 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" @@ -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,6 +536,7 @@ 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" @@ -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 "处理器" @@ -625,6 +643,7 @@ 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 "传感器" @@ -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 连接数" @@ -931,6 +953,7 @@ 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 "温感" @@ -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" @@ -987,6 +1011,7 @@ 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 "运行时间" @@ -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,6 +1051,7 @@ 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 "cUrl" diff --git a/applications/luci-app-statistics/po/zh-tw/statistics.po b/applications/luci-app-statistics/po/zh-tw/statistics.po index abaef793b3..ac029ca35d 100644 --- a/applications/luci-app-statistics/po/zh-tw/statistics.po +++ b/applications/luci-app-statistics/po/zh-tw/statistics.po @@ -17,6 +17,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 "APC UPS" @@ -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 頻率" @@ -119,6 +121,7 @@ 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" @@ -127,6 +130,7 @@ 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" @@ -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 "磁碟使用情況" @@ -201,8 +208,8 @@ msgstr "啟用" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -235,6 +242,7 @@ 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 "防火牆" @@ -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 "中斷" @@ -389,6 +400,7 @@ 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 "記憶體" @@ -474,6 +486,7 @@ 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" @@ -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,6 +536,7 @@ 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" @@ -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 "處理器" @@ -625,6 +643,7 @@ 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 "感測器" @@ -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 連線數" @@ -931,6 +953,7 @@ 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" @@ -987,6 +1011,7 @@ 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 "執行時間" @@ -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,6 +1051,7 @@ 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 "cUrl"