summaryrefslogtreecommitdiff
path: root/mate-dictionary
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-03-20 18:00:59 +0100
committerraveit65 <[email protected]>2019-03-24 11:18:03 +0100
commit1783e808873d96c5d6e887a41813c6c40fe06b09 (patch)
tree2bad75bf78f0227f57ca2db1269f161ce9c0e250 /mate-dictionary
parent9c61f4159b7ddc9a3c08285ea20c7d5fa3f09a6e (diff)
downloadmate-utils-1783e808873d96c5d6e887a41813c6c40fe06b09.tar.bz2
mate-utils-1783e808873d96c5d6e887a41813c6c40fe06b09.tar.xz
Use program-name and title in gtk_show_about_dialog call
Diffstat (limited to 'mate-dictionary')
-rw-r--r--mate-dictionary/src/gdict-about.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mate-dictionary/src/gdict-about.c b/mate-dictionary/src/gdict-about.c
index 57c972d8..dbd13698 100644
--- a/mate-dictionary/src/gdict-about.c
+++ b/mate-dictionary/src/gdict-about.c
@@ -74,8 +74,9 @@ gdict_show_about_dialog (GtkWidget *parent)
g_return_if_fail (GTK_IS_WIDGET (parent));
gtk_show_about_dialog (GTK_IS_WINDOW (parent) ? GTK_WINDOW (parent) : NULL,
- "name", _("Dictionary"),
+ "program-name", _("Dictionary"),
"version", VERSION,
+ "title", _("About Dictionary"),
"copyright", _("Copyright \xc2\xa9 2005-2006 Emmanuele Bassi\n"
"Copyright \xc2\xa9 2011-2019 MATE developers"),
"comments", comments,