This is an automated email from the git hooks/post-receive script. o c h o s i p u s h e d a c o m m i t t o b r a n c h m a s t e r in repository xfce/xfce4-power-manager.
commit a3dadb8e0463945896ec46991ef2bcd23d9929f1 Author: Simon Steinbeiss <[email protected]> Date: Sun Oct 29 20:59:26 2017 +0100 Drop period at end of all tooltip texts (Bug #12342) --- src/xfpm-battery.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xfpm-battery.c b/src/xfpm-battery.c index 4b40052..ee23fb7 100644 --- a/src/xfpm-battery.c +++ b/src/xfpm-battery.c @@ -122,7 +122,7 @@ xfpm_battery_get_message_from_battery_state (XfpmBattery *battery) est_time_str = xfpm_battery_get_time_string (battery->priv->time_to_full); - msg = g_strdup_printf (_("%s (%i%%)\n%s until it is fully charged."), tmp, battery->priv->percentage, est_time_str); + msg = g_strdup_printf (_("%s (%i%%)\n%s until it is fully charged"), tmp, battery->priv->percentage, est_time_str); g_free (est_time_str); g_free (tmp); } @@ -142,7 +142,7 @@ xfpm_battery_get_message_from_battery_state (XfpmBattery *battery) est_time_str = xfpm_battery_get_time_string (battery->priv->time_to_empty); - msg = g_strdup_printf (_("%s (%i%%)\nEstimated time left is %s."), tmp, battery->priv->percentage, est_time_str); + msg = g_strdup_printf (_("%s (%i%%)\nEstimated time left is %s"), tmp, battery->priv->percentage, est_time_str); g_free (tmp); g_free (est_time_str); } -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
