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 /mateweather | |
parent | 5059df0f47487b7aed5be05640bdec87a4573813 (diff) | |
download | mate-applets-a40fd10e985f525f9e26ef816c2f71a2c22dc725.tar.bz2 mate-applets-a40fd10e985f525f9e26ef816c2f71a2c22dc725.tar.xz |
Make translatable documenters in about dialog
Diffstat (limited to 'mateweather')
-rw-r--r-- | mateweather/mateweather-about.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mateweather/mateweather-about.c b/mateweather/mateweather-about.c index a1a3d00d..aa4166b0 100644 --- a/mateweather/mateweather-about.c +++ b/mateweather/mateweather-about.c @@ -38,11 +38,18 @@ void mateweather_about_run(MateWeatherApplet* gw_applet) const gchar* documenters[] = { "Dan Mueth <[email protected]>", "Spiros Papadimitriou <[email protected]>", - "Sun GNOME Documentation Team <[email protected]>", + N_("Sun GNOME Documentation Team <[email protected]>"), "Davyd Madeley <[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 Weather Report"), "version", VERSION, |