diff options
Diffstat (limited to 'battstat/battstat_applet.c')
-rw-r--r-- | battstat/battstat_applet.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/battstat/battstat_applet.c b/battstat/battstat_applet.c index f610b66c..2ba713e6 100644 --- a/battstat/battstat_applet.c +++ b/battstat/battstat_applet.c @@ -1230,7 +1230,7 @@ about_cb( GtkAction *action, ProgressData *battstat ) const gchar *authors[] = { "J\xC3\xB6rgen Pehrson <[email protected]>", "Lennart Poettering <[email protected]> (Linux ACPI support)", - "Seth Nickell <[email protected]> (MATE2 port)", + "Seth Nickell <[email protected]> (GNOME2 port)", "Davyd Madeley <[email protected]>", "Ryan Lortie <[email protected]>", "Joe Marcus Clarke <[email protected]> (FreeBSD ACPI support)", @@ -1246,9 +1246,11 @@ about_cb( GtkAction *action, ProgressData *battstat ) char *comments = g_strdup_printf ("%s\n\n%s", _("This utility shows the status of your laptop battery."), - power_management_using_hal () ? + power_management_using_upower () ? + /* ture */ _("upower backend enabled.") : + (power_management_using_hal () ? /* true */ _("HAL backend enabled.") : - /* false */ _("Legacy (non-HAL) backend enabled.")); + /* false */ _("Legacy (non-HAL) backend enabled."))); gtk_show_about_dialog( NULL, "version", VERSION, |