diff options
Diffstat (limited to 'charpick')
-rw-r--r-- | charpick/charpick.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/charpick/charpick.c b/charpick/charpick.c index e4b45789..6e4842cd 100644 --- a/charpick/charpick.c +++ b/charpick/charpick.c @@ -568,10 +568,17 @@ about (GtkAction *action, static const gchar * const documenters[] = { "Dan Mueth <[email protected]>", - "Sun GNOME Documentation Team <[email protected]>", + N_("Sun GNOME Documentation Team <[email protected]>"), + N_("MATE Documentation Team"), NULL }; +#ifdef ENABLE_NLS + const char **p; + for (p = documenters; *p; ++p) + *p = _(*p); +#endif + gtk_show_about_dialog (NULL, "title", _("About Character Palette"), "version", VERSION, |