diff options
Diffstat (limited to 'applications/luci-app-statistics')
99 files changed, 1470 insertions, 1467 deletions
diff --git a/applications/luci-app-statistics/Makefile b/applications/luci-app-statistics/Makefile index b38146c2c2..e1919b682c 100644 --- a/applications/luci-app-statistics/Makefile +++ b/applications/luci-app-statistics/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk 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 diff --git a/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua b/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua index 4c5db17d83..529cc2335a 100644 --- a/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua @@ -9,6 +9,7 @@ function index() require("nixio.fs") require("luci.util") require("luci.statistics.datatree") + require("luci.jsonc") -- override entry(): check for existence <plugin>.so where <plugin> is derived from the called path function _entry( path, ... ) @@ -31,14 +32,14 @@ function index() 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 diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua deleted file mode 100644 index c54b550c36..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/apcups.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { "Host", "Port" }, - { }, - { } - }, - label = _("APC UPS"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua deleted file mode 100644 index 59f1a006b2..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/conntrack.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { } - }, - label = _("Conntrack"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua deleted file mode 100644 index 90b44c2e7d..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/contextswitch.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { } - }, - label = _("Context Switches"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua deleted file mode 100644 index bae325990e..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "ValuesPercentage" , "ReportByCpu", "ReportByState" }, - { } - }, - label = _("Processor"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua deleted file mode 100644 index 29d2b8e80a..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/cpufreq.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { } - }, - label = _("CPU Frequency"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua deleted file mode 100644 index 17a8621afe..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/csv.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { "DataDir" }, - { "StoreRates" }, - { } - }, - label = _("CSV Output"), - category = "output" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua deleted file mode 100644 index 04217bdd6e..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/curl.lua +++ /dev/null @@ -1,4 +0,0 @@ -return { - label = _("cUrl"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/df.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/df.lua deleted file mode 100644 index 89acbff0ff..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/df.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "IgnoreSelected" }, - { "Devices", "MountPoints", "FSTypes" } - }, - label = _("Disk Space Usage"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua deleted file mode 100644 index 3d6eeb5ab4..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/disk.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "IgnoreSelected" }, - { "Disks" } - }, - label = _("Disk Usage"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua deleted file mode 100644 index 4d10b86580..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/dns.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { "Interfaces", "IgnoreSources" } - }, - label = _("DNS"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/email.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/email.lua deleted file mode 100644 index 6d4c54a574..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/email.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { "SocketFile", "SocketGroup", "SocketPerms", "MaxConns" }, - { }, - { } - }, - label = _("Email"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua deleted file mode 100644 index 3b48d1644d..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/entropy.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { } - }, - label = _("Entropy"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua deleted file mode 100644 index 4a972ccc84..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/exec.lua +++ /dev/null @@ -1,4 +0,0 @@ -return { - label = _("Exec"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua deleted file mode 100644 index e22026789b..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/interface.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "IgnoreSelected" }, - { "Interfaces" } - }, - label = _("Interfaces"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua deleted file mode 100644 index 75006b306b..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/iptables.lua +++ /dev/null @@ -1,4 +0,0 @@ -return { - label = _("Firewall"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua deleted file mode 100644 index fa17b939a8..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/irq.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "IgnoreSelected" }, - { "Irqs" } - }, - label = _("Interrupts"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua deleted file mode 100644 index 658ff2aebe..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/iwinfo.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "IgnoreSelected" }, - { "Interfaces" } - }, - label = _("Wireless"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/load.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/load.lua deleted file mode 100644 index fdd6891e2f..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/load.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { } - }, - label = _("System Load"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua deleted file mode 100644 index 9ad1b3f88d..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "ValuesPercentage", "ValuesAbsolute" }, - { } - }, - label = _("Memory"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua deleted file mode 100644 index 885caf0bda..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/netlink.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "IgnoreSelected" }, - { "Interfaces", "VerboseInterfaces", "QDiscs", "Classes", "Filters" } - }, - label = _("Netlink"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/network.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/network.lua deleted file mode 100644 index 5e4e620177..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/network.lua +++ /dev/null @@ -1,4 +0,0 @@ -return { - label = _("Network"), - category = "output" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua deleted file mode 100644 index c490c4fd7a..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/nut.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { "UPS" } - }, - label = _("UPS"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua deleted file mode 100644 index 077729788d..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/olsrd.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { "Host", "Port", "CollectLinks","CollectRoutes","CollectTopology"}, - { }, - { } - }, - label = _("OLSRd"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua deleted file mode 100644 index 850a995bc2..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/openvpn.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "CollectIndividualUsers", "CollectUserCount", "CollectCompression", "ImprovedNamingSchema" }, - { "StatusFile" } - }, - label = _("OpenVPN"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua deleted file mode 100644 index 9ad16d802b..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/ping.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { "TTL", "Interval", "AddressFamily" }, - { }, - { "Hosts" } - }, - label = _("Ping"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua deleted file mode 100644 index cabf8f1e41..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/processes.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { "Processes" } - }, - label = _("Processes"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua deleted file mode 100644 index de5b4c7ecd..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/rrdtool.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { "DataDir", "StepSize", "HeartBeat", "RRARows", "XFF", "CacheFlush", "CacheTimeout" }, - { "RRASingle" }, - { "RRATimespans" } - }, - label = _("RRDTool"), - category = "output" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua deleted file mode 100644 index 713ab9aef4..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/sensors.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "IgnoreSelected" }, - { "Sensor" } - }, - label = _("Sensors"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua deleted file mode 100644 index 5640ea2bf7..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/splash_leases.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { } - }, - label = _("Splash Leases"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua deleted file mode 100644 index bb76522d3a..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/tcpconns.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "ListeningPorts" }, - { "LocalPorts", "RemotePorts" } - }, - label = _("TCP Connections"), - category = "network" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua deleted file mode 100644 index e7e45f256b..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/thermal.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { "IgnoreSelected" }, - { "Device" } - }, - label = _("Thermal"), - category = "general" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua deleted file mode 100644 index 71f50e1dbb..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/unixsock.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { "SocketFile", "SocketGroup", "SocketPerms" }, - { }, - { } - }, - label = _("UnixSock"), - category = "output" -} diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua deleted file mode 100644 index bb51a6a964..0000000000 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/uptime.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - legend = { - { }, - { }, - { } - }, - label = _("Uptime"), - category = "general" -} diff --git a/applications/luci-app-statistics/po/bg/statistics.po b/applications/luci-app-statistics/po/bg/statistics.po index 2ff7192b40..d70e78172b 100644 --- a/applications/luci-app-statistics/po/bg/statistics.po +++ b/applications/luci-app-statistics/po/bg/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -72,8 +72,8 @@ 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 "" @@ -85,7 +85,7 @@ 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 "" @@ -128,8 +128,8 @@ msgid "" "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 "" @@ -137,8 +137,8 @@ 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 "" @@ -146,8 +146,8 @@ 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 "" @@ -179,13 +179,13 @@ 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 "" @@ -201,7 +201,7 @@ 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 "" @@ -249,8 +249,8 @@ 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 "" @@ -258,7 +258,7 @@ 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 "" @@ -274,8 +274,8 @@ 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 "" @@ -291,7 +291,7 @@ 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 "" @@ -299,7 +299,7 @@ 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 "" @@ -359,13 +359,13 @@ 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 "" @@ -407,8 +407,8 @@ 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 "" @@ -497,8 +497,8 @@ 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 "" @@ -506,7 +506,7 @@ 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 "" @@ -514,7 +514,7 @@ 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 "" @@ -532,8 +532,8 @@ 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 "" @@ -545,8 +545,8 @@ 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" @@ -566,7 +566,7 @@ 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 "" @@ -574,8 +574,8 @@ 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 "" @@ -591,8 +591,8 @@ 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 "" @@ -604,8 +604,8 @@ 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 "" @@ -625,7 +625,7 @@ 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 "" @@ -668,8 +668,8 @@ 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 "" @@ -685,7 +685,7 @@ 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 "" @@ -725,8 +725,8 @@ 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 "" @@ -734,7 +734,7 @@ 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" @@ -756,13 +756,13 @@ msgstr "" 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 "" @@ -961,8 +961,8 @@ 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 "" @@ -994,8 +994,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1011,7 +1011,7 @@ 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 "" @@ -1019,8 +1019,8 @@ 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 "" @@ -1058,8 +1058,8 @@ 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 "" @@ -1072,8 +1072,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index 3ef5a85963..117176d121 100644 --- a/applications/luci-app-statistics/po/ca/statistics.po +++ b/applications/luci-app-statistics/po/ca/statistics.po @@ -16,8 +16,8 @@ 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 "" @@ -76,8 +76,8 @@ 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" @@ -89,7 +89,7 @@ msgstr "Configuració del connector de freqüència de 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" @@ -135,8 +135,8 @@ msgstr "" "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" @@ -144,8 +144,8 @@ 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 "" @@ -153,8 +153,8 @@ 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" @@ -186,13 +186,13 @@ msgstr "Directori per a les subconfiguracions" 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" @@ -208,7 +208,7 @@ msgstr "Mostra l'hora" 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" @@ -256,8 +256,8 @@ msgstr "Activa" 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 "" @@ -265,7 +265,7 @@ 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" @@ -281,8 +281,8 @@ msgstr "" 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" @@ -298,7 +298,7 @@ msgstr "Readreçant entre adreces que reben connexions i adreces de servidors" 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" @@ -306,7 +306,7 @@ 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" @@ -373,13 +373,13 @@ msgstr "InterfÃcie entrant" 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" @@ -421,8 +421,8 @@ msgstr "" 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" @@ -511,8 +511,8 @@ msgstr "Nom" 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" @@ -520,7 +520,7 @@ 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" @@ -528,7 +528,7 @@ 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" @@ -546,8 +546,8 @@ msgstr "" 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" @@ -559,8 +559,8 @@ msgstr "Configuració del connector 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" @@ -580,7 +580,7 @@ msgstr "Opcions" 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" @@ -588,8 +588,8 @@ 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" @@ -605,8 +605,8 @@ msgstr "Port" 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" @@ -618,8 +618,8 @@ msgstr "Configuració del connector de 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" @@ -639,7 +639,7 @@ msgstr "Interval de batec de cor RRD" 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" @@ -682,8 +682,8 @@ msgstr "Segons" 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" @@ -699,7 +699,7 @@ msgstr "Amfitrió del servidor" 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 "" @@ -739,8 +739,8 @@ msgstr "Especifica què informació es recull sobre rutes." 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 "" @@ -748,7 +748,7 @@ 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" @@ -772,13 +772,13 @@ msgstr "" 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" @@ -1022,8 +1022,8 @@ 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 "" @@ -1059,8 +1059,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Intenta resoldre el nom de mà quina (fqdn)" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1076,7 +1076,7 @@ msgstr "Nom UPS en format NUT ups@host" 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" @@ -1084,8 +1084,8 @@ 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 "" @@ -1123,8 +1123,8 @@ 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" @@ -1137,8 +1137,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index 3e3790d92c..c99029531a 100644 --- a/applications/luci-app-statistics/po/cs/statistics.po +++ b/applications/luci-app-statistics/po/cs/statistics.po @@ -12,8 +12,8 @@ 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" @@ -71,8 +71,8 @@ msgstr "TÃmto nastavenÃm nebude CPU souhrnem vÅ¡ech procesorů v systému" 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" @@ -84,7 +84,7 @@ msgstr "Konfigurace pluginu pro frekvenci 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" @@ -130,8 +130,8 @@ msgstr "" "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" @@ -139,8 +139,8 @@ 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" @@ -148,8 +148,8 @@ 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" @@ -181,13 +181,13 @@ msgstr "Adresář pro pod-nastavenÃ" 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" @@ -203,7 +203,7 @@ msgstr "Zobrazit Äasové rozpÄ›tà »" 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" @@ -251,8 +251,8 @@ msgstr "Povolit" 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" @@ -260,7 +260,7 @@ 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" @@ -276,8 +276,8 @@ msgstr "DalÅ¡Ã položky" 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" @@ -294,7 +294,7 @@ msgstr "PÅ™esmÄ›rovánà mezi naslouchajÃcÃmi a serverovými adresami" 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" @@ -302,7 +302,7 @@ 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" @@ -372,13 +372,13 @@ msgstr "PÅ™Ãchozà rozhranÃ" 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Ã" @@ -421,8 +421,8 @@ msgstr "" 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ěť" @@ -511,8 +511,8 @@ msgstr "Název" 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" @@ -520,7 +520,7 @@ 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ÃÅ¥" @@ -528,7 +528,7 @@ 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" @@ -546,8 +546,8 @@ msgstr "" 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" @@ -559,8 +559,8 @@ msgstr "Nastavenà pluginu 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" @@ -580,7 +580,7 @@ msgstr "Možnosti" 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" @@ -588,8 +588,8 @@ 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" @@ -605,8 +605,8 @@ msgstr "Port" 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" @@ -618,8 +618,8 @@ msgstr "Nastavenà pluginu 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" @@ -640,7 +640,7 @@ 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" @@ -683,8 +683,8 @@ msgstr "Sekundy" 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" @@ -700,7 +700,7 @@ msgstr "Hostitel serveru" 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Ã" @@ -740,8 +740,8 @@ msgstr "UrÄuje, jaké informace sbÃrat o cestách" 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 "" @@ -749,7 +749,7 @@ 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" @@ -771,13 +771,13 @@ msgstr "Ukládat data jako pomÄ›rné hodnoty mÃsto absolutnÃch" 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Ã" @@ -1023,8 +1023,8 @@ msgstr "" 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" @@ -1058,8 +1058,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Zkuste vyhledat plnÄ› kvalifikovaný název hostitele" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1075,7 +1075,7 @@ msgstr "Název UPS ve formátu NUT ups@hostitel" 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" @@ -1083,8 +1083,8 @@ 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" @@ -1124,8 +1124,8 @@ msgstr "Je-li nastaveno na 'povoleno', zaznamenávájà se absolutnà hodnoty" 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ÃÅ¥" @@ -1140,8 +1140,8 @@ msgstr "" "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" diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index a2c6aced07..ee99842398 100644 --- a/applications/luci-app-statistics/po/de/statistics.po +++ b/applications/luci-app-statistics/po/de/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -72,8 +72,8 @@ 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" @@ -85,7 +85,7 @@ msgstr "CPU-Frequenz Plugin Konfiguration" 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" @@ -131,8 +131,8 @@ msgstr "" "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" @@ -140,8 +140,8 @@ 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 "" @@ -149,8 +149,8 @@ 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" @@ -182,13 +182,13 @@ msgstr "Verzeichnis für Unterkonfigurationen" 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" @@ -204,7 +204,7 @@ msgstr "Zeitspanne zeigen »" 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" @@ -252,8 +252,8 @@ msgstr "Aktivieren" 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" @@ -261,7 +261,7 @@ 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" @@ -277,8 +277,8 @@ msgstr "" 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" @@ -294,7 +294,7 @@ msgstr "Weiterleitung zwischen Listen- und Server-Adressen" 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 "" @@ -302,7 +302,7 @@ 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" @@ -371,13 +371,13 @@ msgstr "eingehende Schnittstelle" 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" @@ -421,8 +421,8 @@ msgstr "" 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" @@ -511,8 +511,8 @@ msgstr "Name" 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" @@ -520,7 +520,7 @@ 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" @@ -528,7 +528,7 @@ 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" @@ -546,8 +546,8 @@ msgstr "" 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" @@ -559,8 +559,8 @@ msgstr "OLSRd-Plugin-Konfiguration" 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" @@ -580,7 +580,7 @@ msgstr "Optionen" 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" @@ -588,8 +588,8 @@ 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" @@ -605,8 +605,8 @@ msgstr "Port" 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" @@ -618,8 +618,8 @@ msgstr "Prozess Plugin Konfiguration" 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" @@ -639,7 +639,7 @@ msgstr "RRD Heartbeatintervall" 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" @@ -682,8 +682,8 @@ msgstr "Sekunden" 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 "" @@ -699,7 +699,7 @@ msgstr "Server-Host" 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 "" @@ -739,8 +739,8 @@ msgstr "Bestimmt die zu sammelnden Per-Route-Informationen." 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 "" @@ -748,7 +748,7 @@ 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" @@ -770,13 +770,13 @@ msgstr "Werte nicht absolut sondern als Raten speichern" 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" @@ -1025,8 +1025,8 @@ 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 "" @@ -1062,8 +1062,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "automatisch vollen Hostnamen herausfinden" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1079,7 +1079,7 @@ msgstr "Name der USV in NUT im Format usv@host " 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" @@ -1087,8 +1087,8 @@ 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" @@ -1126,8 +1126,8 @@ 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 "WLAN" @@ -1140,8 +1140,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index a36ea08ff8..291ed9df2d 100644 --- a/applications/luci-app-statistics/po/el/statistics.po +++ b/applications/luci-app-statistics/po/el/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -73,8 +73,8 @@ 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 "" @@ -86,7 +86,7 @@ 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" @@ -132,8 +132,8 @@ msgstr "" "πηγÎÏ‚ μÎσω διάφοÏων Ï€ÏοσθÎτων. Σε αυτή τη σελίδα μποÏείτε να αλλάξετε τις " "γενικÎÏ‚ Ïυθμίσεις του δαίμονα 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" @@ -141,8 +141,8 @@ 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 "" @@ -150,8 +150,8 @@ 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" @@ -184,13 +184,13 @@ 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 "ΧÏήση Δίσκου" @@ -206,7 +206,7 @@ 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 "Ηλ. ΤαχυδÏομείο" @@ -254,8 +254,8 @@ 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 "" @@ -263,7 +263,7 @@ 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" @@ -279,8 +279,8 @@ 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 "Τείχος Ï€Ïοστασίας" @@ -296,7 +296,7 @@ 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 "" @@ -304,7 +304,7 @@ 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 "ΓÏαφικÎÏ‚ παÏαστάσεις" @@ -364,13 +364,13 @@ 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 "ΔιακοπÎÏ‚" @@ -412,8 +412,8 @@ 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 "Μνήμη" @@ -502,8 +502,8 @@ 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" @@ -511,7 +511,7 @@ 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 "Δίκτυο" @@ -519,7 +519,7 @@ 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 "Î Ïόσθετα δικτÏου" @@ -537,8 +537,8 @@ 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" @@ -550,8 +550,8 @@ 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" @@ -571,7 +571,7 @@ 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 "Î Ïόσθετα εξόδου" @@ -579,8 +579,8 @@ 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" @@ -596,8 +596,8 @@ 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 "ΔιεÏγασίες" @@ -609,8 +609,8 @@ 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 "ΕπεξεÏγαστής" @@ -630,7 +630,7 @@ 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" @@ -673,8 +673,8 @@ 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 "" @@ -690,7 +690,7 @@ 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 "" @@ -730,8 +730,8 @@ 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 "" @@ -739,7 +739,7 @@ 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" @@ -761,13 +761,13 @@ msgstr "" 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" @@ -966,8 +966,8 @@ 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 "" @@ -999,8 +999,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1016,7 +1016,7 @@ 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" @@ -1024,8 +1024,8 @@ 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 "" @@ -1063,8 +1063,8 @@ 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 "ΑσÏÏματο" @@ -1077,8 +1077,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index bb2cbc6508..0938262acb 100644 --- a/applications/luci-app-statistics/po/en/statistics.po +++ b/applications/luci-app-statistics/po/en/statistics.po @@ -13,8 +13,8 @@ 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 "" @@ -71,8 +71,8 @@ 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 "" @@ -84,7 +84,7 @@ 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" @@ -130,8 +130,8 @@ msgstr "" "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 "" @@ -139,8 +139,8 @@ 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 "" @@ -148,8 +148,8 @@ 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" @@ -181,13 +181,13 @@ msgstr "Directory for sub-configurations" 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" @@ -203,7 +203,7 @@ msgstr "Display timespan »" 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" @@ -251,8 +251,8 @@ msgstr "" 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 "" @@ -260,7 +260,7 @@ 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" @@ -276,8 +276,8 @@ msgstr "" 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" @@ -293,7 +293,7 @@ msgstr "Forwarding between listen and server addresses" 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 "" @@ -301,7 +301,7 @@ 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" @@ -368,13 +368,13 @@ msgstr "Incoming interface" 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" @@ -416,8 +416,8 @@ msgstr "" 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 "" @@ -506,8 +506,8 @@ 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" @@ -515,7 +515,7 @@ 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" @@ -523,7 +523,7 @@ 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" @@ -541,8 +541,8 @@ msgstr "" 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 "" @@ -554,8 +554,8 @@ 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 "" @@ -575,7 +575,7 @@ msgstr "Options" 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" @@ -583,8 +583,8 @@ 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" @@ -600,8 +600,8 @@ 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 "Processes" @@ -613,8 +613,8 @@ msgstr "Processes Plugin Configuration" 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" @@ -634,7 +634,7 @@ msgstr "RRD heart beat interval" 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" @@ -677,8 +677,8 @@ msgstr "Seconds" 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 "" @@ -694,7 +694,7 @@ msgstr "Server host" 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 "" @@ -734,8 +734,8 @@ 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 "" @@ -743,7 +743,7 @@ 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" @@ -765,13 +765,13 @@ msgstr "Store data values as rates instead of absolute values" 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" @@ -1007,8 +1007,8 @@ 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 "" @@ -1043,8 +1043,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Try to lookup fully qualified hostname" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1060,7 +1060,7 @@ 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" @@ -1068,8 +1068,8 @@ 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 "" @@ -1107,8 +1107,8 @@ 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" @@ -1121,8 +1121,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index 916be494a5..a81f7098d3 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/statistics.po @@ -14,8 +14,8 @@ 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" @@ -74,8 +74,8 @@ msgstr "" 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" @@ -87,7 +87,7 @@ msgstr "Configuración del complemento de frecuencia de la 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" @@ -133,8 +133,8 @@ msgstr "" "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" @@ -142,8 +142,8 @@ 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" @@ -151,8 +151,8 @@ 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" @@ -184,13 +184,13 @@ msgstr "Directorio para las subconfiguraciones" 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" @@ -206,7 +206,7 @@ msgstr "Mostrar lapso de tiempo »" 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" @@ -254,8 +254,8 @@ msgstr "Activar" 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" @@ -263,7 +263,7 @@ 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" @@ -279,8 +279,8 @@ msgstr "Ãtems extra" 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" @@ -296,7 +296,7 @@ msgstr "Reenviar entre las direcciones de escucha y servidor" 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" @@ -304,7 +304,7 @@ 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" @@ -372,13 +372,13 @@ msgstr "Interfaz de entrada" 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" @@ -422,8 +422,8 @@ msgstr "" 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" @@ -512,8 +512,8 @@ msgstr "Nombre" 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" @@ -521,7 +521,7 @@ 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" @@ -529,7 +529,7 @@ 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" @@ -550,8 +550,8 @@ msgstr "" 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" @@ -563,8 +563,8 @@ msgstr "Configuración del plugin \"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" @@ -584,7 +584,7 @@ msgstr "Opciones" 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" @@ -592,8 +592,8 @@ 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" @@ -609,8 +609,8 @@ msgstr "Puerto" 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" @@ -622,8 +622,8 @@ msgstr "Configuración del plugin \"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" @@ -643,7 +643,7 @@ msgstr "Intervalo de pulso RRD" 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" @@ -686,8 +686,8 @@ msgstr "Segundos" 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" @@ -703,7 +703,7 @@ msgstr "Host servidor" 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" @@ -743,8 +743,8 @@ msgstr "Especifica qué información recolectar sobre rutas." 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" @@ -752,7 +752,7 @@ 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" @@ -774,13 +774,13 @@ msgstr "Guardar datos como ratios en vez de valores absolutos" 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" @@ -1045,8 +1045,8 @@ msgstr "" "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" @@ -1086,8 +1086,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Intenta resolver el nombre de máquina cualificado" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1103,7 +1103,7 @@ msgstr "Nombre del SAI en el formato de NUT sai@máquina" 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" @@ -1111,8 +1111,8 @@ 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" @@ -1152,8 +1152,8 @@ msgstr "Cuando se establece en verdadero, se solicita valores absolutos" 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" @@ -1168,8 +1168,8 @@ msgstr "" "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" diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index c1b24700c2..717a2f0eeb 100644 --- a/applications/luci-app-statistics/po/fr/statistics.po +++ b/applications/luci-app-statistics/po/fr/statistics.po @@ -14,8 +14,8 @@ msgstr "" "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 "" @@ -72,8 +72,8 @@ 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" @@ -85,7 +85,7 @@ msgstr "" 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" @@ -131,8 +131,8 @@ msgstr "" "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" @@ -140,8 +140,8 @@ 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 "" @@ -149,8 +149,8 @@ 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" @@ -182,13 +182,13 @@ msgstr "Répertoire pour les sous-configurations" 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" @@ -204,7 +204,7 @@ msgstr "Période affichée »" 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" @@ -252,8 +252,8 @@ msgstr "Activer" 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 "" @@ -261,7 +261,7 @@ 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" @@ -277,8 +277,8 @@ msgstr "" 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" @@ -294,7 +294,7 @@ msgstr "Transfert entre les adresses en écoute et du serveur" 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 "" @@ -302,7 +302,7 @@ 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" @@ -370,13 +370,13 @@ msgstr "Interface entrante" 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" @@ -418,8 +418,8 @@ msgstr "" 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" @@ -508,8 +508,8 @@ msgstr "Nom" 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 "" @@ -517,7 +517,7 @@ 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" @@ -525,7 +525,7 @@ 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" @@ -543,8 +543,8 @@ msgstr "" 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" @@ -556,8 +556,8 @@ msgstr "" 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" @@ -577,7 +577,7 @@ msgstr "Options" 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" @@ -585,8 +585,8 @@ 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" @@ -602,8 +602,8 @@ msgstr "Port" 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" @@ -615,8 +615,8 @@ msgstr "Configuration du greffon des 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" @@ -636,7 +636,7 @@ msgstr "Intervalle de la pulsation RRD" 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" @@ -679,8 +679,8 @@ msgstr "Secondes" 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" @@ -696,7 +696,7 @@ msgstr "Hôte du serveur" 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 "" @@ -736,8 +736,8 @@ msgstr "Spécifie les informations à collecter sur les itinéraires." 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 "" @@ -745,7 +745,7 @@ 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" @@ -767,13 +767,13 @@ msgstr "Stocke les données sous forme de taux plutôt que de valeurs absolues" 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" @@ -1016,8 +1016,8 @@ 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 "Thermique" @@ -1053,8 +1053,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Tente de récupérer des noms d'hôtes complètement qualifiés" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1070,7 +1070,7 @@ 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 "Socket Unix" @@ -1078,8 +1078,8 @@ 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" @@ -1117,8 +1117,8 @@ 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 "Sans-fil" @@ -1131,8 +1131,8 @@ msgid "" "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" diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index d1dacb6136..d98fe5c0e9 100644 --- a/applications/luci-app-statistics/po/he/statistics.po +++ b/applications/luci-app-statistics/po/he/statistics.po @@ -13,8 +13,8 @@ msgstr "" "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 "" @@ -71,8 +71,8 @@ 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 "" @@ -84,7 +84,7 @@ 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 "" @@ -127,8 +127,8 @@ msgid "" "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 "" @@ -136,8 +136,8 @@ 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 "" @@ -145,8 +145,8 @@ 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 "" @@ -178,13 +178,13 @@ 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 "" @@ -200,7 +200,7 @@ 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 "" @@ -248,8 +248,8 @@ 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 "" @@ -257,7 +257,7 @@ 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 "" @@ -273,8 +273,8 @@ 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 "" @@ -290,7 +290,7 @@ 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 "" @@ -298,7 +298,7 @@ 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 "" @@ -358,13 +358,13 @@ 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 "" @@ -406,8 +406,8 @@ 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 "" @@ -496,8 +496,8 @@ 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 "" @@ -505,7 +505,7 @@ 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 "" @@ -513,7 +513,7 @@ 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 "" @@ -531,8 +531,8 @@ 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 "" @@ -544,8 +544,8 @@ 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 "" @@ -565,7 +565,7 @@ 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 "" @@ -573,8 +573,8 @@ 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 "" @@ -590,8 +590,8 @@ 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 "" @@ -603,8 +603,8 @@ 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 "" @@ -624,7 +624,7 @@ 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 "" @@ -667,8 +667,8 @@ 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 "" @@ -684,7 +684,7 @@ 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 "" @@ -724,8 +724,8 @@ 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 "" @@ -733,7 +733,7 @@ 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" @@ -755,13 +755,13 @@ msgstr "" 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 "" @@ -960,8 +960,8 @@ 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 "" @@ -993,8 +993,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1010,7 +1010,7 @@ 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 "" @@ -1018,8 +1018,8 @@ 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 "" @@ -1057,8 +1057,8 @@ 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 "" @@ -1071,8 +1071,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/hi/statistics.po b/applications/luci-app-statistics/po/hi/statistics.po index c544d23bef..e260bd3bd7 100644 --- a/applications/luci-app-statistics/po/hi/statistics.po +++ b/applications/luci-app-statistics/po/hi/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -72,8 +72,8 @@ 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 "" @@ -85,7 +85,7 @@ 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 "" @@ -128,8 +128,8 @@ msgid "" "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 "" @@ -137,8 +137,8 @@ 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 "" @@ -146,8 +146,8 @@ 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 "" @@ -179,13 +179,13 @@ 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 "" @@ -201,7 +201,7 @@ 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 "" @@ -249,8 +249,8 @@ 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 "" @@ -258,7 +258,7 @@ 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 "" @@ -274,8 +274,8 @@ 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 "" @@ -291,7 +291,7 @@ 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 "" @@ -299,7 +299,7 @@ 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 "" @@ -359,13 +359,13 @@ 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 "" @@ -407,8 +407,8 @@ 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 "" @@ -497,8 +497,8 @@ 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 "" @@ -506,7 +506,7 @@ 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 "" @@ -514,7 +514,7 @@ 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 "" @@ -532,8 +532,8 @@ 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 "" @@ -545,8 +545,8 @@ 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" @@ -566,7 +566,7 @@ 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 "" @@ -574,8 +574,8 @@ 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 "" @@ -591,8 +591,8 @@ 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 "" @@ -604,8 +604,8 @@ 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 "" @@ -625,7 +625,7 @@ 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 "" @@ -668,8 +668,8 @@ 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 "" @@ -685,7 +685,7 @@ 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 "" @@ -725,8 +725,8 @@ 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 "" @@ -734,7 +734,7 @@ 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" @@ -756,13 +756,13 @@ msgstr "" 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 "" @@ -961,8 +961,8 @@ 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 "" @@ -994,8 +994,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1011,7 +1011,7 @@ 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 "" @@ -1019,8 +1019,8 @@ 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 "" @@ -1058,8 +1058,8 @@ 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 "" @@ -1072,8 +1072,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index 286a69948c..930214b75b 100644 --- a/applications/luci-app-statistics/po/hu/statistics.po +++ b/applications/luci-app-statistics/po/hu/statistics.po @@ -12,8 +12,8 @@ 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" @@ -71,8 +71,8 @@ msgstr "" 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" @@ -84,7 +84,7 @@ msgstr "CPU-frekvencia bÅ‘vÃtmény beállÃtása" 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" @@ -130,8 +130,8 @@ msgstr "" "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Å‘" @@ -139,8 +139,8 @@ 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" @@ -148,8 +148,8 @@ 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" @@ -181,13 +181,13 @@ msgstr "AlbeállÃtások könyvtára" 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" @@ -203,7 +203,7 @@ msgstr "IdÅ‘szak megjelenÃtése »" 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" @@ -251,8 +251,8 @@ msgstr "Engedélyezés" 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" @@ -260,7 +260,7 @@ 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" @@ -276,8 +276,8 @@ msgstr "További elemek" 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" @@ -293,7 +293,7 @@ msgstr "TovábbÃtás a figyelési és a kiszolgáló cÃmek között" 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" @@ -301,7 +301,7 @@ 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" @@ -371,13 +371,13 @@ msgstr "BejövÅ‘ csatoló" 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" @@ -423,8 +423,8 @@ msgstr "" 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" @@ -513,8 +513,8 @@ msgstr "Név" 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" @@ -522,7 +522,7 @@ 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" @@ -530,7 +530,7 @@ 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" @@ -551,8 +551,8 @@ msgstr "" 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" @@ -564,8 +564,8 @@ msgstr "OLSRd bÅ‘vÃtmény beállÃtása" 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" @@ -585,7 +585,7 @@ msgstr "BeállÃtások" 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" @@ -593,8 +593,8 @@ 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" @@ -610,8 +610,8 @@ msgstr "Port" 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" @@ -623,8 +623,8 @@ msgstr "Folyamatok bÅ‘vÃtmény beállÃtása" 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" @@ -644,7 +644,7 @@ msgstr "RRD szÃvverési idÅ‘köz" 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" @@ -687,8 +687,8 @@ msgstr "Másodperc" 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" @@ -704,7 +704,7 @@ msgstr "Kiszolgáló gép" 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" @@ -734,7 +734,8 @@ msgstr "Forrás IP-tartomány" #: 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." @@ -746,8 +747,8 @@ msgstr "" "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" @@ -755,7 +756,7 @@ 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" @@ -777,13 +778,13 @@ msgstr "Az adatértékek arányként történÅ‘ tárolása abszolút értékek h 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" @@ -982,10 +983,10 @@ msgid "" "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 "" @@ -1028,8 +1029,8 @@ 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 "" @@ -1044,8 +1045,8 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" "Az működési idÅ‘ bÅ‘vÃtmény a rendszer működési idejérÅ‘l gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1082,8 +1083,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Teljesen minÅ‘sÃtett gépnév keresésének kÃsérlete" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1099,7 +1100,7 @@ msgstr "UPS neve NUT ups@gép formátumban" 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" @@ -1107,8 +1108,8 @@ 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Å‘" @@ -1148,8 +1149,8 @@ msgstr "Ha igazra van állÃtva, akkor abszolút értékeket kérünk" 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" @@ -1164,8 +1165,8 @@ msgstr "" "TelepÃthet további collectd-mod-* bÅ‘vÃtményeket is több statisztika " "engedélyezéséhez." -#: applications/luci-app-statistics/luasrc/statistics/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" diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index 0f00ad9c21..c966c57aff 100644 --- a/applications/luci-app-statistics/po/it/statistics.po +++ b/applications/luci-app-statistics/po/it/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -72,8 +72,8 @@ 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 "" @@ -85,7 +85,7 @@ 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 "" @@ -131,8 +131,8 @@ 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 "" @@ -140,8 +140,8 @@ 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 "" @@ -149,8 +149,8 @@ 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 "" @@ -182,13 +182,13 @@ 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 "" @@ -204,7 +204,7 @@ 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 "" @@ -252,8 +252,8 @@ 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 "" @@ -261,7 +261,7 @@ 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 "" @@ -277,8 +277,8 @@ 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" @@ -294,7 +294,7 @@ 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 "" @@ -302,7 +302,7 @@ 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 "" @@ -367,13 +367,13 @@ 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 "" @@ -417,8 +417,8 @@ 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 "" @@ -507,8 +507,8 @@ msgstr "Nome" 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 "" @@ -516,7 +516,7 @@ 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" @@ -524,7 +524,7 @@ 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 "" @@ -542,8 +542,8 @@ 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 "" @@ -555,8 +555,8 @@ 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" @@ -576,7 +576,7 @@ 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 "" @@ -584,8 +584,8 @@ 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 "" @@ -601,8 +601,8 @@ msgstr "Port" 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 "" @@ -614,8 +614,8 @@ 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 "" @@ -635,7 +635,7 @@ 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 "" @@ -678,8 +678,8 @@ 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 "" @@ -695,7 +695,7 @@ 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 "" @@ -735,8 +735,8 @@ 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 "" @@ -744,7 +744,7 @@ 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" @@ -766,13 +766,13 @@ msgstr "" 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 "" @@ -971,8 +971,8 @@ 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 "" @@ -1004,8 +1004,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1021,7 +1021,7 @@ 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 "" @@ -1029,8 +1029,8 @@ 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 "" @@ -1068,8 +1068,8 @@ 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 "" @@ -1082,8 +1082,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index 9c4ab780ca..5c7818e4db 100644 --- a/applications/luci-app-statistics/po/ja/statistics.po +++ b/applications/luci-app-statistics/po/ja/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -72,8 +72,8 @@ 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 周波数" @@ -85,7 +85,7 @@ 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 出力" @@ -130,8 +130,8 @@ msgstr "" "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" @@ -139,8 +139,8 @@ 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 "" @@ -148,8 +148,8 @@ 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" @@ -181,13 +181,13 @@ 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 "ディスクã®ä½¿ç”¨" @@ -203,7 +203,7 @@ 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メール" @@ -251,8 +251,8 @@ 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 "エントãƒãƒ”ー" @@ -260,7 +260,7 @@ 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 "" @@ -276,8 +276,8 @@ 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 "ファイアウォール" @@ -293,7 +293,7 @@ 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 "一般プラグイン" @@ -301,7 +301,7 @@ 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 "グラフ" @@ -368,13 +368,13 @@ 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 "割込ã¿" @@ -419,8 +419,8 @@ 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 "メモリー" @@ -509,8 +509,8 @@ 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" @@ -518,7 +518,7 @@ 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 "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯" @@ -526,7 +526,7 @@ 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 "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ãƒ—ラグイン" @@ -547,8 +547,8 @@ 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" @@ -560,8 +560,8 @@ 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" @@ -581,7 +581,7 @@ 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 "出力プラグイン" @@ -589,8 +589,8 @@ 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" @@ -606,8 +606,8 @@ 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 "プãƒã‚»ã‚¹" @@ -619,8 +619,8 @@ 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 "プãƒã‚»ãƒƒã‚µãƒ¼" @@ -640,7 +640,7 @@ msgstr "RRD ãƒãƒ¼ãƒˆãƒ“ート間隔" 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" @@ -683,8 +683,8 @@ 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 "センサー" @@ -700,7 +700,7 @@ 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 "è¨å®š" @@ -740,8 +740,8 @@ 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 "" @@ -749,7 +749,7 @@ 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" @@ -771,13 +771,13 @@ msgstr "データ値を絶対値ã®ä»£ã‚ã‚Šã«ãƒ¬ãƒ¼ãƒˆã¨ã—ã¦ä¿å˜ã—ã¾ã™ 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 接続" @@ -1023,8 +1023,8 @@ 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 "サーマル" @@ -1061,8 +1061,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1078,7 +1078,7 @@ msgstr "ups@host å½¢å¼ã®NUT内ã®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" @@ -1086,8 +1086,8 @@ 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 "稼åƒæ™‚é–“" @@ -1125,8 +1125,8 @@ 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 "ç„¡ç·š" @@ -1141,8 +1141,8 @@ 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 "" diff --git a/applications/luci-app-statistics/po/ko/statistics.po b/applications/luci-app-statistics/po/ko/statistics.po index ab4568507a..83a1a5783c 100644 --- a/applications/luci-app-statistics/po/ko/statistics.po +++ b/applications/luci-app-statistics/po/ko/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -72,8 +72,8 @@ 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 "" @@ -85,7 +85,7 @@ 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 "" @@ -128,8 +128,8 @@ msgid "" "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 "" @@ -137,8 +137,8 @@ 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 "" @@ -146,8 +146,8 @@ 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 "" @@ -179,13 +179,13 @@ 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 "" @@ -201,7 +201,7 @@ 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 "" @@ -249,8 +249,8 @@ 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 "" @@ -258,7 +258,7 @@ 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 "" @@ -274,8 +274,8 @@ 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 "" @@ -291,7 +291,7 @@ 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 "" @@ -299,7 +299,7 @@ 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 "" @@ -359,13 +359,13 @@ 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 "" @@ -407,8 +407,8 @@ 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 "" @@ -497,8 +497,8 @@ 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 "" @@ -506,7 +506,7 @@ 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 "" @@ -514,7 +514,7 @@ 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 "" @@ -532,8 +532,8 @@ 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 "" @@ -545,8 +545,8 @@ 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" @@ -566,7 +566,7 @@ 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 "" @@ -574,8 +574,8 @@ 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 "" @@ -591,8 +591,8 @@ 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 "" @@ -604,8 +604,8 @@ 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 "" @@ -625,7 +625,7 @@ 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 "" @@ -668,8 +668,8 @@ 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 "" @@ -685,7 +685,7 @@ 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 "" @@ -725,8 +725,8 @@ 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 "" @@ -734,7 +734,7 @@ 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" @@ -756,13 +756,13 @@ msgstr "" 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 "" @@ -961,8 +961,8 @@ 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 "" @@ -994,8 +994,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1011,7 +1011,7 @@ 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 "" @@ -1019,8 +1019,8 @@ 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 "" @@ -1058,8 +1058,8 @@ 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 "" @@ -1072,8 +1072,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/mr/statistics.po b/applications/luci-app-statistics/po/mr/statistics.po index b41880f467..50a8daf296 100644 --- a/applications/luci-app-statistics/po/mr/statistics.po +++ b/applications/luci-app-statistics/po/mr/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -72,8 +72,8 @@ 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 "" @@ -85,7 +85,7 @@ 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 "" @@ -128,8 +128,8 @@ msgid "" "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 "" @@ -137,8 +137,8 @@ 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 "" @@ -146,8 +146,8 @@ 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 "" @@ -179,13 +179,13 @@ 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 "" @@ -201,7 +201,7 @@ 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 "" @@ -249,8 +249,8 @@ 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 "" @@ -258,7 +258,7 @@ 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 "" @@ -274,8 +274,8 @@ 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 "" @@ -291,7 +291,7 @@ 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 "" @@ -299,7 +299,7 @@ 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 "" @@ -359,13 +359,13 @@ 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 "" @@ -407,8 +407,8 @@ 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 "" @@ -497,8 +497,8 @@ 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 "" @@ -506,7 +506,7 @@ 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 "" @@ -514,7 +514,7 @@ 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 "" @@ -532,8 +532,8 @@ 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 "" @@ -545,8 +545,8 @@ 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" @@ -566,7 +566,7 @@ 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 "" @@ -574,8 +574,8 @@ 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 "" @@ -591,8 +591,8 @@ 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 "" @@ -604,8 +604,8 @@ 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 "" @@ -625,7 +625,7 @@ 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 "" @@ -668,8 +668,8 @@ 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 "" @@ -685,7 +685,7 @@ 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 "" @@ -725,8 +725,8 @@ 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 "" @@ -734,7 +734,7 @@ 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" @@ -756,13 +756,13 @@ msgstr "" 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 "" @@ -961,8 +961,8 @@ 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 "" @@ -994,8 +994,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1011,7 +1011,7 @@ 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 "" @@ -1019,8 +1019,8 @@ 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 "" @@ -1058,8 +1058,8 @@ 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 "" @@ -1072,8 +1072,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index 9b9d28aa55..7b6f0a88a7 100644 --- a/applications/luci-app-statistics/po/ms/statistics.po +++ b/applications/luci-app-statistics/po/ms/statistics.po @@ -14,8 +14,8 @@ 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 "" @@ -72,8 +72,8 @@ 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 "" @@ -85,7 +85,7 @@ 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 "" @@ -128,8 +128,8 @@ msgid "" "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 "" @@ -137,8 +137,8 @@ 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 "" @@ -146,8 +146,8 @@ 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 "" @@ -179,13 +179,13 @@ 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 "" @@ -201,7 +201,7 @@ 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 "" @@ -249,8 +249,8 @@ 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 "" @@ -258,7 +258,7 @@ 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 "" @@ -274,8 +274,8 @@ 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 "" @@ -291,7 +291,7 @@ 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 "" @@ -299,7 +299,7 @@ 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 "" @@ -359,13 +359,13 @@ 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 "" @@ -407,8 +407,8 @@ 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 "" @@ -497,8 +497,8 @@ 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 "" @@ -506,7 +506,7 @@ 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 "" @@ -514,7 +514,7 @@ 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 "" @@ -532,8 +532,8 @@ 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 "" @@ -545,8 +545,8 @@ 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" @@ -566,7 +566,7 @@ 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 "" @@ -574,8 +574,8 @@ 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 "" @@ -591,8 +591,8 @@ 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 "" @@ -604,8 +604,8 @@ 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 "" @@ -625,7 +625,7 @@ 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 "" @@ -668,8 +668,8 @@ 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 "" @@ -685,7 +685,7 @@ 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 "" @@ -725,8 +725,8 @@ 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 "" @@ -734,7 +734,7 @@ 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" @@ -756,13 +756,13 @@ msgstr "" 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 "" @@ -961,8 +961,8 @@ 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 "" @@ -994,8 +994,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1011,7 +1011,7 @@ 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 "" @@ -1019,8 +1019,8 @@ 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 "" @@ -1058,8 +1058,8 @@ 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 "" @@ -1072,8 +1072,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/nb_NO/statistics.po b/applications/luci-app-statistics/po/nb_NO/statistics.po index e187594d2f..1fdbb8c63c 100644 --- a/applications/luci-app-statistics/po/nb_NO/statistics.po +++ b/applications/luci-app-statistics/po/nb_NO/statistics.po @@ -10,8 +10,8 @@ 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 "" @@ -68,8 +68,8 @@ 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 "" @@ -81,7 +81,7 @@ 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" @@ -127,8 +127,8 @@ msgstr "" "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 "" @@ -136,8 +136,8 @@ 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 "" @@ -145,8 +145,8 @@ 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" @@ -178,13 +178,13 @@ msgstr "Katalog for sub-konfigurasjoner" 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" @@ -200,7 +200,7 @@ msgstr "Vis tidsperiode »" 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" @@ -248,8 +248,8 @@ msgstr "" 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 "" @@ -257,7 +257,7 @@ 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" @@ -273,8 +273,8 @@ msgstr "" 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" @@ -290,7 +290,7 @@ msgstr "Videresending mellom lyttende og server adresser" 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 "" @@ -298,7 +298,7 @@ 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" @@ -363,13 +363,13 @@ msgstr "Innkommende grensesnitt" 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" @@ -411,8 +411,8 @@ msgstr "" 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 "" @@ -501,8 +501,8 @@ 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" @@ -510,7 +510,7 @@ 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" @@ -518,7 +518,7 @@ 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" @@ -536,8 +536,8 @@ msgstr "" 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 "" @@ -549,8 +549,8 @@ 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" @@ -570,7 +570,7 @@ msgstr "Alternativer" 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" @@ -578,8 +578,8 @@ 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" @@ -595,8 +595,8 @@ 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 "Prosesser" @@ -608,8 +608,8 @@ msgstr "Prosess plugin konfigurasjon" 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" @@ -629,7 +629,7 @@ msgstr "RRD \"heartbeat\" intervall" 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" @@ -672,8 +672,8 @@ msgstr "Sekunder" 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 "" @@ -689,7 +689,7 @@ msgstr "Server vert" 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 "" @@ -729,8 +729,8 @@ 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 "" @@ -738,7 +738,7 @@ 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" @@ -760,13 +760,13 @@ msgstr "Lagre dataverdier som rater i stedet for absolutte verdier" 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" @@ -1001,8 +1001,8 @@ 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 "" @@ -1038,8 +1038,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Prøv Ã¥ søk etter fullstendig vertsnavn" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1055,7 +1055,7 @@ 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" @@ -1063,8 +1063,8 @@ 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 "" @@ -1102,8 +1102,8 @@ 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" @@ -1116,8 +1116,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index efa9f0b81d..1140d0c277 100644 --- a/applications/luci-app-statistics/po/pl/statistics.po +++ b/applications/luci-app-statistics/po/pl/statistics.po @@ -15,8 +15,8 @@ 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" @@ -74,8 +74,8 @@ msgstr "" 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" @@ -87,7 +87,7 @@ msgstr "Konfiguracja wtyczki czÄ™stotliwoÅ›ci 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" @@ -133,8 +133,8 @@ msgstr "" "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" @@ -142,8 +142,8 @@ 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" @@ -151,8 +151,8 @@ 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" @@ -184,13 +184,13 @@ msgstr "Katalog podkonfiguracji" 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" @@ -206,7 +206,7 @@ msgstr "PrzedziaÅ‚ czasu wyÅ›wietlania »" 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" @@ -254,8 +254,8 @@ msgstr "WÅ‚Ä…cz" 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" @@ -263,7 +263,7 @@ 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" @@ -279,8 +279,8 @@ msgstr "Pozycje dodatkowe" 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" @@ -296,7 +296,7 @@ msgstr "Przekazywanie przez sÅ‚uchacza na adres serwera" 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" @@ -304,7 +304,7 @@ 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" @@ -372,13 +372,13 @@ msgstr "Interfejs przychodzÄ…cy" 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" @@ -424,8 +424,8 @@ msgstr "" 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ęć" @@ -514,8 +514,8 @@ msgstr "Nazwa" 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" @@ -523,7 +523,7 @@ 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ć" @@ -531,7 +531,7 @@ 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" @@ -552,8 +552,8 @@ msgstr "" 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" @@ -565,8 +565,8 @@ msgstr "Konfiguracja wtyczki 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" @@ -586,7 +586,7 @@ msgstr "Opcje" 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" @@ -594,8 +594,8 @@ 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" @@ -611,8 +611,8 @@ msgstr "Port" 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" @@ -624,8 +624,8 @@ msgstr "Konfiguracja wtyczki procesów systemowych" 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" @@ -645,7 +645,7 @@ msgstr "CzÄ™stotliwość interwaÅ‚u RRD" 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" @@ -688,8 +688,8 @@ msgstr "Sekundy" 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" @@ -705,7 +705,7 @@ msgstr "Host serwera" 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" @@ -745,8 +745,8 @@ msgstr "OkreÅ›la jakie informacje zbierać o trasach." 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" @@ -754,7 +754,7 @@ 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" @@ -777,13 +777,13 @@ msgstr "" 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" @@ -1039,8 +1039,8 @@ msgstr "" 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" @@ -1077,8 +1077,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Spróbuj znaleźć peÅ‚nÄ… nazwÄ™ hosta" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1094,7 +1094,7 @@ msgstr "Format nazwa UPS w NUT ups@host" 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" @@ -1102,8 +1102,8 @@ 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" @@ -1143,8 +1143,8 @@ msgstr "Po ustawieniu true, żądamy wartoÅ›ci bezwzglÄ™dnych" 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" @@ -1159,8 +1159,8 @@ msgstr "" "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" diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index 2367ff2961..0863ed14f1 100644 --- a/applications/luci-app-statistics/po/pt/statistics.po +++ b/applications/luci-app-statistics/po/pt/statistics.po @@ -14,8 +14,8 @@ msgstr "" "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" @@ -73,8 +73,8 @@ msgstr "" 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" @@ -86,7 +86,7 @@ msgstr "Configuração do Plugin da 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" @@ -132,8 +132,8 @@ msgstr "" "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" @@ -141,8 +141,8 @@ 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" @@ -150,8 +150,8 @@ 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" @@ -183,13 +183,13 @@ msgstr "Diretório para sub-configurações" 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" @@ -205,7 +205,7 @@ msgstr "Mostrar intervalo »" 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" @@ -253,8 +253,8 @@ msgstr "Ativar" 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" @@ -262,7 +262,7 @@ 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" @@ -278,8 +278,8 @@ msgstr "Itens adicionais" 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" @@ -295,7 +295,7 @@ msgstr "Transmissão entre o endereço de escuta e dos servidores" 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" @@ -303,7 +303,7 @@ 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" @@ -371,13 +371,13 @@ msgstr "Interface de entrada" 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" @@ -423,8 +423,8 @@ msgstr "" 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" @@ -513,8 +513,8 @@ msgstr "Nome" 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" @@ -522,7 +522,7 @@ 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" @@ -530,7 +530,7 @@ 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" @@ -551,8 +551,8 @@ msgstr "" 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" @@ -564,8 +564,8 @@ msgstr "Configuração do Plugin 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" @@ -585,7 +585,7 @@ msgstr "Opções" 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" @@ -593,8 +593,8 @@ 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" @@ -610,8 +610,8 @@ msgstr "Porta" 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" @@ -623,8 +623,8 @@ msgstr "Configuração do plugin 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" @@ -644,7 +644,7 @@ msgstr "Intervalo entre duas atualizações" 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" @@ -687,8 +687,8 @@ msgstr "Segundos" 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" @@ -704,7 +704,7 @@ msgstr "IP/Hostname do servidor" 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" @@ -744,8 +744,8 @@ msgstr "Especifica quais informações serão coletadas sobre as rotas." 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" @@ -753,7 +753,7 @@ 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" @@ -775,13 +775,13 @@ msgstr "Armazenar os valores dos dados como taxas em vez de valores absolutos" 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" @@ -1040,8 +1040,8 @@ msgstr "" "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" @@ -1080,8 +1080,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Tentar encontrar o nome do host completo (FQDN)" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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)" @@ -1097,7 +1097,7 @@ msgstr "Nome do UPS no NUT em formato ups@equipamento" 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" @@ -1105,8 +1105,8 @@ 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" @@ -1146,8 +1146,8 @@ msgstr "Quando definido como verdadeiro, solicitamos valores absolutos" 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" @@ -1162,8 +1162,8 @@ msgstr "" "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" diff --git a/applications/luci-app-statistics/po/pt_BR/statistics.po b/applications/luci-app-statistics/po/pt_BR/statistics.po index 2cd0abba96..45d7ad5ba3 100644 --- a/applications/luci-app-statistics/po/pt_BR/statistics.po +++ b/applications/luci-app-statistics/po/pt_BR/statistics.po @@ -14,8 +14,8 @@ msgstr "" "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" @@ -73,8 +73,8 @@ msgstr "" 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" @@ -86,7 +86,7 @@ msgstr "Configuração do Plugin da 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" @@ -132,8 +132,8 @@ msgstr "" "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" @@ -141,8 +141,8 @@ 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" @@ -150,8 +150,8 @@ 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" @@ -183,13 +183,13 @@ msgstr "Diretório para sub-configurações" 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" @@ -205,7 +205,7 @@ msgstr "Mostrar intervalo »" 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" @@ -253,8 +253,8 @@ msgstr "Ativar" 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" @@ -262,7 +262,7 @@ 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" @@ -278,8 +278,8 @@ msgstr "Items extras" 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" @@ -296,7 +296,7 @@ msgstr "" 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" @@ -304,7 +304,7 @@ 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" @@ -373,13 +373,13 @@ msgstr "Interface de entrada" 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" @@ -425,8 +425,8 @@ msgstr "" 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" @@ -515,8 +515,8 @@ msgstr "Nome" 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" @@ -524,7 +524,7 @@ 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" @@ -532,7 +532,7 @@ 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" @@ -553,8 +553,8 @@ msgstr "" 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" @@ -566,8 +566,8 @@ msgstr "Configuração do Plugin 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" @@ -587,7 +587,7 @@ msgstr "Opções" 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" @@ -595,8 +595,8 @@ 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" @@ -612,8 +612,8 @@ msgstr "Porta" 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" @@ -625,8 +625,8 @@ msgstr "Configuração do plugin 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" @@ -646,7 +646,7 @@ msgstr "Intervalo entre duas atualizações" 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" @@ -689,8 +689,8 @@ msgstr "Segundos" 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" @@ -706,7 +706,7 @@ msgstr "Endereço do servidor" 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" @@ -746,8 +746,8 @@ msgstr "Especifica quais informações serão coletadas sobre as rotas." 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" @@ -755,7 +755,7 @@ 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" @@ -777,13 +777,13 @@ msgstr "Armazenar os valores dos dados como taxas em vez de valores absolutos" 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" @@ -1042,8 +1042,8 @@ msgstr "" "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" @@ -1082,8 +1082,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Tentar encontrar o nome completo do equipamento (FQDN)" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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)" @@ -1099,7 +1099,7 @@ msgstr "Nome do UPS no NUT em formato ups@equipamento" 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" @@ -1107,8 +1107,8 @@ 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" @@ -1149,8 +1149,8 @@ msgid "When set to true, we request percentage values" msgstr "" "Quando definido como verdadeiro, serão requeridos valores em percentual" -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1165,8 +1165,8 @@ msgstr "" "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" diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index ff7aaa3c30..1b2478dff3 100644 --- a/applications/luci-app-statistics/po/ro/statistics.po +++ b/applications/luci-app-statistics/po/ro/statistics.po @@ -15,8 +15,8 @@ msgstr "" "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 "" @@ -73,8 +73,8 @@ 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 "" @@ -86,7 +86,7 @@ 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" @@ -132,8 +132,8 @@ msgstr "" "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 "" @@ -141,8 +141,8 @@ 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 "" @@ -150,8 +150,8 @@ 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" @@ -183,13 +183,13 @@ msgstr "Directorul pentru sub-configuratii" 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" @@ -205,7 +205,7 @@ 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 "Email" @@ -253,8 +253,8 @@ msgstr "Activează" 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 "" @@ -262,7 +262,7 @@ 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" @@ -278,8 +278,8 @@ 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" @@ -295,7 +295,7 @@ 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 "" @@ -303,7 +303,7 @@ 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" @@ -363,13 +363,13 @@ 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 "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" @@ -411,8 +411,8 @@ 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 "" @@ -501,8 +501,8 @@ 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" @@ -510,7 +510,7 @@ 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" @@ -518,7 +518,7 @@ 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" @@ -536,8 +536,8 @@ msgstr "" 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 "" @@ -549,8 +549,8 @@ 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" @@ -570,7 +570,7 @@ 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 "Pluginuri de iesire" @@ -578,8 +578,8 @@ 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" @@ -595,8 +595,8 @@ 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 "Procese" @@ -608,8 +608,8 @@ 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 "Procesor" @@ -629,7 +629,7 @@ 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" @@ -672,8 +672,8 @@ msgstr "Secunde" 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 "" @@ -689,7 +689,7 @@ 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 "" @@ -729,8 +729,8 @@ 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 "" @@ -738,7 +738,7 @@ 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" @@ -760,13 +760,13 @@ msgstr "" 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" @@ -967,8 +967,8 @@ 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 "" @@ -1000,8 +1000,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Incearca sa rezolvi numele de domeniu complet" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1017,7 +1017,7 @@ 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" @@ -1025,8 +1025,8 @@ 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 "" @@ -1064,8 +1064,8 @@ 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" @@ -1078,8 +1078,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index 7a74c2f0de..0983871db7 100644 --- a/applications/luci-app-statistics/po/ru/statistics.po +++ b/applications/luci-app-statistics/po/ru/statistics.po @@ -16,8 +16,8 @@ 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 ИБП" @@ -76,8 +76,8 @@ msgstr "" 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" @@ -89,7 +89,7 @@ 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 вывод" @@ -134,8 +134,8 @@ msgstr "" "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)" @@ -143,8 +143,8 @@ 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 "ÐŸÐµÑ€ÐµÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ ÐºÐ¾Ð½Ñ‚ÐµÐºÑта" @@ -152,8 +152,8 @@ 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" @@ -185,13 +185,13 @@ msgstr "Папка Ñ config файлом" 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 "ИÑпользование диÑка" @@ -207,7 +207,7 @@ 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" @@ -255,8 +255,8 @@ 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 "ÐнтропиÑ" @@ -264,7 +264,7 @@ 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" @@ -280,8 +280,8 @@ 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 "МежÑетевой Ñкран" @@ -297,7 +297,7 @@ 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 "ОÑновные плагины" @@ -305,7 +305,7 @@ 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 "Графики" @@ -374,13 +374,13 @@ 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 "ПрерываниÑ" @@ -426,8 +426,8 @@ 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)" @@ -516,8 +516,8 @@ 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" @@ -525,7 +525,7 @@ 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 "Сеть" @@ -533,7 +533,7 @@ 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 "Сетевые плагины" @@ -553,8 +553,8 @@ 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" @@ -566,8 +566,8 @@ 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" @@ -587,7 +587,7 @@ 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 "Плагины вывода" @@ -595,8 +595,8 @@ 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 "Пинг-запроÑ" @@ -612,8 +612,8 @@ 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 "ПроцеÑÑÑ‹" @@ -625,8 +625,8 @@ 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" @@ -649,7 +649,7 @@ msgstr "МакÑимальное количеÑтво Ñекунд между д 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" @@ -692,8 +692,8 @@ 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 "СенÑоры" @@ -709,7 +709,7 @@ 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 "ÐаÑтройка" @@ -749,8 +749,8 @@ 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" @@ -758,7 +758,7 @@ 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" @@ -780,13 +780,13 @@ msgstr "Хранить данные в виде коÑффициентов вмР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" @@ -1035,8 +1035,8 @@ msgstr "" 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" @@ -1071,8 +1071,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "ПытатьÑÑ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÑÑ‚ÑŒ полное Ð¸Ð¼Ñ Ñ…Ð¾Ñта" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "ИБП" @@ -1088,7 +1088,7 @@ msgstr "Ð˜Ð¼Ñ Ð˜Ð‘ÐŸ в формате NUT ups@host" 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" @@ -1096,8 +1096,8 @@ 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 "Ð’Ñ€ÐµÐ¼Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹" @@ -1137,8 +1137,8 @@ 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" @@ -1153,8 +1153,8 @@ 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" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 7c58549430..995f9de570 100644 --- a/applications/luci-app-statistics/po/sk/statistics.po +++ b/applications/luci-app-statistics/po/sk/statistics.po @@ -12,8 +12,8 @@ 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 "" @@ -70,8 +70,8 @@ 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 "" @@ -83,7 +83,7 @@ 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 "" @@ -126,8 +126,8 @@ msgid "" "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 "" @@ -135,8 +135,8 @@ 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 "" @@ -144,8 +144,8 @@ 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 "" @@ -177,13 +177,13 @@ 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 "" @@ -199,7 +199,7 @@ 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 "" @@ -247,8 +247,8 @@ 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 "" @@ -256,7 +256,7 @@ 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 "" @@ -272,8 +272,8 @@ 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 "" @@ -289,7 +289,7 @@ 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 "" @@ -297,7 +297,7 @@ 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 "" @@ -357,13 +357,13 @@ 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 "" @@ -405,8 +405,8 @@ 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 "" @@ -495,8 +495,8 @@ 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 "" @@ -504,7 +504,7 @@ 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 "" @@ -512,7 +512,7 @@ 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 "" @@ -530,8 +530,8 @@ 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 "" @@ -543,8 +543,8 @@ 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" @@ -564,7 +564,7 @@ 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 "" @@ -572,8 +572,8 @@ 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 "" @@ -589,8 +589,8 @@ 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 "" @@ -602,8 +602,8 @@ 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 "" @@ -623,7 +623,7 @@ 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 "" @@ -666,8 +666,8 @@ 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 "" @@ -683,7 +683,7 @@ 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 "" @@ -723,8 +723,8 @@ 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 "" @@ -732,7 +732,7 @@ 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" @@ -754,13 +754,13 @@ msgstr "" 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 "" @@ -959,8 +959,8 @@ 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 "" @@ -992,8 +992,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1009,7 +1009,7 @@ 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 "" @@ -1017,8 +1017,8 @@ 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 "" @@ -1056,8 +1056,8 @@ 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 "" @@ -1070,8 +1070,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index 4d5df48661..eb033f163a 100644 --- a/applications/luci-app-statistics/po/sv/statistics.po +++ b/applications/luci-app-statistics/po/sv/statistics.po @@ -12,8 +12,8 @@ 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 "" @@ -70,8 +70,8 @@ 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 "" @@ -83,7 +83,7 @@ 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" @@ -129,8 +129,8 @@ msgstr "" "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 "" @@ -138,8 +138,8 @@ 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 "" @@ -147,8 +147,8 @@ 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" @@ -180,13 +180,13 @@ msgstr "Mapp för under-konfigurationer" 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" @@ -202,7 +202,7 @@ msgstr "Visa tidsspann »" 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" @@ -250,8 +250,8 @@ msgstr "Aktivera" 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" @@ -259,7 +259,7 @@ 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" @@ -275,8 +275,8 @@ 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 "Brandvägg" @@ -292,7 +292,7 @@ msgstr "Vidarebefordring mellan lyssning och server-adressen" 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" @@ -300,7 +300,7 @@ 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" @@ -361,13 +361,13 @@ msgstr "Inkommande gränssnitt" 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" @@ -409,8 +409,8 @@ msgstr "" 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" @@ -499,8 +499,8 @@ msgstr "Namn" 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" @@ -508,7 +508,7 @@ 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" @@ -516,7 +516,7 @@ 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" @@ -534,8 +534,8 @@ msgstr "" 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" @@ -547,8 +547,8 @@ 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" @@ -568,7 +568,7 @@ msgstr "Alternativ" 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" @@ -576,8 +576,8 @@ 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" @@ -593,8 +593,8 @@ msgstr "Port" 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" @@ -606,8 +606,8 @@ 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 "Processor" @@ -627,7 +627,7 @@ 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" @@ -670,8 +670,8 @@ msgstr "Sekunder" 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" @@ -687,7 +687,7 @@ msgstr "Värd-server" 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" @@ -727,8 +727,8 @@ msgstr "Anger vilken information som ska samlas in om rutter." 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 "" @@ -736,7 +736,7 @@ 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" @@ -758,13 +758,13 @@ msgstr "" 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" @@ -963,8 +963,8 @@ 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 "" @@ -996,8 +996,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Försök att kolla upp fullständigt kvalificerade värdnamn" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1013,7 +1013,7 @@ msgstr "UPS-namnet i NUT ups@värd-format" 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" @@ -1021,8 +1021,8 @@ 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" @@ -1060,8 +1060,8 @@ 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öst" @@ -1076,8 +1076,8 @@ msgstr "" "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 "" diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index a5b06feeee..466993ef63 100644 --- a/applications/luci-app-statistics/po/templates/statistics.pot +++ b/applications/luci-app-statistics/po/templates/statistics.pot @@ -1,8 +1,8 @@ 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 "" @@ -59,8 +59,8 @@ 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 "" @@ -72,7 +72,7 @@ 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 "" @@ -115,8 +115,8 @@ msgid "" "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 "" @@ -124,8 +124,8 @@ 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 "" @@ -133,8 +133,8 @@ 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 "" @@ -166,13 +166,13 @@ 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 "" @@ -188,7 +188,7 @@ 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 "" @@ -236,8 +236,8 @@ 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 "" @@ -245,7 +245,7 @@ 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 "" @@ -261,8 +261,8 @@ 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 "" @@ -278,7 +278,7 @@ 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 "" @@ -286,7 +286,7 @@ 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 "" @@ -346,13 +346,13 @@ 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 "" @@ -394,8 +394,8 @@ 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 "" @@ -484,8 +484,8 @@ 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 "" @@ -493,7 +493,7 @@ 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 "" @@ -501,7 +501,7 @@ 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 "" @@ -519,8 +519,8 @@ 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 "" @@ -532,8 +532,8 @@ 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 "" @@ -553,7 +553,7 @@ 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 "" @@ -561,8 +561,8 @@ 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 "" @@ -578,8 +578,8 @@ 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 "" @@ -591,8 +591,8 @@ 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 "" @@ -612,7 +612,7 @@ 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 "" @@ -655,8 +655,8 @@ 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 "" @@ -672,7 +672,7 @@ 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 "" @@ -712,8 +712,8 @@ 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 "" @@ -721,7 +721,7 @@ 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" @@ -743,13 +743,13 @@ msgstr "" 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 "" @@ -948,8 +948,8 @@ 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 "" @@ -981,8 +981,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -998,7 +998,7 @@ 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 "" @@ -1006,8 +1006,8 @@ 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 "" @@ -1045,8 +1045,8 @@ 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 "" @@ -1059,8 +1059,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index e6a6c37f9c..2578971e7a 100644 --- a/applications/luci-app-statistics/po/tr/statistics.po +++ b/applications/luci-app-statistics/po/tr/statistics.po @@ -12,8 +12,8 @@ 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 "" @@ -70,8 +70,8 @@ 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 "" @@ -83,7 +83,7 @@ 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 "" @@ -126,8 +126,8 @@ msgid "" "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 "" @@ -135,8 +135,8 @@ 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 "" @@ -144,8 +144,8 @@ 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 "" @@ -177,13 +177,13 @@ 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 "" @@ -199,7 +199,7 @@ 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 "" @@ -247,8 +247,8 @@ 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 "" @@ -256,7 +256,7 @@ 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 "" @@ -272,8 +272,8 @@ 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 "" @@ -289,7 +289,7 @@ 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 "" @@ -297,7 +297,7 @@ 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 "" @@ -357,13 +357,13 @@ 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 "" @@ -405,8 +405,8 @@ 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 "" @@ -495,8 +495,8 @@ 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 "" @@ -504,7 +504,7 @@ 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 "" @@ -512,7 +512,7 @@ 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 "" @@ -530,8 +530,8 @@ 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 "" @@ -543,8 +543,8 @@ 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" @@ -564,7 +564,7 @@ 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 "" @@ -572,8 +572,8 @@ 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 "" @@ -589,8 +589,8 @@ 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 "" @@ -602,8 +602,8 @@ 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 "" @@ -623,7 +623,7 @@ 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 "" @@ -666,8 +666,8 @@ 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 "" @@ -683,7 +683,7 @@ 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 "" @@ -723,8 +723,8 @@ 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 "" @@ -732,7 +732,7 @@ 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" @@ -754,13 +754,13 @@ msgstr "" 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 "" @@ -959,8 +959,8 @@ 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 "" @@ -992,8 +992,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1009,7 +1009,7 @@ 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 "" @@ -1017,8 +1017,8 @@ 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 "" @@ -1056,8 +1056,8 @@ 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 "" @@ -1070,8 +1070,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index 364184b7cb..b39a232770 100644 --- a/applications/luci-app-statistics/po/uk/statistics.po +++ b/applications/luci-app-statistics/po/uk/statistics.po @@ -15,8 +15,8 @@ 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 "" @@ -73,8 +73,8 @@ 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 "" @@ -86,7 +86,7 @@ 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 "" @@ -129,8 +129,8 @@ msgid "" "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 "" @@ -138,8 +138,8 @@ 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 "" @@ -147,8 +147,8 @@ 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" @@ -180,13 +180,13 @@ 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 "" @@ -202,7 +202,7 @@ 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 "" @@ -250,8 +250,8 @@ 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 "" @@ -259,7 +259,7 @@ 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 "" @@ -275,8 +275,8 @@ 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 "Брандмауер" @@ -292,7 +292,7 @@ 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 "" @@ -300,7 +300,7 @@ 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 "" @@ -360,13 +360,13 @@ 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 "" @@ -408,8 +408,8 @@ 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 "Пам'ÑÑ‚ÑŒ" @@ -498,8 +498,8 @@ 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 "" @@ -507,7 +507,7 @@ 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 "Мережа" @@ -515,7 +515,7 @@ 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 "" @@ -533,8 +533,8 @@ 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 "" @@ -546,8 +546,8 @@ 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" @@ -567,7 +567,7 @@ 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 "" @@ -575,8 +575,8 @@ 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 "Ехо-запит" @@ -592,8 +592,8 @@ 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 "ПроцеÑи" @@ -605,8 +605,8 @@ 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 "" @@ -626,7 +626,7 @@ 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 "" @@ -669,8 +669,8 @@ 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 "" @@ -686,7 +686,7 @@ 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 "" @@ -726,8 +726,8 @@ 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 "" @@ -735,7 +735,7 @@ 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" @@ -757,13 +757,13 @@ msgstr "" 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 "" @@ -962,8 +962,8 @@ 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 "" @@ -995,8 +995,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1012,7 +1012,7 @@ 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 "" @@ -1020,8 +1020,8 @@ 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 "Ð§Ð°Ñ Ð±ÐµÐ·Ð¿ÐµÑ€ÐµÑ€Ð²Ð½Ð¾Ñ— роботи" @@ -1059,8 +1059,8 @@ 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 "Бездротові мережі" @@ -1073,8 +1073,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index 43e35f4849..65c721ba83 100644 --- a/applications/luci-app-statistics/po/vi/statistics.po +++ b/applications/luci-app-statistics/po/vi/statistics.po @@ -16,8 +16,8 @@ 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 "" @@ -74,8 +74,8 @@ 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 "" @@ -87,7 +87,7 @@ 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" @@ -133,8 +133,8 @@ msgstr "" "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 "" @@ -142,8 +142,8 @@ 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 "" @@ -151,8 +151,8 @@ 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" @@ -184,13 +184,13 @@ msgstr "Danh mục cho sub-configurations" 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" @@ -206,7 +206,7 @@ msgstr "Display timespan" 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" @@ -254,8 +254,8 @@ msgstr "KÃch hoạt" 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 "" @@ -263,7 +263,7 @@ 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" @@ -279,8 +279,8 @@ msgstr "" 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" @@ -296,7 +296,7 @@ msgstr "chuyển tiếp giữa listen và địa chỉ server" 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 "" @@ -304,7 +304,7 @@ 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" @@ -371,13 +371,13 @@ msgstr "Giao diện Ä‘ang tá»›i" 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" @@ -419,8 +419,8 @@ msgstr "" 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 "" @@ -509,8 +509,8 @@ 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" @@ -518,7 +518,7 @@ 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" @@ -526,7 +526,7 @@ 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" @@ -544,8 +544,8 @@ msgstr "" 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 "" @@ -557,8 +557,8 @@ 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" @@ -578,7 +578,7 @@ msgstr "Tùy chá»n" 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" @@ -586,8 +586,8 @@ 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" @@ -603,8 +603,8 @@ 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 "Quá trình xá» lý" @@ -616,8 +616,8 @@ msgstr "Cấu hình processes plugin" 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ý" @@ -637,7 +637,7 @@ msgstr "RRD heart beat interval" 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" @@ -680,8 +680,8 @@ msgstr "Giây" 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 "" @@ -697,7 +697,7 @@ msgstr "Server host" 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 "" @@ -737,8 +737,8 @@ 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 "" @@ -746,7 +746,7 @@ 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" @@ -768,13 +768,13 @@ msgstr "Những giá trị dữ liệu lÆ°u trữ nhÆ° má»™t tỉ lệ thay vì 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" @@ -1015,8 +1015,8 @@ 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 "" @@ -1049,8 +1049,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "Thá» tra cứu những tên host đủ Ä‘iá»u kiện" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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 "" @@ -1066,7 +1066,7 @@ 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" @@ -1074,8 +1074,8 @@ 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 "" @@ -1113,8 +1113,8 @@ 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" @@ -1127,8 +1127,8 @@ msgid "" "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 "" diff --git a/applications/luci-app-statistics/po/zh_Hans/statistics.po b/applications/luci-app-statistics/po/zh_Hans/statistics.po index 962c960b45..ba6ec513ff 100644 --- a/applications/luci-app-statistics/po/zh_Hans/statistics.po +++ b/applications/luci-app-statistics/po/zh_Hans/statistics.po @@ -18,8 +18,8 @@ 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 电æº" @@ -76,8 +76,8 @@ msgstr "设置æ¤é€‰é¡¹åŽï¼ŒCPU 图表上ä¸å†ç»Ÿè®¡ç³»ç»Ÿä¸Šæ‰€æœ‰å¤„ç†å™¨çš 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 频率" @@ -89,7 +89,7 @@ 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 输出" @@ -134,8 +134,8 @@ msgstr "" "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" @@ -143,8 +143,8 @@ 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 "上下文切æ¢" @@ -152,8 +152,8 @@ 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" @@ -185,13 +185,13 @@ 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 "ç£ç›˜ä½¿ç”¨æƒ…况" @@ -207,7 +207,7 @@ 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 "电å邮件" @@ -255,8 +255,8 @@ 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 "熵" @@ -264,7 +264,7 @@ 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" @@ -280,8 +280,8 @@ msgstr "é¢å¤–项目" 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 "防ç«å¢™" @@ -297,7 +297,7 @@ 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 "通用æ’件" @@ -305,7 +305,7 @@ 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 "图表" @@ -369,13 +369,13 @@ 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 "ä¸æ–" @@ -417,8 +417,8 @@ msgstr "在ä¸ä½¿ç”¨â€œä»…å¹³å‡ RRAâ€çš„情况下,å¯ä»¥ä½¿ç”¨ä¸€æ®µæ—¶é—´çš 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 "内å˜" @@ -507,8 +507,8 @@ 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" @@ -516,7 +516,7 @@ 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 "网络" @@ -524,7 +524,7 @@ 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 æ’件" @@ -544,8 +544,8 @@ 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" @@ -557,8 +557,8 @@ 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" @@ -578,7 +578,7 @@ 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 "Output æ’件" @@ -586,8 +586,8 @@ 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" @@ -603,8 +603,8 @@ 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 "进程" @@ -616,8 +616,8 @@ 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 "处ç†å™¨" @@ -637,7 +637,7 @@ msgstr "RRD 心跳间隙" 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" @@ -680,8 +680,8 @@ 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 "ä¼ æ„Ÿå™¨" @@ -697,7 +697,7 @@ 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 "设置" @@ -737,8 +737,8 @@ 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" @@ -746,7 +746,7 @@ 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" @@ -768,13 +768,13 @@ msgstr "å˜å‚¨æ•°æ®å€¼å˜åŒ–é‡è€Œä¸æ˜¯ç»å¯¹å€¼" 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 连接数" @@ -990,8 +990,8 @@ msgstr "unixsock æ’件创建一个 unix 套接å—å¯ç”¨äºŽè¯»å– Collectd å®žä¾ 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 "温感" @@ -1023,8 +1023,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "å°è¯•è§£æžä¸»æœºå…¨åŸŸå" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1040,7 +1040,7 @@ msgstr "UPS å使用 NUT(Network UPS Toolsï¼‰æ ¼å¼ï¼šups@host" 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" @@ -1048,8 +1048,8 @@ 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 "è¿è¡Œæ—¶é—´" @@ -1087,8 +1087,8 @@ 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 "æ— çº¿" @@ -1101,8 +1101,8 @@ msgid "" "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" diff --git a/applications/luci-app-statistics/po/zh_Hant/statistics.po b/applications/luci-app-statistics/po/zh_Hant/statistics.po index 56bf9478dd..e7b8162fb7 100644 --- a/applications/luci-app-statistics/po/zh_Hant/statistics.po +++ b/applications/luci-app-statistics/po/zh_Hant/statistics.po @@ -17,8 +17,8 @@ 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 "APC UPS" @@ -75,8 +75,8 @@ msgstr "" 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 é »çŽ‡" @@ -88,7 +88,7 @@ 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 輸出" @@ -133,8 +133,8 @@ msgstr "" "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" @@ -142,8 +142,8 @@ 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 "上下文切æ›" @@ -151,8 +151,8 @@ 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" @@ -184,13 +184,13 @@ msgstr "åé…置目錄" 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 "ç£ç¢Ÿä½¿ç”¨æƒ…æ³" @@ -206,7 +206,7 @@ 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 "é›»å郵件" @@ -254,8 +254,8 @@ 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 "熵" @@ -263,7 +263,7 @@ 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" @@ -279,8 +279,8 @@ msgstr "" 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 "防ç«ç‰†" @@ -296,7 +296,7 @@ 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 "通用外掛" @@ -304,7 +304,7 @@ 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 "圖表" @@ -368,13 +368,13 @@ 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 "ä¸æ–·" @@ -416,8 +416,8 @@ msgstr "在ä¸ä½¿ç”¨â€œåƒ…å¹³å‡ RRAâ€çš„情æ³ä¸‹ï¼Œå¯ä»¥ä½¿ç”¨ä¸€æ®µæ™‚é–“çš 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 "記憶體" @@ -506,8 +506,8 @@ 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" @@ -515,7 +515,7 @@ 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" @@ -523,7 +523,7 @@ 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 外掛" @@ -543,8 +543,8 @@ 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" @@ -556,8 +556,8 @@ 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" @@ -577,7 +577,7 @@ 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 "Output 外掛" @@ -585,8 +585,8 @@ 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" @@ -602,8 +602,8 @@ 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 "程åº" @@ -615,8 +615,8 @@ 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 "處ç†å™¨" @@ -636,7 +636,7 @@ msgstr "RRD 心跳間隙" 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" @@ -679,8 +679,8 @@ 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 "感測器" @@ -696,7 +696,7 @@ 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 "è¨å®š" @@ -736,8 +736,8 @@ 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" @@ -745,7 +745,7 @@ 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" @@ -767,13 +767,13 @@ msgstr "儲å˜è³‡æ–™å€¼è®ŠåŒ–é‡è€Œä¸æ˜¯çµ•å°å€¼" 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 連線數" @@ -989,8 +989,8 @@ msgstr "unixsock 外掛建立一個 unix 套接å—å¯ç”¨æ–¼è®€å– Collectd 例é 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 "溫感" @@ -1022,8 +1022,8 @@ msgid "Try to lookup fully qualified hostname" msgstr "嘗試解æžä¸»æ©Ÿå…¨åŸŸå" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 -#: applications/luci-app-statistics/luasrc/statistics/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" @@ -1039,7 +1039,7 @@ msgstr "UPS å使用 NUT(Network UPS Toolsï¼‰æ ¼å¼ï¼šups@host" 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" @@ -1047,8 +1047,8 @@ 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 "上線時間" @@ -1086,8 +1086,8 @@ 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 "ç„¡ç·š" @@ -1100,8 +1100,8 @@ msgid "" "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" diff --git a/applications/luci-app-statistics/root/usr/bin/stat-genconfig b/applications/luci-app-statistics/root/usr/bin/stat-genconfig index 82431fbd39..b5a880e134 100755 --- a/applications/luci-app-statistics/root/usr/bin/stat-genconfig +++ b/applications/luci-app-statistics/root/usr/bin/stat-genconfig @@ -20,6 +20,7 @@ require("luci.model.uci") require("luci.sys.iptparser") require("luci.util") require("luci.i18n") +require("luci.jsonc") require("nixio.fs") local ipt = luci.sys.iptparser.IptParser() @@ -284,11 +285,8 @@ plugins = { }, } -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 @@ -299,7 +297,10 @@ for filename in nixio.fs.dir(plugin_dir) do 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 diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json new file mode 100644 index 0000000000..c67255df25 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/apcups.json @@ -0,0 +1,9 @@ +{ + "title": "APC UPS", + "category": "general", + "legend": [ + ["Host", "Port"], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json new file mode 100644 index 0000000000..ad0895dd01 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/conntrack.json @@ -0,0 +1,9 @@ +{ + "title": "Conntrack", + "category": "network", + "legend": [ + [], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json new file mode 100644 index 0000000000..c11a55cd07 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/contextswitch.json @@ -0,0 +1,9 @@ +{ + "title": "Context Switches", + "category": "general", + "legend": [ + [], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json new file mode 100644 index 0000000000..1c9b26c28d --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpu.json @@ -0,0 +1,9 @@ +{ + "title": "Processor", + "category": "general", + "legend": [ + [], + ["ValuesPercentage", "ReportByCpu", "ReportByState"], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json new file mode 100644 index 0000000000..1bb7d60671 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/cpufreq.json @@ -0,0 +1,9 @@ +{ + "title": "CPU Frequency", + "category": "general", + "legend": [ + [], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json new file mode 100644 index 0000000000..36f0ff7f18 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/csv.json @@ -0,0 +1,9 @@ +{ + "title": "CSV Output", + "category": "output", + "legend": [ + ["DataDir"], + ["StoreRates"], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json new file mode 100644 index 0000000000..3e92af6b83 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/curl.json @@ -0,0 +1,4 @@ +{ + "title": "cUrl", + "category": "network" +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json new file mode 100644 index 0000000000..b6cfe53a20 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/df.json @@ -0,0 +1,9 @@ +{ + "title": "Disk Space Usage", + "category": "general", + "legend": [ + [], + ["IgnoreSelected"], + ["Devices", "MountPoints", "FSTypes"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json new file mode 100644 index 0000000000..57d7c65b05 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/disk.json @@ -0,0 +1,9 @@ +{ + "title": "Disk Usage", + "category": "general", + "legend": [ + [], + ["IgnoreSelected"], + ["Disks"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json new file mode 100644 index 0000000000..72d5848b2e --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/dns.json @@ -0,0 +1,9 @@ +{ + "title": "DNS", + "category": "network", + "legend": [ + [], + [], + ["Interfaces", "IgnoreSources"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json new file mode 100644 index 0000000000..b69a8c32d3 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/email.json @@ -0,0 +1,9 @@ +{ + "title": "Email", + "category": "general", + "legend": [ + ["SocketFile", "SocketGroup", "SocketPerms", "MaxConns"], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json new file mode 100644 index 0000000000..da59af696f --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/entropy.json @@ -0,0 +1,9 @@ +{ + "title": "Entropy", + "category": "general", + "legend": [ + [], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json new file mode 100644 index 0000000000..b26354c7a1 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/exec.json @@ -0,0 +1,4 @@ +{ + "title": "Exec", + "category": "general" +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json new file mode 100644 index 0000000000..0af71c495f --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/interface.json @@ -0,0 +1,9 @@ +{ + "title": "Interfaces", + "category": "network", + "legend": [ + [], + ["IgnoreSelected"], + ["Interfaces"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json new file mode 100644 index 0000000000..4558f83a3d --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iptables.json @@ -0,0 +1,4 @@ +{ + "title": "Firewall", + "category": "network" +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json new file mode 100644 index 0000000000..a3ff4ad64c --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/irq.json @@ -0,0 +1,9 @@ +{ + "title": "Interrupts", + "category": "general", + "legend": [ + [], + ["IgnoreSelected"], + ["Irqs"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json new file mode 100644 index 0000000000..dc9c58c405 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/iwinfo.json @@ -0,0 +1,9 @@ +{ + "title": "Wireless", + "category": "network", + "legend": [ + [], + ["IgnoreSelected"], + ["Interfaces"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json new file mode 100644 index 0000000000..aff3cfffde --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/load.json @@ -0,0 +1,9 @@ +{ + "title": "System Load", + "category": "general", + "legend": [ + [], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json new file mode 100644 index 0000000000..2e1e2577af --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/memory.json @@ -0,0 +1,9 @@ +{ + "title": "Memory", + "category": "general", + "legend": [ + [], + ["ValuesPercentage", "ValuesAbsolute"], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json new file mode 100644 index 0000000000..e55ab79b7c --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/netlink.json @@ -0,0 +1,9 @@ +{ + "title": "Netlink", + "category": "network", + "legend": [ + [], + ["IgnoreSelected"], + ["Interfaces", "VerboseInterfaces", "QDiscs", "Classes", "Filters"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json new file mode 100644 index 0000000000..2e8f857108 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/network.json @@ -0,0 +1,4 @@ +{ + "title": "Network", + "category": "output" +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json new file mode 100644 index 0000000000..aaf33be256 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/nut.json @@ -0,0 +1,9 @@ +{ + "title": "UPS", + "category": "general", + "legend": [ + [], + [], + ["UPS"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json new file mode 100644 index 0000000000..2ee2eee088 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/olsrd.json @@ -0,0 +1,9 @@ +{ + "title": "OLSRd", + "category": "network", + "legend": [ + ["Host", "Port", "CollectLinks", "CollectRoutes", "CollectTopology"], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json new file mode 100644 index 0000000000..520162d1f5 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/openvpn.json @@ -0,0 +1,9 @@ +{ + "title": "OpenVPN", + "category": "network", + "legend": [ + [], + ["CollectIndividualUsers", "CollectUserCount", "CollectCompression", "ImprovedNamingSchema"], + ["StatusFile"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json new file mode 100644 index 0000000000..0943605129 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/ping.json @@ -0,0 +1,9 @@ +{ + "title": "Ping", + "category": "network", + "legend": [ + ["TTL", "Interval", "AddressFamily"], + [], + ["Hosts"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json new file mode 100644 index 0000000000..9817e7a15f --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/processes.json @@ -0,0 +1,9 @@ +{ + "title": "Processes", + "category": "general", + "legend": [ + [], + [], + ["Processes"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json new file mode 100644 index 0000000000..26a3e4ffce --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/rrdtool.json @@ -0,0 +1,9 @@ +{ + "title": "RRDTool", + "category": "output", + "legend": [ + ["DataDir", "StepSize", "HeartBeat", "RRARows", "XFF", "CacheFlush", "CacheTimeout"], + ["RRASingle"], + ["RRATimespans"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json new file mode 100644 index 0000000000..10a61fa17e --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/sensors.json @@ -0,0 +1,9 @@ +{ + "title": "Sensors", + "category": "general", + "legend": [ + [], + ["IgnoreSelected"], + ["Sensor"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json new file mode 100644 index 0000000000..b99ed75ec3 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/splash_leases.json @@ -0,0 +1,9 @@ +{ + "title": "Splash Leases", + "category": "network", + "legend": [ + [], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json new file mode 100644 index 0000000000..f932994b43 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/tcpconns.json @@ -0,0 +1,9 @@ +{ + "title": "TCP Connections", + "category": "network", + "legend": [ + [], + ["ListeningPorts"], + ["LocalPorts", "RemotePorts"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json new file mode 100644 index 0000000000..1aef155178 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/thermal.json @@ -0,0 +1,9 @@ +{ + "title": "Thermal", + "category": "general", + "legend": [ + [], + ["IgnoreSelected"], + ["Device"] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json new file mode 100644 index 0000000000..36a3fab604 --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/unixsock.json @@ -0,0 +1,9 @@ +{ + "title": "UnixSock", + "category": "output", + "legend": [ + ["SocketFile", "SocketGroup", "SocketPerms"], + [], + [] + ] +} diff --git a/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json new file mode 100644 index 0000000000..c28f09391d --- /dev/null +++ b/applications/luci-app-statistics/root/usr/share/luci/statistics/plugins/uptime.json @@ -0,0 +1,9 @@ +{ + "title": "Uptime", + "category": "general", + "legend": [ + [], + [], + [] + ] +} |