aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/shell.c b/shell/shell.c
index 57e5598c..9dc750e6 100644
--- a/shell/shell.c
+++ b/shell/shell.c
@@ -406,12 +406,12 @@ void shell_set_title(Shell *shell, gchar *subtitle)
if (subtitle) {
gchar *tmp;
- tmp = g_strdup_printf(_("%s - System Information"), subtitle);
+ tmp = g_strdup_printf(_("%s - System Information and Benchmark"), subtitle);
gtk_window_set_title(GTK_WINDOW(shell->window), tmp);
g_free(tmp);
} else {
- gtk_window_set_title(GTK_WINDOW(shell->window), _("System Information"));
+ gtk_window_set_title(GTK_WINDOW(shell->window), _("System Information and Benchmark"));
}
}