diff options
Diffstat (limited to 'battstat')
-rw-r--r-- | battstat/battstat_applet.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/battstat/battstat_applet.c b/battstat/battstat_applet.c index 57e426f3..bb52c7fd 100644 --- a/battstat/battstat_applet.c +++ b/battstat/battstat_applet.c @@ -816,6 +816,7 @@ about_cb( GtkAction *action, ProgressData *battstat ) "J\xC3\xB6rgen Pehrson <[email protected]>", "Trevor Curtis <[email protected]>", "Davyd Madeley <[email protected]>", + N_("MATE Documentation Team"), NULL }; @@ -825,6 +826,12 @@ about_cb( GtkAction *action, ProgressData *battstat ) /* true */ _("upower backend enabled.") : /* false */ _("Legacy backend enabled.")); +#ifdef ENABLE_NLS + const char **p; + for (p = documenters; *p; ++p) + *p = _(*p); +#endif + gtk_show_about_dialog( NULL, "title", _("About Battery Charge Monitor"), "version", VERSION, |