From 1db7d2a9963e990cc0bf8a7038f74fdb63e0b3b0 Mon Sep 17 00:00:00 2001 From: rbuj Date: Sat, 16 Feb 2019 23:22:06 +0100 Subject: Ensure proper translation of the about dialog title Note that GTK+ sets a default title of _("About %s") on the dialog window (where %s is replaced by the name of the application, but in order to ensure proper translation of the title, applications should set the title property explicitly when constructing a GtkAboutDialog https://developer.gnome.org/gtk3/stable/GtkAboutDialog.html --- applets/wncklet/showdesktop.c | 1 + 1 file changed, 1 insertion(+) (limited to 'applets/wncklet/showdesktop.c') diff --git a/applets/wncklet/showdesktop.c b/applets/wncklet/showdesktop.c index 78dd2778..d827f490 100644 --- a/applets/wncklet/showdesktop.c +++ b/applets/wncklet/showdesktop.c @@ -496,6 +496,7 @@ static void display_about_dialog(GtkAction* action, ShowDesktopData* sdd) gtk_show_about_dialog(GTK_WINDOW(sdd->applet), "program-name", _("Show Desktop Button"), + "title", _("About Show Desktop Button"), "authors", authors, "comments", _("This button lets you hide all windows and show the desktop."), "copyright", _("Copyright \xc2\xa9 2002 Red Hat, Inc.\n" -- cgit v1.2.1