diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-30 00:26:18 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-30 00:26:18 +0000 |
commit | d8ba05412c3bd76fead8c512a112a7bf230d2b8a (patch) | |
tree | e0c47d6383b0345bb44e7545680b73833caa1b86 /applications/luci-statistics/luasrc/i18n/statistics.en | |
parent | d5c47776a5477bb9eaa9cd2585b3d27d10565807 (diff) |
* luci/statistics: added diagram models for process and df plugins, adept controller to recent luci core, support models with per instance diagrams and index diagrams, added new strings to language file
Diffstat (limited to 'applications/luci-statistics/luasrc/i18n/statistics.en')
-rw-r--r-- | applications/luci-statistics/luasrc/i18n/statistics.en | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/applications/luci-statistics/luasrc/i18n/statistics.en b/applications/luci-statistics/luasrc/i18n/statistics.en index a3d3a61a9..25a9be674 100644 --- a/applications/luci-statistics/luasrc/i18n/statistics.en +++ b/applications/luci-statistics/luasrc/i18n/statistics.en @@ -7,6 +7,7 @@ stat_processes = "Processes" stat_wireless = "Wireless" stat_tcpconns = "TCP Connections" stat_interface = "Interfaces" +stat_df = "Disk Space Usage" -- diagrams stat_dg_title_wireless__signal_noise = "%H: Wireless - Signal Noise Ratio" @@ -53,6 +54,23 @@ stat_dg_title_processes = "%H: Processes" stat_dg_label_processes = "Processes/s" stat_ds_ps_state = "%di" +stat_dg_title_processes__ps_cputime = "%H: Process %pi - used cpu time" +stat_dg_label_processes__ps_cputime = "Jiffies" +stat_ds_ps_cputime__syst = "system" +stat_ds_ps_cputime__user = "user" + +stat_dg_title_processes__ps_count = "%H: Process %pi - threads and processes" +stat_dg_label_processes__ps_count = "Count" +stat_ds_ps_count = "%ds" + +stat_dg_title_processes__ps_pagefaults = "%H: Process %pi - page faults" +stat_dg_label_processes__ps_pagefaults = "Pagefaults" +stat_ds_ps_pagefaults = "page faults" + +stat_dg_title_processes__ps_rss = "%H: Process %pi - virtual memory size" +stat_dg_label_processes__ps_rss = "Bytes" +stat_ds_ps_rss = "virtual memory" + stat_dg_title_cpu = "%H: Usage on Processor #%pi" stat_dg_label_cpu = "%" stat_ds_cpu = "%di" @@ -66,3 +84,9 @@ stat_dg_label_interface__if_packets = "Packets/s" stat_dg_title_tcpconns = "%H: TCP-Connections to Port %pi" stat_dg_label_tcpconns = "Connections/s" stat_ds_tcp_connections = "%di" + +stat_dg_title_df = "%H: Disk Space Usage on %di" +stat_dg_label_df = "Bytes" +stat_ds_df__free = "%ds" +stat_ds_df__used = "%ds" + |