summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-08-01 15:51:53 +0200
committerraveit65 <[email protected]>2016-08-01 15:51:53 +0200
commitee1cbcf64fdd6df2dd0ab289d746516925aea1d8 (patch)
tree0d5572facfcbd3d695d780204a29bd437c1a86e6
parent6497982f7ec3fb51fe9a71baedd45932f8b8c44f (diff)
downloadmate-power-manager-ee1cbcf64fdd6df2dd0ab289d746516925aea1d8.tar.bz2
mate-power-manager-ee1cbcf64fdd6df2dd0ab289d746516925aea1d8.tar.xz
keep old copyright informations
-rw-r--r--applets/brightness/brightness-applet.c7
-rw-r--r--applets/inhibit/inhibit-applet.c7
2 files changed, 12 insertions, 2 deletions
diff --git a/applets/brightness/brightness-applet.c b/applets/brightness/brightness-applet.c
index b7c1682..7879969 100644
--- a/applets/brightness/brightness-applet.c
+++ b/applets/brightness/brightness-applet.c
@@ -916,6 +916,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 Benjamin Canou";
+
const char *documenters [] = {
NULL
};
@@ -943,7 +948,7 @@ gpm_applet_dialog_about_cb (GtkAction *action, gpointer data)
about = (GtkAboutDialog*) gtk_about_dialog_new ();
gtk_about_dialog_set_program_name (about, GPM_BRIGHTNESS_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_BRIGHTNESS_APPLET_DESC);
gtk_about_dialog_set_authors (about, authors);
gtk_about_dialog_set_documenters (about, documenters);
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);