[brasero] Fix #585190 – remove 0 from 03 % status
- From: Philippe Rouquier <philippr src gnome org>
- To: svn-commits-list gnome org
- Subject: [brasero] Fix #585190 – remove 0 from 03 % status
- Date: Fri, 26 Jun 2009 10:03:52 +0000 (UTC)
commit 3bf199cf57c4bd1d9a46fc3f5c7751f34e92a922
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date: Fri Jun 26 09:58:33 2009 +0200
Fix #585190 â?? remove 0 from 03 % status
libbrasero-burn/brasero-tray.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libbrasero-burn/brasero-tray.c b/libbrasero-burn/brasero-tray.c
index 62ee4a7..38b2ece 100644
--- a/libbrasero-burn/brasero-tray.c
+++ b/libbrasero-burn/brasero-tray.c
@@ -256,14 +256,14 @@ brasero_tray_icon_set_tooltip (BraseroTrayIcon *tray,
gchar *remaining_string;
remaining_string = brasero_units_get_time_string ((double) remaining * 1000000000, TRUE, FALSE);
- text = g_strdup_printf (_("%s, %02i%% done, %s remaining"),
+ text = g_strdup_printf (_("%s, %d%% done, %s remaining"),
action_string,
tray->priv->percent,
remaining_string);
g_free (remaining_string);
}
else if (tray->priv->percent > 0)
- text = g_strdup_printf (_("%s, %02i%% done"),
+ text = g_strdup_printf (_("%s, %d%% done"),
action_string,
tray->priv->percent);
else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]