From ef03b0bc5a17833e78ca3d7171811ec7170660fa Mon Sep 17 00:00:00 2001 From: bigbear Date: Thu, 8 Feb 2024 03:04:46 +0100 Subject: FIX Name/Desc sync --- shell/shell.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell') 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")); } } -- cgit v1.2.3