diff options
Diffstat (limited to 'applications/luci-app-statistics')
34 files changed, 562 insertions, 88 deletions
diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua index ee3fd254fb..56af1cc96a 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua @@ -12,4 +12,25 @@ s = m:section( NamedSection, "collectd_cpu", "luci_statistics" ) enable = s:option( Flag, "enable", translate("Enable this plugin") ) enable.default = 0 +-- collectd_cpu.reportbycpu (ReportByCpu) +reportbycpu = s:option( Flag, "ReportByCpu", + translate("Report by CPU"), + translate("By setting this, CPU is not aggregate of all processors on the system")) +reportbycpu.default = 1 +reportbycpu:depends( "enable", 1 ) + +-- collectd_cpu.reportbystate (ReportByState) +reportbystate = s:option( Flag, "ReportByState", + translate("Report by state"), + translate("When set to true, reports per-state metric (system, user, idle)")) +reportbystate.default = 1 +reportbystate:depends( "enable", 1 ) + +-- collectd_cpu.valuespercentage (ValuesPercentage) +valuespercentage = s:option( Flag, "ValuesPercentage", + translate("Report in percent"), + translate("When set to true, we request percentage values")) +valuespercentage.default = 0 +valuespercentage:depends({ enable = 1, ReportByCpu = 1, ReportByState = 1 }) + return m diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua index fa677b8d12..e5f3360c05 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua @@ -10,4 +10,18 @@ s = m:section( NamedSection, "collectd_memory", "luci_statistics" ) enable = s:option( Flag, "enable", translate("Enable this plugin") ) enable.default = 0 +-- collectd_memory.valuesabsolute (ValuesAbsolute) +valuespercentage = s:option( Flag, "ValuesAbsolute", + translate("Absolute values"), + translate("When set to true, we request absolute values")) +valuespercentage.default = 1 +valuespercentage:depends( "enable", 1 ) + +-- collectd_memory.valuespercentage (ValuesPercentage) +valuespercentage = s:option( Flag, "ValuesPercentage", + translate("Percent values"), + translate("When set to true, we request percentage values")) +valuespercentage.default = 0 +valuespercentage:depends( "enable", 1 ) + return m diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua index 004a450eec..bae325990e 100644 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua +++ b/applications/luci-app-statistics/luasrc/statistics/plugins/cpu.lua @@ -1,7 +1,7 @@ return { legend = { { }, - { }, + { "ValuesPercentage" , "ReportByCpu", "ReportByState" }, { } }, label = _("Processor"), diff --git a/applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua b/applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua index 8dee2dafcd..9ad1b3f88d 100644 --- a/applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua +++ b/applications/luci-app-statistics/luasrc/statistics/plugins/memory.lua @@ -1,7 +1,7 @@ return { - legend = { - { }, + legend = { { }, + { "ValuesPercentage", "ValuesAbsolute" }, { } }, label = _("Memory"), diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua index 226c84ee96..3f8910722a 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua @@ -3,33 +3,167 @@ module("luci.statistics.rrdtool.definitions.cpu",package.seeall) +local uci = require("luci.model.uci").cursor() +local reportbystate = uci:get("luci_statistics", "collectd_cpu", "ReportByState") or "0" + function item() return luci.i18n.translate("Processor") end function rrdargs( graph, plugin, plugin_instance, dtype ) + local p = {} + + local title = "%H: Processor usage" + if #plugin_instance > 0 then + title = "%H: Processor usage on core #%pi" + end + + if reportbystate == "1" then + local cpu = { + title = title, + y_min = "0", + alt_autoscale_max = true, + vlabel = "Jiffies", + number_format = "%5.1lf", + data = { + instances = { + cpu = { + "idle", + "interrupt", + "nice", + "softirq", + "steal", + "system", + "user", + "wait" + } + }, + options = { + cpu_idle = { + color = "ffffff", + title = "Idle" + }, + cpu_interrupt = { + color = "a000a0", + title = "Interrupt" + }, + cpu_nice = { + color = "00e000", + title = "Nice" + }, + cpu_softirq = { + color = "ff00ff", + title = "Softirq" + }, + cpu_steal = { + color = "000000", + title = "Steal" + }, + cpu_system = { + color = "ff0000", + title = "System" + }, + cpu_user = { + color = "0000ff", + title = "User" + }, + cpu_wait = { + color = "ffb000", + title = "Wait" + } + } + } + } - return { - title = "%H: Processor usage on core #%pi", - y_min = "0", - alt_autoscale_max = true, - vlabel = "Percent", - number_format = "%5.1lf%%", - data = { - instances = { - cpu = { "user", "nice", "system", "softirq", "interrupt" } - }, - - options = { - cpu_idle = { color = "ffffff", title = "Idle" }, - cpu_nice = { color = "00e000", title = "Nice" }, - cpu_user = { color = "0000ff", title = "User" }, - cpu_wait = { color = "ffb000", title = "Wait" }, - cpu_system = { color = "ff0000", title = "System" }, - cpu_softirq = { color = "ff00ff", title = "Softirq" }, - cpu_interrupt = { color = "a000a0", title = "Interrupt" }, - cpu_steal = { color = "000000", title = "Steal" } + local percent = { + title = title, + y_min = "0", + alt_autoscale_max = true, + vlabel = "Percent", + number_format = "%5.1lf%%", + data = { + instances = { + percent = { + "idle", + "interrupt", + "nice", + "softirq", + "steal", + "system", + "user", + "wait" + } + }, + options = { + percent_idle = { + color = "ffffff", + title = "Idle" + }, + percent_interrupt = { + color = "a000a0", + title = "Interrupt" + }, + percent_nice = { + color = "00e000", + title = "Nice" + }, + percent_softirq = { + color = "ff00ff", + title = "Softirq" + }, + percent_steal = { + color = "000000", + title = "Steal" + }, + percent_system = { + color = "ff0000", + title = "System" + }, + percent_user = { + color = "0000ff", + title = "User" + }, + percent_wait = { + color = "ffb000", + title = "Wait" + } + } } } - } + + local types = graph.tree:data_types( plugin, plugin_instance ) + + for _, t in ipairs(types) do + if t == "cpu" then + p[#p+1] = cpu + end + + if t == "percent" then + p[#p+1] = percent + end + end + else + p = { + title = title, + y_min = "0", + alt_autoscale_max = true, + vlabel = "Percent", + number_format = "%5.1lf%%", + data = { + instances = { + percent = { + "active", + } + }, + options = { + percent_active = { + color = "00e000", + title = "Active" + } + } + } + } + end + + return p end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua index d3596637b2..cb7ae53afa 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua @@ -48,12 +48,12 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) data = { types = { "percent" }, options = { - percent = { title = "%di Hz", negweight = true }, + percent = { title = "%di kHz", negweight = true }, } } } - return { cpufreq, transitions, percentage } + return { cpufreq, percentage, transitions } else return { cpufreq } end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua index b05d31dc02..749c3e352c 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua @@ -1,13 +1,5 @@ ---[[ - -(c) 2011 Manuel Munz <freifunk at somakoma dot de> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 -]]-- +-- Copyright 2011 Manuel Munz <freifunk at somakoma dot de> +-- Licensed to the public under the Apache License 2.0. module("luci.statistics.rrdtool.definitions.memory",package.seeall) @@ -16,24 +8,92 @@ function item() end function rrdargs( graph, plugin, plugin_instance, dtype ) + local p = {} - return { + local memory = { title = "%H: Memory usage", vlabel = "MB", number_format = "%5.1lf%s", y_min = "0", alt_autoscale_max = true, data = { - instances = { - memory = { "free", "buffered", "cached", "used" } + instances = { + memory = { + "free", + "buffered", + "cached", + "used" + } }, options = { - memory_buffered = { color = "0000ff", title = "Buffered" }, - memory_cached = { color = "ff00ff", title = "Cached" }, - memory_used = { color = "ff0000", title = "Used" }, - memory_free = { color = "00ff00", title = "Free" } + memory_buffered = { + color = "0000ff", + title = "Buffered" + }, + memory_cached = { + color = "ff00ff", + title = "Cached" + }, + memory_used = { + color = "ff0000", + title = "Used" + }, + memory_free = { + color = "00ff00", + title = "Free" + } } } } + + local percent = { + title = "%H: Memory usage", + vlabel = "Percent", + number_format = "%5.1lf%%", + y_min = "0", + alt_autoscale_max = true, + data = { + instances = { + percent = { + "free", + "buffered", + "cached", + "used" + } + }, + options = { + percent_buffered = { + color = "0000ff", + title = "Buffered" + }, + percent_cached = { + color = "ff00ff", + title = "Cached" + }, + percent_used = { + color = "ff0000", + title = "Used" + }, + percent_free = { + color = "00ff00", + title = "Free" + } + } + } + } + + local types = graph.tree:data_types( plugin, plugin_instance ) + + for _, t in ipairs(types) do + if t == "percent" then + p[#p+1] = percent + end + + if t == "memory" then + p[#p+1] = memory + end + end + + return p end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua index c3645e408c..b8d11c0759 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua @@ -9,25 +9,62 @@ end function rrdargs( graph, plugin, plugin_instance, dtype ) - return { - -- Ping roundtrip time - { title = "%H: ICMP Round Trip Time", - vlabel = "ms", - number_format = "%5.1lf ms", - data = { - sources = { ping = { "value" } }, - options = { ping__value = { - noarea = true, overlay = true, title = "%di" } } - } }, + local ping = { + title = "%H: ICMP Round Trip Time", + vlabel = "ms", + number_format = "%5.1lf ms", + data = { + sources = { + ping = { + "value" + } + }, + options = { + ping__value = { + noarea = true, + overlay = true, + title = "%di" + } + } + } + } + + local droprate = { + title = "%H: ICMP Drop Rate", + vlabel = "%", + number_format = "%5.2lf %%", + data = { + types = { + "ping_droprate" + }, + options = { + ping_droprate = { + noarea = true, + overlay = true, + title = "%di", + transform_rpn = "100,*" + } + } + } + } - -- Ping droprate - { title = "%H: ICMP Drop Rate", - vlabel = "%", - number_format = "%5.2lf %%", - data = { - types = { "ping_droprate" }, - options = { ping_droprate = { - noarea = true, overlay = true, title = "%di" } } - } } + local stddev = { + title = "%H: ICMP Standard Deviation", + vlabel = "ms", + number_format = "%5.1lf ms", + data = { + types = { + "ping_stddev" + }, + options = { + ping_stddev = { + noarea = true, + overlay = true, + title = "%di" + } + } + } } + + return { ping, droprate, stddev } end diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index 319e823966..f785a5a8e1 100644 --- a/applications/luci-app-statistics/po/ca/statistics.po +++ b/applications/luci-app-statistics/po/ca/statistics.po @@ -66,7 +66,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -262,6 +262,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Configuració del connector exec" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Monitoreig de classe filter" @@ -484,6 +488,10 @@ msgstr "Monitoritza processos" msgid "Monitor remote ports" msgstr "Monitoritza els ports remots" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index 2a8d762f15..de5fd9b598 100644 --- a/applications/luci-app-statistics/po/cs/statistics.po +++ b/applications/luci-app-statistics/po/cs/statistics.po @@ -62,7 +62,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -258,6 +258,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Nastavení pluginu Exec" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -479,6 +483,10 @@ msgstr "Sledovat procesy" msgid "Monitor remote ports" msgstr "Sledovat vzdálené porty" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index 3c6a572925..5a1e7e4fc7 100644 --- a/applications/luci-app-statistics/po/de/statistics.po +++ b/applications/luci-app-statistics/po/de/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -260,6 +260,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Exec Plugin Konfiguration" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Filterklassen überwachen" @@ -486,6 +490,10 @@ msgstr "Überwachte Prozesse" msgid "Monitor remote ports" msgstr "entfernte Ports überwachen" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index fc829c1f71..0dfa4765f3 100644 --- a/applications/luci-app-statistics/po/el/statistics.po +++ b/applications/luci-app-statistics/po/el/statistics.po @@ -65,7 +65,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -262,6 +262,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -477,6 +481,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index cdc6377153..d5d43b1925 100644 --- a/applications/luci-app-statistics/po/en/statistics.po +++ b/applications/luci-app-statistics/po/en/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -260,6 +260,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Exec Plugin Configuration" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Filter class monitoring" @@ -482,6 +486,10 @@ msgstr "Monitor processes" msgid "Monitor remote ports" msgstr "Monitor remote ports" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index 61cd158009..8cea6ad982 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "Frecuencia de CPU" @@ -260,6 +260,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Configuración del plugin Exec" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Monitorización del filtro de clases" @@ -485,6 +489,10 @@ msgstr "Monitorizar procesos" msgid "Monitor remote ports" msgstr "Monitorizar puertos remotos" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "Nombre" diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index 0f88514686..df1e92a3a0 100644 --- a/applications/luci-app-statistics/po/fr/statistics.po +++ b/applications/luci-app-statistics/po/fr/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -260,6 +260,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Configuration du greffon Exec" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Surveillance des filtres" @@ -483,6 +487,10 @@ msgstr "Processus à surveiller" msgid "Monitor remote ports" msgstr "Surveiller les ports destinataires" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index 81a2606756..7880b49f31 100644 --- a/applications/luci-app-statistics/po/he/statistics.po +++ b/applications/luci-app-statistics/po/he/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -257,6 +257,10 @@ msgstr "" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -472,6 +476,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index c65047e2b8..f7b6643fc8 100644 --- a/applications/luci-app-statistics/po/hu/statistics.po +++ b/applications/luci-app-statistics/po/hu/statistics.po @@ -62,7 +62,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -258,6 +258,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Exec bővítmény beállítása" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Szűrő osztály figyelése" @@ -484,6 +488,10 @@ msgstr "Folyamatok figyelése" msgid "Monitor remote ports" msgstr "Távoli portok figyelése" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index e4b8a46a78..6e90a6e1ec 100644 --- a/applications/luci-app-statistics/po/it/statistics.po +++ b/applications/luci-app-statistics/po/it/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -260,6 +260,10 @@ msgstr "" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -482,6 +486,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index 26ea4f2704..0835dff7e7 100644 --- a/applications/luci-app-statistics/po/ja/statistics.po +++ b/applications/luci-app-statistics/po/ja/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "CPU 周波数" @@ -259,6 +259,10 @@ msgstr "" msgid "Exec Plugin Configuration" msgstr "Exec プラグイン設定" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -484,6 +488,10 @@ msgstr "プロセスをモニターする" msgid "Monitor remote ports" msgstr "リモートのポートをモニターする" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index 9a767e9320..9526e071d3 100644 --- a/applications/luci-app-statistics/po/ms/statistics.po +++ b/applications/luci-app-statistics/po/ms/statistics.po @@ -61,7 +61,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -254,6 +254,10 @@ msgstr "" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -469,6 +473,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/no/statistics.po b/applications/luci-app-statistics/po/no/statistics.po index ce66fdf30f..9842297b10 100644 --- a/applications/luci-app-statistics/po/no/statistics.po +++ b/applications/luci-app-statistics/po/no/statistics.po @@ -55,7 +55,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -251,6 +251,10 @@ msgstr "Program" msgid "Exec Plugin Configuration" msgstr "Program plugin konfigurasjon" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Filter class overvåking" @@ -471,6 +475,10 @@ msgstr "Overvåk prosesser" msgid "Monitor remote ports" msgstr "Overvåk eksterne porter" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index 940f684f44..bc3da79e3f 100644 --- a/applications/luci-app-statistics/po/pl/statistics.po +++ b/applications/luci-app-statistics/po/pl/statistics.po @@ -65,7 +65,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -261,6 +261,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Konfiguracja wtyczki Exec" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Monitorowanie filtra klas" @@ -485,6 +489,10 @@ msgstr "Monitoruj procesy" msgid "Monitor remote ports" msgstr "Monitoruj porty zdalne" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/pt-br/statistics.po b/applications/luci-app-statistics/po/pt-br/statistics.po index c514088b62..62b646fa15 100644 --- a/applications/luci-app-statistics/po/pt-br/statistics.po +++ b/applications/luci-app-statistics/po/pt-br/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "Frequência da CPU" @@ -260,6 +260,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Configuração do plugin Exec" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Monitoramento das Classes de Filtros" @@ -488,6 +492,10 @@ msgstr "Monitorar processos" msgid "Monitor remote ports" msgstr "Monitorar portas remotas" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index f85add662c..2b643dd346 100644 --- a/applications/luci-app-statistics/po/pt/statistics.po +++ b/applications/luci-app-statistics/po/pt/statistics.po @@ -64,7 +64,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -260,6 +260,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Configuração do plugin Exec" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Monitoramento das Classes de Filtros" @@ -484,6 +488,10 @@ msgstr "Monitorar processos" msgid "Monitor remote ports" msgstr "Monitorar portas remotas" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index f0080b3463..2756192b06 100644 --- a/applications/luci-app-statistics/po/ro/statistics.po +++ b/applications/luci-app-statistics/po/ro/statistics.po @@ -65,7 +65,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -261,6 +261,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -476,6 +480,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index 81201ec799..61f676f1be 100644 --- a/applications/luci-app-statistics/po/ru/statistics.po +++ b/applications/luci-app-statistics/po/ru/statistics.po @@ -66,7 +66,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "Частота CPU" @@ -261,6 +261,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Настройка плагина «Exec»" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Мониторинг класса фильтров" @@ -489,6 +493,10 @@ msgstr "Мониторить процессы" msgid "Monitor remote ports" msgstr "Мониторить удаленные порты" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "Имя" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 912e7096ec..606a8fac51 100644 --- a/applications/luci-app-statistics/po/sk/statistics.po +++ b/applications/luci-app-statistics/po/sk/statistics.po @@ -59,7 +59,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -252,6 +252,10 @@ msgstr "" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -467,6 +471,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index 83e7b4c8d3..2e73625c5f 100644 --- a/applications/luci-app-statistics/po/sv/statistics.po +++ b/applications/luci-app-statistics/po/sv/statistics.po @@ -60,7 +60,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -256,6 +256,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Exec" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -472,6 +476,10 @@ msgstr "Övervaka processer" msgid "Monitor remote ports" msgstr "Övervaka fjärrportar" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index c616dd7cd0..96fd319d03 100644 --- a/applications/luci-app-statistics/po/templates/statistics.pot +++ b/applications/luci-app-statistics/po/templates/statistics.pot @@ -52,7 +52,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -245,6 +245,10 @@ msgstr "" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -460,6 +464,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index 2197028119..09986d6bb2 100644 --- a/applications/luci-app-statistics/po/tr/statistics.po +++ b/applications/luci-app-statistics/po/tr/statistics.po @@ -60,7 +60,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -253,6 +253,10 @@ msgstr "" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -468,6 +472,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index d87fa0428c..fac692b3b6 100644 --- a/applications/luci-app-statistics/po/uk/statistics.po +++ b/applications/luci-app-statistics/po/uk/statistics.po @@ -65,7 +65,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -258,6 +258,10 @@ msgstr "" msgid "Exec Plugin Configuration" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "" @@ -473,6 +477,10 @@ msgstr "" msgid "Monitor remote ports" msgstr "" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index 86e6cb4097..1c40fa41c4 100644 --- a/applications/luci-app-statistics/po/vi/statistics.po +++ b/applications/luci-app-statistics/po/vi/statistics.po @@ -65,7 +65,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "" @@ -261,6 +261,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Cấu hình Exec Plugin" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Filter class monitoring" @@ -483,6 +487,10 @@ msgstr "Monitor processes" msgid "Monitor remote ports" msgstr "Monitor remote ports" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "" diff --git a/applications/luci-app-statistics/po/zh-cn/statistics.po b/applications/luci-app-statistics/po/zh-cn/statistics.po index 424a4255cb..27a6749b82 100644 --- a/applications/luci-app-statistics/po/zh-cn/statistics.po +++ b/applications/luci-app-statistics/po/zh-cn/statistics.po @@ -67,7 +67,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "CPU 频率" @@ -262,6 +262,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Exec 插件配置" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Filter 类监测" @@ -481,6 +485,10 @@ msgstr "监测进程" msgid "Monitor remote ports" msgstr "监测远程端口" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "名称" diff --git a/applications/luci-app-statistics/po/zh-tw/statistics.po b/applications/luci-app-statistics/po/zh-tw/statistics.po index 842d98c831..9ef36a5876 100644 --- a/applications/luci-app-statistics/po/zh-tw/statistics.po +++ b/applications/luci-app-statistics/po/zh-tw/statistics.po @@ -67,7 +67,7 @@ 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:6 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:9 msgid "CPU Frequency" msgstr "CPU 頻率" @@ -262,6 +262,10 @@ msgstr "Exec" msgid "Exec Plugin Configuration" msgstr "Exec 外掛配置" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "Extra items" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68 msgid "Filter class monitoring" msgstr "Filter 類監測" @@ -481,6 +485,10 @@ msgstr "監測程序" msgid "Monitor remote ports" msgstr "監測遠端埠" +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:15 +msgid "More details about frequency usage and transitions" +msgstr "" + #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" msgstr "名稱" |