From f5e08dd157d6a092fe6c779b9212343928dc743d Mon Sep 17 00:00:00 2001 From: rbuj Date: Sat, 16 Feb 2019 22:45:00 +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 --- src/caja-window-menus.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/caja-window-menus.c b/src/caja-window-menus.c index 0751f96e..d67fc2a1 100644 --- a/src/caja-window-menus.c +++ b/src/caja-window-menus.c @@ -634,6 +634,7 @@ action_about_caja_callback (GtkAction *action, gtk_show_about_dialog (GTK_WINDOW (user_data), "program-name", _("Caja"), + "title", _("About Caja"), "version", VERSION, "comments", _("Caja lets you organize " "files and folders, both on " -- cgit v1.2.1