summaryrefslogtreecommitdiff
path: root/mate-dictionary
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-02-15 13:33:32 +0100
committerraveit65 <[email protected]>2019-02-16 16:22:12 +0100
commitf2c1234cdbc1fafc79f80a6e5f442ef2a5da387f (patch)
tree299f31e3f24b6265a6ca19cb3e14b69d49870543 /mate-dictionary
parent879a0cf93837096119adda3b890144f20a67195e (diff)
downloadmate-utils-f2c1234cdbc1fafc79f80a6e5f442ef2a5da387f.tar.bz2
mate-utils-f2c1234cdbc1fafc79f80a6e5f442ef2a5da387f.tar.xz
Make translatable the copyright in about dialog
Diffstat (limited to 'mate-dictionary')
-rw-r--r--mate-dictionary/src/gdict-about.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/mate-dictionary/src/gdict-about.c b/mate-dictionary/src/gdict-about.c
index 4995259b..57c972d8 100644
--- a/mate-dictionary/src/gdict-about.c
+++ b/mate-dictionary/src/gdict-about.c
@@ -53,8 +53,6 @@ gdict_show_about_dialog (GtkWidget *parent)
};
const gchar *translator_credits = _("translator-credits");
- const gchar *copyright = "Copyright \xc2\xa9 2005-2006 Emmanuele Bassi\n"
- "Copyright \xc2\xa9 2011-2018 MATE developers";
const gchar *comments = _("Look up words in dictionaries");
const gchar *license =
@@ -78,7 +76,8 @@ gdict_show_about_dialog (GtkWidget *parent)
gtk_show_about_dialog (GTK_IS_WINDOW (parent) ? GTK_WINDOW (parent) : NULL,
"name", _("Dictionary"),
"version", VERSION,
- "copyright", copyright,
+ "copyright", _("Copyright \xc2\xa9 2005-2006 Emmanuele Bassi\n"
+ "Copyright \xc2\xa9 2011-2019 MATE developers"),
"comments", comments,
"authors", authors,
"documenters", documenters,