summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-02-15 12:22:39 +0100
committerraveit65 <[email protected]>2019-02-15 13:10:29 +0100
commit6cdce0a4c392da97f7092e98918c496201a37053 (patch)
tree516a2fe2ebc2cfb01f79c7cc1ad1f25fccfaf7dd
parent7c519e111c702ff37402ba4aa84e6f9e1a3be56c (diff)
downloadpluma-6cdce0a4c392da97f7092e98918c496201a37053.tar.bz2
pluma-6cdce0a4c392da97f7092e98918c496201a37053.tar.xz
Make translatable the copyright in about dialog
-rw-r--r--pluma/pluma-commands-help.c16
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"),