summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-02-16 22:45:00 +0100
committerraveit65 <[email protected]>2019-02-17 12:19:18 +0100
commitf5e08dd157d6a092fe6c779b9212343928dc743d (patch)
tree7f8dc7a9e35748569b90017f85a1128ba6554872 /src
parent65aaac0c19b60ff88f3a580f0d96c565f8bc2261 (diff)
downloadcaja-f5e08dd157d6a092fe6c779b9212343928dc743d.tar.bz2
caja-f5e08dd157d6a092fe6c779b9212343928dc743d.tar.xz
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
Diffstat (limited to 'src')
-rw-r--r--src/caja-window-menus.c1
1 files changed, 1 insertions, 0 deletions
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 "