aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbigbear <ns@bigbear.dk>2024-02-08 03:04:46 +0100
committerbigbear <ns@bigbear.dk>2024-02-08 19:52:53 +0100
commitef03b0bc5a17833e78ca3d7171811ec7170660fa (patch)
treee99bdae264719e583dca4822de6d534adbe7faec
parent22b240d6b3f81b426d7c34680bc0ca628ceb93c2 (diff)
FIX Name/Desc sync
-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"));
}
}