summaryrefslogtreecommitdiff
path: root/applets/inhibit/inhibit-applet.c
diff options
context:
space:
mode:
Diffstat (limited to 'applets/inhibit/inhibit-applet.c')
-rw-r--r--applets/inhibit/inhibit-applet.c7
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);