diff options
author | rbuj <[email protected]> | 2019-02-15 11:50:03 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-02-15 18:30:04 +0100 |
commit | e0efbab6d4a97f3d658c2f4a5f08bbae2a969349 (patch) | |
tree | 3b1dcd6f4eaabd7776747d62f6003a0619352e2c /applets/fish/fish.c | |
parent | 086ca8b01aa6566ba7be07ba348d5b16b887bd48 (diff) | |
download | mate-panel-e0efbab6d4a97f3d658c2f4a5f08bbae2a969349.tar.bz2 mate-panel-e0efbab6d4a97f3d658c2f4a5f08bbae2a969349.tar.xz |
Make translatable the copyright in about dialog
Diffstat (limited to 'applets/fish/fish.c')
-rw-r--r-- | applets/fish/fish.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/applets/fish/fish.c b/applets/fish/fish.c index 0ee7bcc4..922d6ba0 100644 --- a/applets/fish/fish.c +++ b/applets/fish/fish.c @@ -547,9 +547,6 @@ static void display_about_dialog(GtkAction* action, FishApplet* fish) char* authors[3]; char* descr; - char copyright[] = \ - "Copyright \xc2\xa9 1998-2002 Free Software Foundation, Inc.\n" - "Copyright \xc2\xa9 2012-2018 MATE developers"; authors[0] = g_strdup_printf(author_format, fish->name); authors[1] = _("(with minor help from George)"); @@ -561,7 +558,9 @@ static void display_about_dialog(GtkAction* action, FishApplet* fish) "program-name", _("Fish"), "authors", authors, "comments", descr, - "copyright", copyright, + "copyright", _("Copyright \xc2\xa9 1998-2002 Free Software Foundation, Inc.\n" + "Copyright \xc2\xa9 2002-2005 Vincent Untz\n" + "Copyright \xc2\xa9 2012-2019 MATE developers"), "documenters", documenters, "logo-icon-name", FISH_ICON, "translator-credits", _("translator-credits"), |