LUCI_TITLE:=LuCI Statistics Application
LUCI_DEPENDS:= \
- +luci-compat +luci-lib-iptparser \
+ +luci-compat +luci-lib-iptparser +luci-lib-jsonc \
+collectd +rrdtool1 +collectd-mod-rrdtool +collectd-mod-iwinfo \
+collectd-mod-cpu +collectd-mod-memory \
+collectd-mod-interface +collectd-mod-load +collectd-mod-network
require("nixio.fs")
require("luci.util")
require("luci.statistics.datatree")
+ require("luci.jsonc")
-- override entry(): check for existence <plugin>.so where <plugin> is derived from the called path
function _entry( path, ... )
network = { }
}
- local plugin_dir = "/usr/lib/lua/luci/statistics/plugins/"
+ local plugin_dir = "/usr/share/luci/statistics/plugins/"
for filename in nixio.fs.dir(plugin_dir) do
- local plugin_fun = loadfile(plugin_dir .. filename)
- setfenv(plugin_fun, { _ = luci.i18n.translate })
- local plugin = plugin_fun()
- local name = filename:gsub("%.lua", "")
- table.insert(collectd_menu[plugin.category], name)
- labels[name] = plugin.label
+ local plugin_def = luci.jsonc.parse(nixio.fs.readfile(plugin_dir .. filename))
+ if type(plugin_def) == "table" then
+ local name = filename:gsub("%.json", "")
+ table.insert(collectd_menu[plugin_def.category], name)
+ labels[name] = plugin_def.title
+ end
end
-- create toplevel menu nodes
+++ /dev/null
-return {
- legend = {
- { "Host", "Port" },
- { },
- { }
- },
- label = _("APC UPS"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { }
- },
- label = _("Conntrack"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { }
- },
- label = _("Context Switches"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "ValuesPercentage" , "ReportByCpu", "ReportByState" },
- { }
- },
- label = _("Processor"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { }
- },
- label = _("CPU Frequency"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { "DataDir" },
- { "StoreRates" },
- { }
- },
- label = _("CSV Output"),
- category = "output"
-}
+++ /dev/null
-return {
- label = _("cUrl"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "IgnoreSelected" },
- { "Devices", "MountPoints", "FSTypes" }
- },
- label = _("Disk Space Usage"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "IgnoreSelected" },
- { "Disks" }
- },
- label = _("Disk Usage"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { "Interfaces", "IgnoreSources" }
- },
- label = _("DNS"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { "SocketFile", "SocketGroup", "SocketPerms", "MaxConns" },
- { },
- { }
- },
- label = _("Email"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { }
- },
- label = _("Entropy"),
- category = "general"
-}
+++ /dev/null
-return {
- label = _("Exec"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "IgnoreSelected" },
- { "Interfaces" }
- },
- label = _("Interfaces"),
- category = "network"
-}
+++ /dev/null
-return {
- label = _("Firewall"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "IgnoreSelected" },
- { "Irqs" }
- },
- label = _("Interrupts"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "IgnoreSelected" },
- { "Interfaces" }
- },
- label = _("Wireless"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { }
- },
- label = _("System Load"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "ValuesPercentage", "ValuesAbsolute" },
- { }
- },
- label = _("Memory"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "IgnoreSelected" },
- { "Interfaces", "VerboseInterfaces", "QDiscs", "Classes", "Filters" }
- },
- label = _("Netlink"),
- category = "network"
-}
+++ /dev/null
-return {
- label = _("Network"),
- category = "output"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { "UPS" }
- },
- label = _("UPS"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { "Host", "Port", "CollectLinks","CollectRoutes","CollectTopology"},
- { },
- { }
- },
- label = _("OLSRd"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "CollectIndividualUsers", "CollectUserCount", "CollectCompression", "ImprovedNamingSchema" },
- { "StatusFile" }
- },
- label = _("OpenVPN"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { "TTL", "Interval", "AddressFamily" },
- { },
- { "Hosts" }
- },
- label = _("Ping"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { "Processes" }
- },
- label = _("Processes"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { "DataDir", "StepSize", "HeartBeat", "RRARows", "XFF", "CacheFlush", "CacheTimeout" },
- { "RRASingle" },
- { "RRATimespans" }
- },
- label = _("RRDTool"),
- category = "output"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "IgnoreSelected" },
- { "Sensor" }
- },
- label = _("Sensors"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { }
- },
- label = _("Splash Leases"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "ListeningPorts" },
- { "LocalPorts", "RemotePorts" }
- },
- label = _("TCP Connections"),
- category = "network"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { "IgnoreSelected" },
- { "Device" }
- },
- label = _("Thermal"),
- category = "general"
-}
+++ /dev/null
-return {
- legend = {
- { "SocketFile", "SocketGroup", "SocketPerms" },
- { },
- { }
- },
- label = _("UnixSock"),
- category = "output"
-}
+++ /dev/null
-return {
- legend = {
- { },
- { },
- { }
- },
- label = _("Uptime"),
- category = "general"
-}
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr "Configuració de connectors dels commutadors de context de CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "Freqüència de la CPU"
msgid "CPU Plugin Configuration"
msgstr "Configuració del connector de CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "Sortida CSV"
"dels connectors. En aquesta pàgina podeu canviar la configuració general del "
"dimoni Collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Configuració del connector Conntrack"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr "Configuració del connector DF"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Configuració del connector de disc"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Ús d'espai en disc"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Ús de disc"
msgid "E-Mail Plugin Configuration"
msgstr "Configuració del connector d'adreça electrònica"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Adreça electrònica"
msgid "Enable this plugin"
msgstr "Activa aquest connector"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Monitoreig de classe filter"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Tallafocs"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Connectors generals"
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Gràfics"
msgid "Interface Plugin Configuration"
msgstr "Configuració de connector d'interfície"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfícies"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Interrupcions"
msgid "Maximum allowed connections"
msgstr "Connexions màximes permeses"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Memòria"
msgid "Name of the rule"
msgstr "Nom de la regla"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Enllaç de xarxa"
msgid "Netlink Plugin Configuration"
msgstr "Configuració del connector d'enllaç de xarxa"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Xarxa"
msgid "Network Plugin Configuration"
msgstr "Configuració del connector de xarxa"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Connectors de xarxa"
msgid "Number of threads for data collection"
msgstr "Número de fils de recol·lecció de dades"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Crea només RRAs mitjans"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Interfície sortint"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Connectors de sortida"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Processos"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Processador"
msgid "RRD step interval"
msgstr "Interval de pas RRD"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "Llista de sensors"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Sensors"
msgid "Server port"
msgstr "Port del servidor"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr "Especifica què informació es recull sobre la topologia global."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Marques de temps emmagatzemades"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Càrrega de sistema"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Connexions TCP"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr "Intenta resoldre el nom de màquina (fqdn)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "Sock Unix"
msgid "Unixsock Plugin Configuration"
msgstr "Configuració de connector Unixsock"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Wireless"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "APC UPS"
msgid "CPU Context Switches Plugin Configuration"
msgstr "Konfigurace modulu Přepínání kontextu CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "Frekvence CPU"
msgid "CPU Plugin Configuration"
msgstr "Nastavení CPU pluginu"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV výstup"
"rozdílné pluginy. Na této stránce můžete změnit obecná nastavení daemonu "
"collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Nastavení pluginu Conntrack"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "Přepínaní kontextu"
msgid "DF Plugin Configuration"
msgstr "Nastavení pluginu DF"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Nastavení Disk pluginu"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Využití místa na disku"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Využití disku"
msgid "E-Mail Plugin Configuration"
msgstr "Nastavení E-Mail pluginu"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "E-mail"
msgid "Enable this plugin"
msgstr "Povolit tento plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Entropie"
msgid "Entropy Plugin Configuration"
msgstr "Konfigurace modulu entropie"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Sledování třídy filtrů"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Brána firewall"
msgid "Gather compression statistics"
msgstr "Shromažďovat kompresní statistiku"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Obecné pluginy"
msgid "Generate a separate graph for each logged user"
msgstr "Vytvářet samostatný graf pro každého přihlášeného uživatele"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Grafy"
msgid "Interface Plugin Configuration"
msgstr "Nastavení Interface pluginu"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Síťová rozhraní"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Přerušení"
msgid "Maximum allowed connections"
msgstr "Maximální množství povolených spojení"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Paměť"
msgid "Name of the rule"
msgstr "Název pravidla"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Nastavení pluginu Netlink"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Síť"
msgid "Network Plugin Configuration"
msgstr "Nastavení pluginu Síť"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Síťové pluginy"
msgid "Number of threads for data collection"
msgstr "Počet vláken pro sběr dat"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Odchozí rozhraní"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Výstupní pluginy"
msgid "Percent values"
msgstr "Procentní hodnoty"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr "Port pro komunikaci apcupsd"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Procesy"
msgid "Processes to monitor separated by space"
msgstr "Sledované procesy (oddělte mezerou)"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Procesor"
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "Seznam senzorů"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Sensory"
msgid "Server port"
msgstr "Port serveru"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "Nastavení"
msgid "Specifies what information to collect about the global topology."
msgstr "Určuje, jaké informace sbírat o globální topologii"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Uložené časové rozsahy"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Zatížení systému"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP spojení"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr "Modul uptime shromažďuje statistiku o době běhu systému."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "Teploty"
msgstr "Zkuste vyhledat plně kvalifikovaný název hostitele"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Konfigurace pluginu Unixsock"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Doba běhu"
msgid "When set to true, we request percentage values"
msgstr "Je-li nastaveno na 'povoleno', zaznamenávají se percentuální hodnoty"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Bezdrátová síť"
"Pro povolení dalších statistik můžete nainstalovat další collectd-mod-* "
"zásuvné moduly."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "CPU-Frequenz"
msgid "CPU Plugin Configuration"
msgstr "CPU Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV Ausgabe"
"verschiedenen Quellen mittels diverser Plugins. Auf dieser Seite können "
"generelle Einstellungen für den Collectd-Daemon vorgenommen werden."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Conntrack Plugin Einstellungen"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr "DF Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Disk Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Plattenspeicher"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Plattenauslastung"
msgid "E-Mail Plugin Configuration"
msgstr "E-Mail Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Email"
msgid "Enable this plugin"
msgstr "Plugin aktivieren"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Entropie"
msgid "Entropy Plugin Configuration"
msgstr "Entropie Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Filterklassen überwachen"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Firewall"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Diagramme"
msgid "Interface Plugin Configuration"
msgstr "Interface Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Schnittstellen"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Interrupts"
msgid "Maximum allowed connections"
msgstr "Maximale Anzahl erlaubter Verbindungen"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Hauptspeicher"
msgid "Name of the rule"
msgstr "Name der Regel"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Netlink Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Netzwerk"
msgid "Network Plugin Configuration"
msgstr "Network Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Netzwerkplugins"
msgid "Number of threads for data collection"
msgstr "Anzahl paralleler Sammelprozesse"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Nur 'average' RRAs erzeugen"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "ausgehende Schnittstelle"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Ausgabeplugins"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Prozesse"
msgid "Processes to monitor separated by space"
msgstr "Zu überwachende Prozesse (getrennt durch Leerzeichen)"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Prozessor"
msgid "RRD step interval"
msgstr "RRD Schrittintervall"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr "Server-Port"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr "Bestimmt die zu sammelnden Informationen der globalen Topologie."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "gespeicherte Zeitspannen"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Systemlast"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP-Verbindungen"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr "automatisch vollen Hostnamen herausfinden"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "USV"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Unixsock Plugin Konfiguration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Laufzeit"
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "WLAN"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "Έξοδος CSV"
"πηγές μέσω διάφορων προσθέτων. Σε αυτή τη σελίδα μπορείτε να αλλάξετε τις "
"γενικές ρυθμίσεις του δαίμονα collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Χρήση Χώρου στον δίσκο"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Χρήση Δίσκου"
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Ηλ. Ταχυδρομείο"
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Τείχος προστασίας"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Γραφικές παραστάσεις"
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Διεπαφές"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Διακοπές"
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Μνήμη"
msgid "Name of the rule"
msgstr "Όνομα κανόνα"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Δίκτυο"
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Πρόσθετα δικτύου"
msgid "Number of threads for data collection"
msgstr "Αριθμός νημάτων για τη συλλογή δεδομένων"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Πρόσθετα εξόδου"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Διεργασίες"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Επεξεργαστής"
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Φόρτος Συστήματος"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Συνδέσεις TCP"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Ασύρματο"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.1.1\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr "CPU Plugin Configuration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV Output"
"different plugins. On this page you can change general settings for the "
"collectd daemon."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr "DF Plugin Configuration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Disk Plugin Configuration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Disk Space Usage"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Disk Usage"
msgid "E-Mail Plugin Configuration"
msgstr "E-Mail Plugin Configuration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Email"
msgid "Enable this plugin"
msgstr "Enable this plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Filter class monitoring"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Firewall"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Graphs"
msgid "Interface Plugin Configuration"
msgstr "Interface Plugin Configuration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfaces"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Interrupts"
msgid "Maximum allowed connections"
msgstr "Maximum allowed connections"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr "Name of the rule"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Netlink Plugin Configuration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Network"
msgid "Network Plugin Configuration"
msgstr "Network Plugin Configuration"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Network plugins"
msgid "Number of threads for data collection"
msgstr "Number of threads for data collection"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr "Only create average RRAs"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr ""
msgid "Outgoing interface"
msgstr "Outgoing interface"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Output plugins"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Processes"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Processor"
msgid "RRD step interval"
msgstr "RRD step interval"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr "Server port"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Stored timespans"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "System Load"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP Connections"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr "Try to lookup fully qualified hostname"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Unixsock Plugin Configuration"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Wireless"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "APC UPS"
msgid "CPU Context Switches Plugin Configuration"
msgstr "Configuración del complemento de conmutadores de contexto de CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "Frecuencia de CPU"
msgid "CPU Plugin Configuration"
msgstr "Configuración del complemento de CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "Salida en CSV"
"través de la utilización de diferentes plugins. Aquí puede cambiar la "
"configuración general del demonio que maneja collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Seguimiento"
msgid "Conntrack Plugin Configuration"
msgstr "Configuración del seguimiento"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "Conmutadores de contexto"
msgid "DF Plugin Configuration"
msgstr "Configuración del complemento DF"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Configuración del complemento Disco"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Uso de espacio en disco"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Uso de disco"
msgid "E-Mail Plugin Configuration"
msgstr "Configuración del complemento Correo electrónico"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Correo electrónico"
msgid "Enable this plugin"
msgstr "Activar este complemento"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Entropía"
msgid "Entropy Plugin Configuration"
msgstr "Configuración del complemento Entropía"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Monitorización del filtro de clases"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Firewall"
msgid "Gather compression statistics"
msgstr "Recopilar estadísticas de compresión"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Complementos generales"
msgid "Generate a separate graph for each logged user"
msgstr "Genera un gráfico separado para cada usuario registrado"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Gráficos"
msgid "Interface Plugin Configuration"
msgstr "Configuración del interfaz de plugins"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfaces"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Interrupciones"
msgid "Maximum allowed connections"
msgstr "Máximo número de conexiones"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Memoria"
msgid "Name of the rule"
msgstr "Nombre de la regla"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Enlace de red"
msgid "Netlink Plugin Configuration"
msgstr "Configuración del plugin \"enlace de red\""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Red"
msgid "Network Plugin Configuration"
msgstr "Configuración del plugin \"Red\""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Plugins de red"
msgid "Number of threads for data collection"
msgstr "Número de hilos para recolección de datos"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Crear sólo RRAs medias"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Interfaz de salida"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Plugins de salida"
msgid "Percent values"
msgstr "Valores porcentuales"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr "Puerto para comunicación apcupsd"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Procesos"
msgid "Processes to monitor separated by space"
msgstr "Procesos a monitorizar (separados por espacios)"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Procesador"
msgid "RRD step interval"
msgstr "Intervalo de paso RRD"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "Herramienta RRD"
msgid "Sensor list"
msgstr "Lista de sensores"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Sensores"
msgid "Server port"
msgstr "Puerto del servidor"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "Configuración"
msgid "Specifies what information to collect about the global topology."
msgstr "Especifica qué información recolectar sobre la topología global."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr "Splash Leases"
msgid "Splash Leases Plugin Configuration"
msgstr "Configuración del complemento \"Splash Leases\""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Intervalos almacenados"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Carga del sistema"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Conexiones TCP"
"El plugin \"uptime\" recopila estadísticas sobre el tiempo de actividad del "
"sistema."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "Térmico"
msgstr "Intenta resolver el nombre de máquina cualificado"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "SAI"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "Socket UNIX"
msgid "Unixsock Plugin Configuration"
msgstr "Configuración del plugin \"UnixSock\""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Tiempo de actividad"
msgid "When set to true, we request percentage values"
msgstr "Cuando se establece en verdadero, se solicita valores de porcentaje"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Wi-Fi"
"Puede instalar plugins collectd-mod-* adicionales para activar más "
"estadísticas."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.10.1\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "Fréquence du CPU"
msgid "CPU Plugin Configuration"
msgstr "Configuration du greffon sur le CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "Sortie au format CSV"
"travers différents greffons. Sur ce page, vous pouvez modifier les "
"paramètres généraux de ce démon collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Configuration du plugin Conntrack"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr "Configuration du greffon DF"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Configuration du greffon Disque"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Utilisation de l'espace-disque"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Espace-disque"
msgid "E-Mail Plugin Configuration"
msgstr "Configuration du greffon des courriels"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Courriel"
msgid "Enable this plugin"
msgstr "Activer ce greffon"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Surveillance des filtres"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Pare-feu"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Graphiques"
msgid "Interface Plugin Configuration"
msgstr "Configuration du greffon des Interfaces"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfaces"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Interruptions"
msgid "Maximum allowed connections"
msgstr "Nb de Connexions autorisées au maximum"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Mémoire"
msgid "Name of the rule"
msgstr "Nom de la règle"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr "Configuration du greffon du lien-réseau"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Réseau"
msgid "Network Plugin Configuration"
msgstr "Configuration du greffon réseau"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Greffons liés au réseau"
msgid "Number of threads for data collection"
msgstr "Nombre de fils pour la récupération des données"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Créer seulement des RRAs moyens"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Interface sortante"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Greffons liés aux résultats"
msgid "Percent values"
msgstr "Valeurs en pourcentage"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Processus"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Processeur"
msgid "RRD step interval"
msgstr "Intervalle d'avancement RRD"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Capteurs"
msgid "Server port"
msgstr "Port serveur"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr "Spécifie les informations à collecter sur la topologie globale."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Durée de la période enregistrée"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Charge-système"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Connexions TCP"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "Thermique"
msgstr "Tente de récupérer des noms d'hôtes complètement qualifiés"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "Socket Unix"
msgid "Unixsock Plugin Configuration"
msgstr "Configuration du greffon de socket Unix"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Temps de service"
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Sans-fil"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr ""
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "APC UPS"
msgid "CPU Context Switches Plugin Configuration"
msgstr "CPU-környezetváltások bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "CPU-frekvencia"
msgid "CPU Plugin Configuration"
msgstr "CPU bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV-kimenet"
"adatgyűjtésre szolgáló kis méretű démon. Ezen az oldalon változtathatja meg "
"a collectd démon általános beállításait."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Kapcsolatkövető"
msgid "Conntrack Plugin Configuration"
msgstr "Kapcsolatkövető bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "Környezetváltások"
msgid "DF Plugin Configuration"
msgstr "DF bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Lemez bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Lemezterület-használat"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Lemezhasználat"
msgid "E-Mail Plugin Configuration"
msgstr "E-mail bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "E-mail"
msgid "Enable this plugin"
msgstr "Bővítmény engedélyezése"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Entrópia"
msgid "Entropy Plugin Configuration"
msgstr "Entrópia bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Végrehajtás"
msgid "Filter class monitoring"
msgstr "Szűrőosztály megfigyelése"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Tűzfal"
msgid "Gather compression statistics"
msgstr "Tömörítési statisztikák begyűjtése"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Általános bővítmények"
msgid "Generate a separate graph for each logged user"
msgstr "Különálló grafikon előállítása minden bejelentkezett felhasználóhoz"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Grafikonok"
msgid "Interface Plugin Configuration"
msgstr "Csatoló bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Csatolók"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Megszakítások"
msgid "Maximum allowed connections"
msgstr "Legtöbb megengedett kapcsolat"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Memória"
msgid "Name of the rule"
msgstr "A szabály neve"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Netlink bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Hálózat"
msgid "Network Plugin Configuration"
msgstr "Hálózat bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Hálózati bővítmények"
msgid "Number of threads for data collection"
msgstr "Az adatgyűjtés szálainak száma"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Csak átlag RRA-k létrehozása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Kimenő csatoló"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Kimeneti bővítmények"
msgid "Percent values"
msgstr "Százalékos értékek"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr "Az apcupsd kommunikáció portja"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Folyamatok"
msgid "Processes to monitor separated by space"
msgstr "Megfigyelendő folyamatok szóközzel elválasztva"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Processzor"
msgid "RRD step interval"
msgstr "RRD lépés időköze"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDtool"
msgid "Sensor list"
msgstr "Érzékelőlista"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Érzékelők"
msgid "Server port"
msgstr "Kiszolgáló port"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "Beállítás"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
msgid "Specifies what information to collect about links."
-msgstr "Meghatározza, hogy milyen információkat kell gyűjteni a kapcsolatokról."
+msgstr ""
+"Meghatározza, hogy milyen információkat kell gyűjteni a kapcsolatokról."
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
msgid "Specifies what information to collect about routes."
"Meghatározza, hogy milyen információkat kell gyűjteni a globális "
"topológiáról."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr "Indítási bérletek"
msgid "Splash Leases Plugin Configuration"
msgstr "Indítási bérletek bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Tárolt időszakok"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Rendszerterhelés"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP kapcsolatok"
"directory. This can render the device unusable!</strong>"
msgstr ""
"Az RRDtool bővítmény eltárolja a begyűjtött adatokat az RRD "
-"adatbázisfájlokban, a diagramok alapjában.<br /><br /><strong>Figyelmeztetés:"
-" a hibás érték beállítása nagyon magas memóriafogyasztást fog eredményezni "
-"az átmeneti könyvtárban. Ez használhatatlanul jelenítheti meg az "
-"eszközt!</strong>"
+"adatbázisfájlokban, a diagramok alapjában.<br /><br /"
+"><strong>Figyelmeztetés: a hibás érték beállítása nagyon magas "
+"memóriafogyasztást fog eredményezni az átmeneti könyvtárban. Ez "
+"használhatatlanul jelenítheti meg az eszközt!</strong>"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
msgid ""
"read, e.g. thermal_zone1 )"
msgstr ""
"A hőmérséklet bővítmény a rendszer hőmérsékletét fogja megfigyelni. Az "
-"adatok jellemzően a /sys/class/thermal/*/temp helyről vannak beolvasva (a „*”"
-" a beolvasandó hőmérsékleti eszközt jelenti, például thermal_zone1)"
+"adatok jellemzően a /sys/class/thermal/*/temp helyről vannak beolvasva (a "
+"„*” a beolvasandó hőmérsékleti eszközt jelenti, például thermal_zone1)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:7
msgid ""
msgstr ""
"Az működési idő bővítmény a rendszer működési idejéről gyűjt statisztikákat."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "Hőmérséklet"
msgstr "Teljesen minősített gépnév keresésének kísérlete"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Unixsock bővítmény beállítása"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Működési idő"
msgid "When set to true, we request percentage values"
msgstr "Ha igazra van állítva, akkor százalékos értékeket kérünk"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Vezeték nélküli"
"Telepíthet további collectd-mod-* bővítményeket is több statisztika "
"engedélyezéséhez."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"grazie a diversi plugin. Su questa pagina puoi cambiare le opzioni generali "
"del demone collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr "Abilita questo plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Firewall"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfacce"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Rete"
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.9\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "CPU 周波数"
msgid "CPU Plugin Configuration"
msgstr "CPU プラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV 出力"
"Collectd は、様々なソースから別々のプラグインを通してデータを収集する軽量デー"
"モンです。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Conntrack プラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr "DF プラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "ディスクプラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "ディスクスペース使用量"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "ディスクの使用"
msgid "E-Mail Plugin Configuration"
msgstr "E-メールプラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Eメール"
msgid "Enable this plugin"
msgstr "プラグイン設定を有効にする"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "エントロピー"
msgid "Entropy Plugin Configuration"
msgstr "エントロピー プラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "ファイアウォール"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "一般プラグイン"
msgid "Generate a separate graph for each logged user"
msgstr "ログインユーザーごとの分離されたグラフを生成します。"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "グラフ"
msgid "Interface Plugin Configuration"
msgstr "インターフェース プラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "インターフェース"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "割込み"
msgid "Maximum allowed connections"
msgstr "許可された最大接続数"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "メモリー"
msgid "Name of the rule"
msgstr "ルール名"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Netlink プラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "ネットワーク"
msgid "Network Plugin Configuration"
msgstr "ネットワークプラグイン設定"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "ネットワークプラグイン"
msgid "Number of threads for data collection"
msgstr "データ収集用スレッド数"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "平均値のRRAsのみ作成する"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "送信インターフェース"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "出力プラグイン"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "プロセス"
msgid "Processes to monitor separated by space"
msgstr "スペースで区切られた、モニターするプロセスです。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "プロセッサー"
msgid "RRD step interval"
msgstr "RRD stepインターバル"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "センサー一覧"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "センサー"
msgid "Server port"
msgstr "サーバー ポート"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "設定"
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "保存する期間の範囲"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "システム負荷"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP 接続"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr "稼働時間 プラグインは、システムの稼働時間についての統計を収集します。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "サーマル"
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Unixsock プラグイン設定"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "稼働時間"
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "無線"
"追加の collectd-mod-* プラグインをインストールすることで、より多くの統計を有"
"効にできます。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr "CPU plugin konfigurasjon"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV Utdata"
"ulike plugins. På denne siden kan du endre generelle innstillinger for "
"collectd daemon."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr "DF plugin konfigurasjon"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Disk plugin konfigurasjon"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Disk Forbruk"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Disk Anvendelse"
msgid "E-Mail Plugin Configuration"
msgstr "E-Post plugin konfigurasjon"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Epost"
msgid "Enable this plugin"
msgstr "Aktiver denne plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Program"
msgid "Filter class monitoring"
msgstr "Filter class overvåking"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Brannmur"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Grafer"
msgid "Interface Plugin Configuration"
msgstr "Grensesnitt plugin konfigurasjon"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Grensesnitt"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Avbrudd"
msgid "Maximum allowed connections"
msgstr "Maksimum tillatte tilkoblinger"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr "Navnet på regelen"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Nettlink"
msgid "Netlink Plugin Configuration"
msgstr "Netlink plugin konfigurasjon"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Nettverk"
msgid "Network Plugin Configuration"
msgstr "Nettverks plugin konfigurasjon"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Nettverks plugin"
msgid "Number of threads for data collection"
msgstr "Antall tråder for datainnsamling"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr "Lag kun gjennomsnittlige RRAs"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Utgående grensesnitt"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Utdata Plugin"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Prosesser"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Prosessor"
msgid "RRD step interval"
msgstr "RRD steg intervall"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr "Server port"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Lagrede tidsperioder"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "System Belastning"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP Forbindelser"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr "Prøv å søk etter fullstendig vertsnavn"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Unixsock plugin konfigurasjon"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Trådløs"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "APC UPS"
msgid "CPU Context Switches Plugin Configuration"
msgstr "Kontekst cpu przełącza konfigurację wtyczek"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "Częstotliwość procesora"
msgid "CPU Plugin Configuration"
msgstr "Konfiguracja wtyczki procesora"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "Wyjście CSV"
"różnych wtyczek. Na tej stronie można zmienić ogólne ustawienia demona "
"collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Konfiguracja wtyczki conntrack"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "Przełączniki kontekstu"
msgid "DF Plugin Configuration"
msgstr "Konfiguracja wtyczki DF"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Konfiguracja wtyczki dysku"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Zużycie przestrzeni dyskowej"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Użycie dysku"
msgid "E-Mail Plugin Configuration"
msgstr "Konfiguracja wtyczki email"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Email"
msgid "Enable this plugin"
msgstr "Włącz tę wtyczkę"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Entropia"
msgid "Entropy Plugin Configuration"
msgstr "Konfiguracja wtyczki entropii"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Monitorowanie filtra klas"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Zapora sieciowa"
msgid "Gather compression statistics"
msgstr "Zbieranie statystyk kompresji"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Wtyczki ogólne"
msgid "Generate a separate graph for each logged user"
msgstr "Generowanie oddzielnego wykresu dla każdego zalogowanego użytkownika"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Wykresy"
msgid "Interface Plugin Configuration"
msgstr "Konfiguracja wtyczki interfejsu"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfejsy"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Przerwania"
msgid "Maximum allowed connections"
msgstr "Maksymalne dozwolone połączenia"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Pamięć"
msgid "Name of the rule"
msgstr "Nazwa tej reguły"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Konfiguracja wtyczki Netlink"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Sieć"
msgid "Network Plugin Configuration"
msgstr "Konfiguracja wtyczki sieć"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Wtyczki sieciowe"
msgid "Number of threads for data collection"
msgstr "Liczba wątków do zbierania danych"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Twórz tylko średnie archiwa RRA"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Interfejs wychodzący"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Pluginy wyjścia"
msgid "Percent values"
msgstr "Wartości procentowe"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr "Port komunikacji z apcupsd"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Procesy systemowe"
msgid "Processes to monitor separated by space"
msgstr "Monitorowane procesy oddzielone spacją"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Procesor"
msgid "RRD step interval"
msgstr "Częstotliwość zmian RRD"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "Lista czujników"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Czujniki"
msgid "Server port"
msgstr "Port serwera"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "Konfiguracja"
msgid "Specifies what information to collect about the global topology."
msgstr "Określa jakie informacje zbierać o globalnej topologii."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr "Dzierżawy Splash"
msgid "Splash Leases Plugin Configuration"
msgstr "Konfiguracja wtyczki dzierżaw Splash"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Przechowywane okresy czasu"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Obciążenie systemu"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Połączenia TCP"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr "Wtyczka uptime zbiera statystyki dotyczące czasu pracy systemu."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "Termika"
msgstr "Spróbuj znaleźć pełną nazwę hosta"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Konfiguracja wtyczki UnixSock"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Czas pracy"
msgid "When set to true, we request percentage values"
msgstr "Po ustawieniu true, żądamy wartości procentowych"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Sieć bezprzewodowa"
"Możesz zainstalować dodatkowe wtyczki collectd-mod-*, aby włączyć więcej "
"statystyk."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "Curl"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "Nobreak APC"
msgid "CPU Context Switches Plugin Configuration"
msgstr "Configuração do Módulo de Troca de Contexto da CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "Frequência da CPU"
msgid "CPU Plugin Configuration"
msgstr "Configuração do plugin CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "Formato CSV"
"diferentes plugins. Nesta página você pode alterar as configurações gerais "
"do daemon collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Configuração do Plugin do Conntrack"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "Trocas de Contexto"
msgid "DF Plugin Configuration"
msgstr "Configuração do plugin DF"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Configuração do plugin Disco"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Utilização de espaço em disco"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Utilização do Disco"
msgid "E-Mail Plugin Configuration"
msgstr "Configuração do plugin E-Mail"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Email"
msgid "Enable this plugin"
msgstr "Habilitar este plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Entropia"
msgid "Entropy Plugin Configuration"
msgstr "Configuração do Plugin de Entropia"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Monitoramento das Classes de Filtros"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Firewall"
msgid "Gather compression statistics"
msgstr "Obter estatísticas sobre a compressão"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Plugins Gerais"
msgid "Generate a separate graph for each logged user"
msgstr "Gerar um gráfico separado para cada utilizador conectado"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Gráficos"
msgid "Interface Plugin Configuration"
msgstr "Configuração do plugin Interface"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfaces"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Interrupções"
msgid "Maximum allowed connections"
msgstr "Máximo de conexões permitidas"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Memória"
msgid "Name of the rule"
msgstr "Nome da regra"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Configuração do plugin Netlink"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Rede"
msgid "Network Plugin Configuration"
msgstr "Configuração do plugin Rede"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Plugins de rede"
msgid "Number of threads for data collection"
msgstr "Número de threads para o coletor de dados"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Somente criar RRAs de média"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Interface de saída"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Plugins de saída"
msgid "Percent values"
msgstr "Valores percentuais"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr "Porta para comunicação do apcupsd"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Processos"
msgid "Processes to monitor separated by space"
msgstr "Processos para monitorar, separado por espaços"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Processador"
msgid "RRD step interval"
msgstr "Intervalo de atualização"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "Lista de sensores"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Sensores"
msgid "Server port"
msgstr "Porta do servidor"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "Configuração"
msgid "Specifies what information to collect about the global topology."
msgstr "Especifica quais informações serão coletadas sobre a topologia global."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr "Concessões do Splash"
msgid "Splash Leases Plugin Configuration"
msgstr "Configuração do Plugin das Concessões do Splash"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Intervalos armazenados"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Carga do Sistema"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Conexões TCP"
"O plugin de tempo de atividade coleta estatísticas sobre o tempo de "
"atividade do sistema."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "Térmico"
msgstr "Tentar encontrar o nome do host completo (FQDN)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS (no-breaks)"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Configuração do plugin Unixsock"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Uptime"
msgid "When set to true, we request percentage values"
msgstr "Quando definido como verdadeiro solicitamos valores percentuais"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Wireless"
"Pode instalar plugins adicionais (collectd-mod-*) para ativar mais "
"estatísticas."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.10-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "Nobreak APC"
msgid "CPU Context Switches Plugin Configuration"
msgstr "Configuração do Módulo de Troca de Contexto da CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "Frequência da CPU"
msgid "CPU Plugin Configuration"
msgstr "Configuração do plugin CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "Saida CSV"
"diferentes plugins. Nesta página você pode alterar as configurações gerais "
"do daemon collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Configuração do Plugin do Conntrack"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "Trocas de Contexto"
msgid "DF Plugin Configuration"
msgstr "Configuração do plugin DF"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Configuração do plugin Disco"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Utilização de espaço em disco"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Utilização do Disco"
msgid "E-Mail Plugin Configuration"
msgstr "Configuração do plugin E-Mail"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Email"
msgid "Enable this plugin"
msgstr "Habilitar este plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Entropia"
msgid "Entropy Plugin Configuration"
msgstr "Configuração do Plugin de Entropia"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Monitoramento das Classes de Filtros"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Firewall"
msgid "Gather compression statistics"
msgstr "Obter estatísticas sobre a compressão"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Plugins Gerais"
msgid "Generate a separate graph for each logged user"
msgstr "Gerar um gráfico separado para cada usuário conectado"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Gráficos"
msgid "Interface Plugin Configuration"
msgstr "Configuração do plugin Interface"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfaces"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Interrupções"
msgid "Maximum allowed connections"
msgstr "Máximo de conexões permitidas"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Memória"
msgid "Name of the rule"
msgstr "Nome da regra"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Configuração do plugin Netlink"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Rede"
msgid "Network Plugin Configuration"
msgstr "Configuração do plugin Rede"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Plugins de rede"
msgid "Number of threads for data collection"
msgstr "Número de threads para o coletor de dados"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Somente criar RRAs de média"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Interface de saída"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Plugins de saída"
msgid "Percent values"
msgstr "Valores em percentual"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr "Porta para comunicação do apcupsd"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Processos"
msgid "Processes to monitor separated by space"
msgstr "Processos para monitorar, separado por espaços"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Processador"
msgid "RRD step interval"
msgstr "Intervalo de atualização"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "Lista de sensores"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Sensores"
msgid "Server port"
msgstr "Porta do servidor"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "Configuração"
msgid "Specifies what information to collect about the global topology."
msgstr "Especifica quais informações serão coletadas sobre a topologia global."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr "Concessões do Splash"
msgid "Splash Leases Plugin Configuration"
msgstr "Configuração do Plugin das Concessões do Splash"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Intervalos armazenados"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Carga do Sistema"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Conexões TCP"
"O plugin de tempo de atividade coleta estatísticas sobre o tempo de "
"atividade do sistema."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "Térmico"
msgstr "Tentar encontrar o nome completo do equipamento (FQDN)"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS (no-breaks)"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Configuração do plugin Unixsock"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Tempo de atividade"
msgstr ""
"Quando definido como verdadeiro, serão requeridos valores em percentual"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Rede sem fio"
"Você pode instalar plugins adicionais (collectd-mod-*) para habilitar mais "
"estatísticas."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr "Configurarea pluginului CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "Afisarea CSV"
"diferite pluginuri. In aceasta pagina poti schimba setarile generale pentru "
"Collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Utilizarea spatiului pe disc"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Utilizarea discului"
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Email"
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Firewall"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Grafice"
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfete"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Intreruperi"
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Legatura de retea"
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Retea"
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Pluginuri de retea"
msgid "Number of threads for data collection"
msgstr "Numarul de threaduri pentru colectarea datelor"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Pluginuri de iesire"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Procese"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Procesor"
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Incarcarea de sistem"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Conexiuni TCP"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr "Incearca sa rezolvi numele de domeniu complet"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Wireless"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "APC ИБП"
msgid "CPU Context Switches Plugin Configuration"
msgstr "Настройка плагина переключений контекста CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "Частота CPU"
msgid "CPU Plugin Configuration"
msgstr "Настройка плагина «CPU»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV вывод"
"Collectd — это сервис для сбора данных из разных источников при помощи "
"плагинов. На этой странице вы можете изменить настройки collectd."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Отслеживание подключений (Conntrack)"
msgid "Conntrack Plugin Configuration"
msgstr "Настройка плагина «Conntrack»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "Переключения контекста"
msgid "DF Plugin Configuration"
msgstr "Настройка плагина «DF»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Настройка плагина «Disk»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Использовано места на диске"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Использование диска"
msgid "E-Mail Plugin Configuration"
msgstr "Настройка плагина «E-Mail»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "E-mail"
msgid "Enable this plugin"
msgstr "Включить этот плагин"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Энтропия"
msgid "Entropy Plugin Configuration"
msgstr "Настройка плагина «Энтропия»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Мониторинг класса фильтров"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Межсетевой экран"
msgid "Gather compression statistics"
msgstr "Сбор статистики сжатия"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Основные плагины"
msgid "Generate a separate graph for each logged user"
msgstr "Создать отдельный график для каждого авторизованного пользователя"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Графики"
msgid "Interface Plugin Configuration"
msgstr "Настройка плагина «Интерфейсы»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Интерфейсы"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Прерывания"
msgid "Maximum allowed connections"
msgstr "Максимум разрешенных соединений"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Оперативная память (RAM)"
msgid "Name of the rule"
msgstr "Имя правила"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Настройка плагина «Netlink»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Сеть"
msgid "Network Plugin Configuration"
msgstr "Настройка плагина «Сеть»"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Сетевые плагины"
msgid "Number of threads for data collection"
msgstr "Количество потоков сбора данных"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "Создавать только средние RRA"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Исходящий интерфейс"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Плагины вывода"
msgid "Percent values"
msgstr "Значения в процентах"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Пинг-запрос"
msgid "Port for apcupsd communication"
msgstr "Порт для связи со службой apcupsd"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Процессы"
msgid "Processes to monitor separated by space"
msgstr "Процессы для мониторинга (разделённые пробелом)"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "CPU"
msgid "RRD step interval"
msgstr "Базовый интервал между данными в RRD (StepSize)"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "Список сенсоров"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Сенсоры"
msgid "Server port"
msgstr "Порт сервера"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "Настройка"
msgid "Specifies what information to collect about the global topology."
msgstr "Указывает, какую информацию собирать о глобальной топологии."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr "Splash Leases"
msgid "Splash Leases Plugin Configuration"
msgstr "Настройка плагина «Splash Leases»"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Сохраняемые промежутки времени"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Загрузка системы"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCPConns"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr "Плагин «Uptime» собирает статистику о времени работы системы."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "Thermal"
msgstr "Пытаться определять полное имя хоста"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "ИБП"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Настройка плагина «UnixSock»"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Время работы"
msgid "When set to true, we request percentage values"
msgstr "При включении, отображаются значения в процентах"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Wi-Fi"
"Вы можете установить плагины collectd-mod-* для включения дополнительной "
"статистики."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.9.1-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV-utmatning"
"insticksprogam. På den här sidan så kan du ändra generella inställningar för "
"collectd-demonen."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr "Konfiguration av insticksprogrammet DF"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Konfiguration av insticksprogrammet Disk"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Användning av diskutrymme"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Användning av disk"
msgid "E-Mail Plugin Configuration"
msgstr "Konfiguration av insticksprogrammet E-post"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "E-post"
msgid "Enable this plugin"
msgstr "Aktivera det här insticksprogrammet"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "Entropi"
msgid "Entropy Plugin Configuration"
msgstr "Konfiguration av insticksprogrammet Entropi"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Brandvägg"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "Generall insticksprogram"
msgid "Generate a separate graph for each logged user"
msgstr "Generera en separat graf för varje loggade användare"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Grafer"
msgid "Interface Plugin Configuration"
msgstr "Konfiguration av insticksprogrammets gränssnitt"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Gränssnitt"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Avbrott"
msgid "Maximum allowed connections"
msgstr "Maximalt tillåtna anslutningar"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Minne"
msgid "Name of the rule"
msgstr "Regelns namn"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Nätlänk"
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Nätverk"
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Insticksprogram för nätverket"
msgid "Number of threads for data collection"
msgstr "Antalet trådar för insamling av data"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Utgående gränssnitt"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Insticksprogram för utmatning"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Processer"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Processor"
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "Sensorer"
msgid "Server port"
msgstr "Server-port"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "Installera"
msgid "Specifies what information to collect about the global topology."
msgstr "Anger vilken information som ska samlas in om den globala topologin."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Lagrade tidsspann"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "Belastning av systemet"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP-anslutningar"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr "Försök att kolla upp fullständigt kvalificerade värdnamn"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr "Webbadress"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Konfiguration av insticksprogrammet UnixSock"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Upptid"
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Trådlöst"
"Du kan installera ytterligare collectd-mod* insticksprogram för att aktivera "
"mer statistik."
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr ""
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr ""
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr ""
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr ""
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr ""
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr ""
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr ""
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr ""
"collectd daemon."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr ""
msgid "E-Mail Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr ""
msgid "Enable this plugin"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr ""
msgid "Filter class monitoring"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Брандмауер"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr ""
msgid "Interface Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Інтерфейси"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr ""
msgid "Maximum allowed connections"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "Пам'ять"
msgid "Name of the rule"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr ""
msgid "Netlink Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Мережа"
msgid "Network Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr ""
msgid "Number of threads for data collection"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr ""
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ехо-запит"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Процеси"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr ""
msgid "RRD step interval"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr ""
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr ""
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr ""
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr ""
msgid "Unixsock Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "Час безперервної роботи"
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Бездротові мережі"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr ""
msgid "CPU Context Switches Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr ""
msgid "CPU Plugin Configuration"
msgstr "Cấu hình Plugin CPU"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV Output"
"plugins khác nhau. Trên trang này, bạn có thể thay đổi cài đặt tổng quát cho "
"cai collectd daemon. "
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr ""
msgid "Conntrack Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr ""
msgid "DF Plugin Configuration"
msgstr "Cấu hình DF plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Cấu hình disk plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "Khoảng trống trên đĩa"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "Disk Usage"
msgid "E-Mail Plugin Configuration"
msgstr "Cấu hình e-mail plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "Email"
msgid "Enable this plugin"
msgstr "Kích hoạt plugin này"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr ""
msgid "Entropy Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Filter class monitoring"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "Firewall"
msgid "Gather compression statistics"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr ""
msgid "Generate a separate graph for each logged user"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "Graphs"
msgid "Interface Plugin Configuration"
msgstr "Cấu hình giao diện plugin"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Giao diện"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "Cắt ngang"
msgid "Maximum allowed connections"
msgstr "Tối đã kết nối cho phép"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr ""
msgid "Name of the rule"
msgstr "Tên của rule"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Cấu hình Netlink Plugin "
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Network"
msgid "Network Plugin Configuration"
msgstr "Cấu hình network plugin"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Network plugins"
msgid "Number of threads for data collection"
msgstr "Số lượng các chủ đề để thu thập dữ liệu"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr ""
msgid "Only create average RRAs"
msgstr "Chỉ tạo trung bình RRAs"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "Giao diện ra ngoài"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Output plugins"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "Quá trình xử lý"
msgid "Processes to monitor separated by space"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "Bộ xử lý"
msgid "RRD step interval"
msgstr "RRD step interval"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr ""
msgid "Server port"
msgstr "Server port"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr ""
msgid "Specifies what information to collect about the global topology."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr ""
msgid "Splash Leases Plugin Configuration"
msgstr ""
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "Lưu timspans"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "System Load"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "Kết nối TCP"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr ""
msgstr "Thử tra cứu những tên host đủ điều kiện"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr ""
msgid "URL"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Cấu hình Unixsock Plugin "
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr ""
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "Mạng không dây"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.10-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "APC 电源"
msgid "CPU Context Switches Plugin Configuration"
msgstr "CPU 上下文切换插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "CPU 频率"
msgid "CPU Plugin Configuration"
msgstr "CPU 插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV 输出"
"Collectd 是一个通过不同插件用于收集各种源数据的小型守护程序。在此页面中,您可"
"以更改 Collectd 守护进程常规设置。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Conntrack 插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "上下文切换"
msgid "DF Plugin Configuration"
msgstr "DF 插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "磁盘插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "磁盘空间使用情况"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "磁盘使用情况"
msgid "E-Mail Plugin Configuration"
msgstr "E-Mail 插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "电子邮件"
msgid "Enable this plugin"
msgstr "启用该插件"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "熵"
msgid "Entropy Plugin Configuration"
msgstr "熵插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Filter 类监测"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "防火墙"
msgid "Gather compression statistics"
msgstr "收集压缩统计信息"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "通用插件"
msgid "Generate a separate graph for each logged user"
msgstr "为每个登录用户生成单独的图表"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "图表"
msgid "Interface Plugin Configuration"
msgstr "接口插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "接口"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "中断"
msgid "Maximum allowed connections"
msgstr "最大允许连接数"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "内存"
msgid "Name of the rule"
msgstr "规则名"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Netlink 插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "网络"
msgid "Network Plugin Configuration"
msgstr "网络插件配置"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Network 插件"
msgid "Number of threads for data collection"
msgstr "收集程序使用线程数"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "仅创建平均 RRAs"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "出站接口"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Output 插件"
msgid "Percent values"
msgstr "百分比"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr "apcupsd 通信端口"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "进程"
msgid "Processes to monitor separated by space"
msgstr "监控的进程,用空格隔开"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "处理器"
msgid "RRD step interval"
msgstr "RRD 区间间隙"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "传感器列表"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "传感器"
msgid "Server port"
msgstr "服务器端口"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "设置"
msgid "Specifies what information to collect about the global topology."
msgstr "收集指定拓扑相关信息。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr "Splash Leases"
msgid "Splash Leases Plugin Configuration"
msgstr "Splash Leases 插件配置"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "存储时间跨度"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "系统负载"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP 连接数"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr "运行时间插件收集系统启动时间的统计信息。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "温感"
msgstr "尝试解析主机全域名"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Unixsock 插件配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "运行时间"
msgid "When set to true, we request percentage values"
msgstr "当选中时,按百分比统计"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "无线"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr "您可以安装更多的 collectd-mod-* 插件以获得更多的统计数据。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json:2
msgid "APC UPS"
msgstr "APC UPS"
msgid "CPU Context Switches Plugin Configuration"
msgstr "CPU Context Switches 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json:2
msgid "CPU Frequency"
msgstr "CPU 頻率"
msgid "CPU Plugin Configuration"
msgstr "CPU 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json:2
msgid "CSV Output"
msgstr "CSV 輸出"
"Collectd 是一個通過不同外掛用於收集各種源資料的小型守護程式。在此頁面中,您可"
"以更改 Collectd 守護程序常規設定。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json:2
msgid "Conntrack"
msgstr "Conntrack"
msgid "Conntrack Plugin Configuration"
msgstr "Conntrack 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json:2
msgid "Context Switches"
msgstr "上下文切換"
msgid "DF Plugin Configuration"
msgstr "DF 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json:2
msgid "DNS"
msgstr "DNS"
msgid "Disk Plugin Configuration"
msgstr "Disk 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/df.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json:2
msgid "Disk Space Usage"
msgstr "磁碟空間使用情況"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json:2
msgid "Disk Usage"
msgstr "磁碟使用情況"
msgid "E-Mail Plugin Configuration"
msgstr "E-Mail 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/email.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json:2
msgid "Email"
msgstr "電子郵件"
msgid "Enable this plugin"
msgstr "啟用該外掛"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json:2
msgid "Entropy"
msgstr "熵"
msgid "Entropy Plugin Configuration"
msgstr "熵值外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json:2
msgid "Exec"
msgstr "Exec"
msgid "Filter class monitoring"
msgstr "Filter 類監測"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json:2
msgid "Firewall"
msgstr "防火牆"
msgid "Gather compression statistics"
msgstr "收集壓縮統計資訊"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
msgid "General plugins"
msgstr "通用外掛"
msgid "Generate a separate graph for each logged user"
msgstr "為每個記錄的使用者生成一個單獨的圖表"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:74
msgid "Graphs"
msgstr "圖表"
msgid "Interface Plugin Configuration"
msgstr "Interface 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json:2
msgid "Interfaces"
msgstr "Interfaces"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json:2
msgid "Interrupts"
msgstr "中斷"
msgid "Maximum allowed connections"
msgstr "最大允許連線數"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json:2
msgid "Memory"
msgstr "記憶體"
msgid "Name of the rule"
msgstr "規則名"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json:2
msgid "Netlink"
msgstr "Netlink"
msgid "Netlink Plugin Configuration"
msgstr "Netlink 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/network.lua:2
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json:2
msgid "Network"
msgstr "Network"
msgid "Network Plugin Configuration"
msgstr "Network 外掛配置"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:25
msgid "Network plugins"
msgstr "Network 外掛"
msgid "Number of threads for data collection"
msgstr "收集程式使用執行緒數"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json:2
msgid "OLSRd"
msgstr "OLSRd"
msgid "Only create average RRAs"
msgstr "僅建立平均 RRAs"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json:2
msgid "OpenVPN"
msgstr "OpenVPN"
msgid "Outgoing interface"
msgstr "出介面"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
msgid "Output plugins"
msgstr "Output 外掛"
msgid "Percent values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json:2
msgid "Ping"
msgstr "Ping"
msgid "Port for apcupsd communication"
msgstr "apcupsd 通訊埠"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json:2
msgid "Processes"
msgstr "程序"
msgid "Processes to monitor separated by space"
msgstr "過程監控,用空格隔開"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:10
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json:2
msgid "Processor"
msgstr "處理器"
msgid "RRD step interval"
msgstr "RRD 區間間隙"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json:2
msgid "RRDTool"
msgstr "RRDTool"
msgid "Sensor list"
msgstr "感測器列表"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json:2
msgid "Sensors"
msgstr "感測器"
msgid "Server port"
msgstr "伺服器埠"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
msgid "Setup"
msgstr "設定"
msgid "Specifies what information to collect about the global topology."
msgstr "收集指定拓撲相關資訊。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json:2
msgid "Splash Leases"
msgstr "Splash Leases"
msgid "Splash Leases Plugin Configuration"
msgstr "Splash Leases 外掛配置"
-#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
msgid "Statistics"
msgid "Stored timespans"
msgstr "儲存時間跨度"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/load.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json:2
msgid "System Load"
msgstr "系統載入"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json:2
msgid "TCP Connections"
msgstr "TCP 連線數"
msgid "The uptime plugin collects statistics about the uptime of the system."
msgstr "uptime 外掛收集系統啟動時間的統計資訊。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json:2
msgid "Thermal"
msgstr "溫感"
msgstr "嘗試解析主機全域名"
#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
-#: applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json:2
msgid "UPS"
msgstr "UPS"
msgid "URL"
msgstr "URL"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json:2
msgid "UnixSock"
msgstr "UnixSock"
msgid "Unixsock Plugin Configuration"
msgstr "Unixsock 外掛配置"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json:2
msgid "Uptime"
msgstr "上線時間"
msgid "When set to true, we request percentage values"
msgstr ""
-#: applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua:7
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json:2
msgid "Wireless"
msgstr "無線"
"You can install additional collectd-mod-* plugins to enable more statistics."
msgstr "您可以安裝更多的 collectd-mod-* 外掛以獲得更多的統計資料。"
-#: applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua:2
#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+#: applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json:2
msgid "cUrl"
msgstr "cUrl"
require("luci.sys.iptparser")
require("luci.util")
require("luci.i18n")
+require("luci.jsonc")
require("nixio.fs")
local ipt = luci.sys.iptparser.IptParser()
},
}
-local plugin_dir = "/usr/lib/lua/luci/statistics/plugins/"
+local plugin_dir = "/usr/share/luci/statistics/plugins/"
for filename in nixio.fs.dir(plugin_dir) do
- local plugin_fun = loadfile(plugin_dir .. filename)
- setfenv(plugin_fun, { _ = luci.i18n.translate })
- local plugin = plugin_fun()
local name = filename:gsub("%.lua", "")
if (name == "exec") then
plugins[name] = config_exec
elseif (name == "network") then
plugins[name] = config_network
else
- plugins[name] = plugin.legend
+ local plugin_def = luci.jsonc.parse(nixio.fs.readfile(plugin_dir .. filename))
+ if type(plugin_def) == "table" then
+ plugins[name] = plugin_def.legend
+ end
end
end
--- /dev/null
+{
+ "title": "APC UPS",
+ "category": "general",
+ "legend": [
+ ["Host", "Port"],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "Conntrack",
+ "category": "network",
+ "legend": [
+ [],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "Context Switches",
+ "category": "general",
+ "legend": [
+ [],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "Processor",
+ "category": "general",
+ "legend": [
+ [],
+ ["ValuesPercentage", "ReportByCpu", "ReportByState"],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "CPU Frequency",
+ "category": "general",
+ "legend": [
+ [],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "CSV Output",
+ "category": "output",
+ "legend": [
+ ["DataDir"],
+ ["StoreRates"],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "cUrl",
+ "category": "network"
+}
--- /dev/null
+{
+ "title": "Disk Space Usage",
+ "category": "general",
+ "legend": [
+ [],
+ ["IgnoreSelected"],
+ ["Devices", "MountPoints", "FSTypes"]
+ ]
+}
--- /dev/null
+{
+ "title": "Disk Usage",
+ "category": "general",
+ "legend": [
+ [],
+ ["IgnoreSelected"],
+ ["Disks"]
+ ]
+}
--- /dev/null
+{
+ "title": "DNS",
+ "category": "network",
+ "legend": [
+ [],
+ [],
+ ["Interfaces", "IgnoreSources"]
+ ]
+}
--- /dev/null
+{
+ "title": "Email",
+ "category": "general",
+ "legend": [
+ ["SocketFile", "SocketGroup", "SocketPerms", "MaxConns"],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "Entropy",
+ "category": "general",
+ "legend": [
+ [],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "Exec",
+ "category": "general"
+}
--- /dev/null
+{
+ "title": "Interfaces",
+ "category": "network",
+ "legend": [
+ [],
+ ["IgnoreSelected"],
+ ["Interfaces"]
+ ]
+}
--- /dev/null
+{
+ "title": "Firewall",
+ "category": "network"
+}
--- /dev/null
+{
+ "title": "Interrupts",
+ "category": "general",
+ "legend": [
+ [],
+ ["IgnoreSelected"],
+ ["Irqs"]
+ ]
+}
--- /dev/null
+{
+ "title": "Wireless",
+ "category": "network",
+ "legend": [
+ [],
+ ["IgnoreSelected"],
+ ["Interfaces"]
+ ]
+}
--- /dev/null
+{
+ "title": "System Load",
+ "category": "general",
+ "legend": [
+ [],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "Memory",
+ "category": "general",
+ "legend": [
+ [],
+ ["ValuesPercentage", "ValuesAbsolute"],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "Netlink",
+ "category": "network",
+ "legend": [
+ [],
+ ["IgnoreSelected"],
+ ["Interfaces", "VerboseInterfaces", "QDiscs", "Classes", "Filters"]
+ ]
+}
--- /dev/null
+{
+ "title": "Network",
+ "category": "output"
+}
--- /dev/null
+{
+ "title": "UPS",
+ "category": "general",
+ "legend": [
+ [],
+ [],
+ ["UPS"]
+ ]
+}
--- /dev/null
+{
+ "title": "OLSRd",
+ "category": "network",
+ "legend": [
+ ["Host", "Port", "CollectLinks", "CollectRoutes", "CollectTopology"],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "OpenVPN",
+ "category": "network",
+ "legend": [
+ [],
+ ["CollectIndividualUsers", "CollectUserCount", "CollectCompression", "ImprovedNamingSchema"],
+ ["StatusFile"]
+ ]
+}
--- /dev/null
+{
+ "title": "Ping",
+ "category": "network",
+ "legend": [
+ ["TTL", "Interval", "AddressFamily"],
+ [],
+ ["Hosts"]
+ ]
+}
--- /dev/null
+{
+ "title": "Processes",
+ "category": "general",
+ "legend": [
+ [],
+ [],
+ ["Processes"]
+ ]
+}
--- /dev/null
+{
+ "title": "RRDTool",
+ "category": "output",
+ "legend": [
+ ["DataDir", "StepSize", "HeartBeat", "RRARows", "XFF", "CacheFlush", "CacheTimeout"],
+ ["RRASingle"],
+ ["RRATimespans"]
+ ]
+}
--- /dev/null
+{
+ "title": "Sensors",
+ "category": "general",
+ "legend": [
+ [],
+ ["IgnoreSelected"],
+ ["Sensor"]
+ ]
+}
--- /dev/null
+{
+ "title": "Splash Leases",
+ "category": "network",
+ "legend": [
+ [],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "TCP Connections",
+ "category": "network",
+ "legend": [
+ [],
+ ["ListeningPorts"],
+ ["LocalPorts", "RemotePorts"]
+ ]
+}
--- /dev/null
+{
+ "title": "Thermal",
+ "category": "general",
+ "legend": [
+ [],
+ ["IgnoreSelected"],
+ ["Device"]
+ ]
+}
--- /dev/null
+{
+ "title": "UnixSock",
+ "category": "output",
+ "legend": [
+ ["SocketFile", "SocketGroup", "SocketPerms"],
+ [],
+ []
+ ]
+}
--- /dev/null
+{
+ "title": "Uptime",
+ "category": "general",
+ "legend": [
+ [],
+ [],
+ []
+ ]
+}
print $msguniq_in "msgid \"\"\nmsgstr \"Content-Type: text/plain; charset=UTF-8\"\n";
-if (open F, "find @ARGV -type f '(' -name '*.htm' -o -name '*.lua' -o -name '*.js' -o -path '*/menu.d/*.json' ')' |")
+if (open F, "find @ARGV -type f '(' -name '*.htm' -o -name '*.lua' -o -name '*.js' -o -path '*/menu.d/*.json' -o -path '*/statistics/plugins/*.json' ')' |")
{
while (defined( my $file = readline F))
{