From: Michael Tremer Date: Tue, 27 Oct 2015 00:18:34 +0000 (+0100) Subject: processor: Fix title X-Git-Tag: 004~15 X-Git-Url: http://git.ipfire.org/?p=collecty.git;a=commitdiff_plain;h=39fe78626f4ac3e07fb6d05978c545d17c74ac5b processor: Fix title We shouldn't use useless abbreviations and words in headlines should start with a capital letter. Signed-off-by: Michael Tremer --- diff --git a/src/collecty/plugins/processor.py b/src/collecty/plugins/processor.py index d93578f..d22558e 100644 --- a/src/collecty/plugins/processor.py +++ b/src/collecty/plugins/processor.py @@ -103,7 +103,7 @@ class GraphTemplateProcessor(base.GraphTemplate): @property def graph_title(self): _ = self.locale.translate - return _("CPU usage") + return _("Processor Usage") @property def graph_vertical_label(self):