diff options
author | rbuj <[email protected]> | 2019-03-13 13:42:08 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-03-20 15:38:56 +0100 |
commit | 5059df0f47487b7aed5be05640bdec87a4573813 (patch) | |
tree | 4453edff9b43e42b9644d27532739299adcb2cc0 /drivemount | |
parent | 5b153a6130de6b905b73b9e1a23b3922c929a0a7 (diff) | |
download | mate-applets-5059df0f47487b7aed5be05640bdec87a4573813.tar.bz2 mate-applets-5059df0f47487b7aed5be05640bdec87a4573813.tar.xz |
Make translatable copyright info in about dialog
Diffstat (limited to 'drivemount')
-rw-r--r-- | drivemount/drivemount.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivemount/drivemount.c b/drivemount/drivemount.c index cf951a42..3e8a8650 100644 --- a/drivemount/drivemount.c +++ b/drivemount/drivemount.c @@ -102,9 +102,6 @@ display_about_dialog (GtkAction *action, "James Henstridge <[email protected]>", NULL }; - char copyright[] = \ - "Copyright \xc2\xa9 2012-2018 MATE developers\n" - "Copyright \xC2\xA9 2004 Canonical Ltd"; const gchar *documenters[] = { "Dan Mueth <[email protected]>", @@ -115,7 +112,8 @@ display_about_dialog (GtkAction *action, gtk_show_about_dialog (NULL, "title", _("About Disk Mounter"), "version", VERSION, - "copyright", copyright, + "copyright", _("Copyright \xC2\xA9 2004 Canonical Ltd\n" + "Copyright \xc2\xa9 2012-2019 MATE developers"), "comments", _("Applet for mounting and unmounting block volumes."), "authors", authors, "documenters", documenters, |