summaryrefslogtreecommitdiff
path: root/mateweather
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-03-13 18:29:10 +0100
committerraveit65 <[email protected]>2019-03-20 15:56:00 +0100
commitfa5d9ce97cfabfd94a08db60bef31ac1ca41a9f7 (patch)
tree568de6b6214c5fb9a6ed1f79a0077192da68a55f /mateweather
parente2b5737f3401f29a77c2d4aa00950e081e4ce64b (diff)
downloadmate-applets-fa5d9ce97cfabfd94a08db60bef31ac1ca41a9f7.tar.bz2
mate-applets-fa5d9ce97cfabfd94a08db60bef31ac1ca41a9f7.tar.xz
Make translatable documenters in about dialog
Diffstat (limited to 'mateweather')
-rw-r--r--mateweather/mateweather-about.c9
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,