From 177f1081b3b52753bec2fbb560f40e1c9faaae52 Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 13 Mar 2019 11:56:39 +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 --- accessx-status/applet.c | 1 + 1 file changed, 1 insertion(+) (limited to 'accessx-status') diff --git a/accessx-status/applet.c b/accessx-status/applet.c index 652a99ca..e131e1bb 100644 --- a/accessx-status/applet.c +++ b/accessx-status/applet.c @@ -92,6 +92,7 @@ static void about_cb(GtkAction* action, AccessxStatusApplet* sapplet) "Copyright \xc2\xa9 2003 Sun Microsystems"; gtk_show_about_dialog(NULL, + "title", _("About AccessX Status"), "version", VERSION, "comments", _("Shows the state of AccessX features such as latched modifiers"), "copyright", copyright, -- cgit v1.2.1