diff options
author | rbuj <[email protected]> | 2019-03-13 18:29:10 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-03-20 15:56:00 +0100 |
commit | fa5d9ce97cfabfd94a08db60bef31ac1ca41a9f7 (patch) | |
tree | 568de6b6214c5fb9a6ed1f79a0077192da68a55f /trashapplet/src | |
parent | e2b5737f3401f29a77c2d4aa00950e081e4ce64b (diff) | |
download | mate-applets-fa5d9ce97cfabfd94a08db60bef31ac1ca41a9f7.tar.bz2 mate-applets-fa5d9ce97cfabfd94a08db60bef31ac1ca41a9f7.tar.xz |
Make translatable documenters in about dialog
Diffstat (limited to 'trashapplet/src')
-rw-r--r-- | trashapplet/src/trashapplet.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/trashapplet/src/trashapplet.c b/trashapplet/src/trashapplet.c index bf2e0318..4d99f576 100644 --- a/trashapplet/src/trashapplet.c +++ b/trashapplet/src/trashapplet.c @@ -418,9 +418,16 @@ trash_applet_show_about (GtkAction *action, static const char *documenters[] = { "Michiel Sikkes <[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 Trash Applet"), "version", VERSION, |