From a40fd10e985f525f9e26ef816c2f71a2c22dc725 Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 13 Mar 2019 18:29:10 +0100 Subject: Make translatable documenters in about dialog --- drivemount/drivemount.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'drivemount') diff --git a/drivemount/drivemount.c b/drivemount/drivemount.c index 3e8a8650..b67a95cb 100644 --- a/drivemount/drivemount.c +++ b/drivemount/drivemount.c @@ -106,9 +106,16 @@ display_about_dialog (GtkAction *action, const gchar *documenters[] = { "Dan Mueth ", "John Fleck ", + 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 Disk Mounter"), "version", VERSION, -- cgit v1.2.1