diff options
author | raveit65 <[email protected]> | 2016-08-01 15:51:53 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-08-01 15:51:53 +0200 |
commit | ee1cbcf64fdd6df2dd0ab289d746516925aea1d8 (patch) | |
tree | 0d5572facfcbd3d695d780204a29bd437c1a86e6 /applets/inhibit | |
parent | 6497982f7ec3fb51fe9a71baedd45932f8b8c44f (diff) | |
download | mate-power-manager-ee1cbcf64fdd6df2dd0ab289d746516925aea1d8.tar.bz2 mate-power-manager-ee1cbcf64fdd6df2dd0ab289d746516925aea1d8.tar.xz |
keep old copyright informations
Diffstat (limited to 'applets/inhibit')
-rw-r--r-- | applets/inhibit/inhibit-applet.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/applets/inhibit/inhibit-applet.c b/applets/inhibit/inhibit-applet.c index fe34c1d..6c87b16 100644 --- a/applets/inhibit/inhibit-applet.c +++ b/applets/inhibit/inhibit-applet.c @@ -438,6 +438,11 @@ gpm_applet_dialog_about_cb (GtkAction *action, gpointer data) "Richard Hughes <[email protected]>", NULL }; + + char copyright[] = \ + "Copyright \xc2\xa9 2012-2016 MATE developers\n" + "Copyright \xc2\xa9 2006-2007 Richard Hughes"; + const char *documenters [] = { NULL }; @@ -465,7 +470,7 @@ gpm_applet_dialog_about_cb (GtkAction *action, gpointer data) about = (GtkAboutDialog*) gtk_about_dialog_new (); gtk_about_dialog_set_program_name (about, GPM_INHIBIT_APPLET_NAME); gtk_about_dialog_set_version (about, VERSION); - gtk_about_dialog_set_copyright (about, _("Copyright \xc2\xa9 2011-2016 MATE Developer")); + gtk_about_dialog_set_copyright (about, copyright); gtk_about_dialog_set_comments (about, GPM_INHIBIT_APPLET_DESC); gtk_about_dialog_set_authors (about, authors); gtk_about_dialog_set_documenters (about, documenters); |