diff options
author | rbuj <[email protected]> | 2019-04-11 12:58:53 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-04-11 22:51:47 +0200 |
commit | b43df579b7d281b11da754e245fab01bbf3ac800 (patch) | |
tree | 651c60850796ba6dd28e685563648a1e4220e6bb /src | |
parent | a711e2e2c249da3f793aa9c999b8d16df4c55fdc (diff) | |
download | mate-terminal-b43df579b7d281b11da754e245fab01bbf3ac800.tar.bz2 mate-terminal-b43df579b7d281b11da754e245fab01bbf3ac800.tar.xz |
Make translatable the copyright info in about dialog
Diffstat (limited to 'src')
-rw-r--r-- | src/terminal-window.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/terminal-window.c b/src/terminal-window.c index df6347c..93f62a1 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c @@ -4330,13 +4330,6 @@ static void help_about_callback (GtkAction *action, TerminalWindow *window) { - static const char copyright[] = - "Copyright © 2002–2004 Havoc Pennington\n" - "Copyright © 2003–2004, 2007 Mariano Suárez-Alvarez\n" - "Copyright © 2006 Guilherme de S. Pastore\n" - "Copyright © 2007–2010 Christian Persch\n" - "Copyright © 2011 Perberos\n" - "Copyright © 2012-2019 MATE developers"; char *licence_text; GBytes *bytes; const guint8 *data; @@ -4391,7 +4384,12 @@ help_about_callback (GtkAction *action, gtk_show_about_dialog (GTK_WINDOW (window), "program-name", _("MATE Terminal"), - "copyright", copyright, + "copyright", _("Copyright \xc2\xa9 2002–2004 Havoc Pennington\n" + "Copyright \xc2\xa9 2003–2004, 2007 Mariano Suárez-Alvarez\n" + "Copyright \xc2\xa9 2006 Guilherme de S. Pastore\n" + "Copyright \xc2\xa9 2007–2010 Christian Persch\n" + "Copyright \xc2\xa9 2011 Perberos\n" + "Copyright \xc2\xa9 2012-2019 MATE developers"), "comments", _("A terminal emulator for the MATE desktop"), "version", VERSION, "authors", array_strv, |