[gnome-system-monitor] Make charts Y axis and CPU percentage labels translatable (fixes #191)
- From: Robert Roth <robertroth src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-system-monitor] Make charts Y axis and CPU percentage labels translatable (fixes #191)
- Date: Mon, 12 Apr 2021 06:15:01 +0000 (UTC)
commit 0ac880a273ea192c851029a20aaf5589787a8549
Author: Robert Roth <robert roth off gmail com>
Date: Mon Apr 12 09:13:17 2021 +0300
Make charts Y axis and CPU percentage labels translatable (fixes #191)
src/load-graph.cpp | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/src/load-graph.cpp b/src/load-graph.cpp
index b18bc61c..fc5201a9 100644
--- a/src/load-graph.cpp
+++ b/src/load-graph.cpp
@@ -84,12 +84,14 @@ char* LoadGraph::get_caption(guint index)
if (this->is_logarithmic_scale()) {
float caption_value = caption_percentage == 0 ? 0 : pow(100, caption_percentage / max_value);
- caption = g_strdup_printf("%.0f %%", caption_value);
+ // Translators: loadgraphs y axis percentage labels: 0 %, 50%, 100%
+ caption = g_strdup_printf(_("%.0f %%"), caption_value);
} else if (this->type == LOAD_GRAPH_NET) {
const std::string captionstr(procman::format_network_rate((guint64)caption_percentage));
caption = g_strdup(captionstr.c_str());
} else {
- caption = g_strdup_printf("%.0f %%", caption_percentage);
+ // Translators: loadgraphs y axis percentage labels: 0 %, 50%, 100%
+ caption = g_strdup_printf(_("%.0f %%"), caption_percentage);
}
return caption;
@@ -499,7 +501,8 @@ get_load (LoadGraph *graph)
}
/* Update label */
- text = g_strdup_printf("%.1f%%", load * 100.0f);
+ // Translators: CPU usage percentage label: 95.7%
+ text = g_strdup_printf(_("%.1f%%"), load * 100.0f);
gtk_label_set_text(GTK_LABEL(graph->labels.cpu[i]), text);
g_free(text);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]