diff options
| -rw-r--r-- | pluma/pluma-commands-help.c | 16 | 
1 files changed, 6 insertions, 10 deletions
| diff --git a/pluma/pluma-commands-help.c b/pluma/pluma-commands-help.c index 6e2daeff..d0680228 100644 --- a/pluma/pluma-commands-help.c +++ b/pluma/pluma-commands-help.c @@ -72,14 +72,6 @@ void _pluma_cmd_help_about(GtkAction* action, PlumaWindow* window)  		NULL  	}; -	static const gchar copyright[] = \ -		"Copyright \xc2\xa9 1998-2000 Evan Lawrence, Alex Robert\n" -		"Copyright \xc2\xa9 2000-2002 Chema Celorio, Paolo Maggi\n" -		"Copyright \xc2\xa9 2003-2006 Paolo Maggi\n" -		"Copyright \xc2\xa9 2004-2010 Paolo Borelli, Jesse van den Kieboom\nSteve Fr\303\251cinaux, Ignacio Casal Quinteiro\n" -		"Copyright \xc2\xa9 2011 Perberos\n" -		"Copyright \xc2\xa9 2012-2018 MATE developers"; -  	static const gchar comments[] = \  		N_("Pluma is a small and lightweight text editor for the MATE Desktop"); @@ -87,10 +79,14 @@ void _pluma_cmd_help_about(GtkAction* action, PlumaWindow* window)  	gtk_show_about_dialog(GTK_WINDOW(window),  		"program-name", "Pluma", -  		"authors", authors,  		"comments", _(comments), -		"copyright", copyright, +		"copyright", _("Copyright \xc2\xa9 1998-2000 Evan Lawrence, Alex Robert\n" +		               "Copyright \xc2\xa9 2000-2002 Chema Celorio, Paolo Maggi\n" +		               "Copyright \xc2\xa9 2003-2006 Paolo Maggi\n" +		               "Copyright \xc2\xa9 2004-2010 Paolo Borelli, Jesse van den Kieboom\nSteve Fr\303\251cinaux, Ignacio Casal Quinteiro\n" +		               "Copyright \xc2\xa9 2011 Perberos\n" +		               "Copyright \xc2\xa9 2012-2019 MATE developers"),  		"documenters", documenters,  		"logo_icon_name", "accessories-text-editor",  		"translator-credits", _("translator-credits"), | 
