summaryrefslogtreecommitdiff
path: root/geyes
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-03-13 18:29:10 +0100
committerraveit65 <[email protected]>2019-03-20 15:38:56 +0100
commita40fd10e985f525f9e26ef816c2f71a2c22dc725 (patch)
tree9f651b18108bad315da2221362a09a1bb26681f3 /geyes
parent5059df0f47487b7aed5be05640bdec87a4573813 (diff)
downloadmate-applets-a40fd10e985f525f9e26ef816c2f71a2c22dc725.tar.bz2
mate-applets-a40fd10e985f525f9e26ef816c2f71a2c22dc725.tar.xz
Make translatable documenters in about dialog
Diffstat (limited to 'geyes')
-rw-r--r--geyes/geyes.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/geyes/geyes.c b/geyes/geyes.c
index d04cff27..a1fcc530 100644
--- a/geyes/geyes.c
+++ b/geyes/geyes.c
@@ -163,10 +163,17 @@ about_cb (GtkAction *action,
const gchar *documenters[] = {
"Arjan Scherpenisse <[email protected]>",
"Telsa Gwynne <[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 Eyes"),
"version", VERSION,