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/notification_area/main.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/notification_area/main.c')
-rw-r--r-- | applets/notification_area/main.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/applets/notification_area/main.c b/applets/notification_area/main.c index 271d22f8..613a2470 100644 --- a/applets/notification_area/main.c +++ b/applets/notification_area/main.c @@ -272,17 +272,14 @@ static void about_cb(GtkAction* action, NaTrayApplet* applet) NULL }; - const char copyright[] = \ - "Copyright \xc2\xa9 2002 Red Hat, Inc.\n" - "Copyright \xc2\xa9 2003-2006 Vincent Untz\n" - "Copyright \xc2\xa9 2011 Perberos\n" - "Copyright \xc2\xa9 2012-2018 MATE developers"; - gtk_show_about_dialog(NULL, "program-name", _("Notification Area"), "authors", authors, //"comments", _(comments), - "copyright", copyright, + "copyright", _("Copyright \xc2\xa9 2002 Red Hat, Inc.\n" + "Copyright \xc2\xa9 2003-2006 Vincent Untz\n" + "Copyright \xc2\xa9 2011 Perberos\n" + "Copyright \xc2\xa9 2012-2019 MATE developers"), "documenters", documenters, "logo-icon-name", NOTIFICATION_AREA_ICON, "translator-credits", _("translator-credits"), |