diff options
author | rbuj <[email protected]> | 2019-03-13 18:29:10 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-03-20 15:38:56 +0100 |
commit | a40fd10e985f525f9e26ef816c2f71a2c22dc725 (patch) | |
tree | 9f651b18108bad315da2221362a09a1bb26681f3 /accessx-status/applet.c | |
parent | 5059df0f47487b7aed5be05640bdec87a4573813 (diff) | |
download | mate-applets-a40fd10e985f525f9e26ef816c2f71a2c22dc725.tar.bz2 mate-applets-a40fd10e985f525f9e26ef816c2f71a2c22dc725.tar.xz |
Make translatable documenters in about dialog
Diffstat (limited to 'accessx-status/applet.c')
-rw-r--r-- | accessx-status/applet.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/accessx-status/applet.c b/accessx-status/applet.c index 6a1add9d..697f5e36 100644 --- a/accessx-status/applet.c +++ b/accessx-status/applet.c @@ -83,10 +83,17 @@ static void about_cb(GtkAction* action, AccessxStatusApplet* sapplet) const gchar* documenters[] = { "Bill Haneman <[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 AccessX Status"), "version", VERSION, |