[Xfce4-commits] <postler:master> Render status as Receiving i of n in Folder
Christian Dywan
noreply at xfce.org
Tue Jul 5 18:14:06 CEST 2011
Updating branch refs/heads/master
to 26f7b5e44a35f5ca6a5920e1de8c34fe8de5cf12 (commit)
from 13020f734f9ca4721c6fac84c50520004667fcc2 (commit)
commit 26f7b5e44a35f5ca6a5920e1de8c34fe8de5cf12
Author: Christian Dywan <christian at twotoasts.de>
Date: Tue Jul 5 01:50:19 2011 +0200
Render status as Receiving i of n in Folder
Fixes: https://bugs.launchpad.net/postler/+bug/805250
postler/postler-service.vala | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/postler/postler-service.vala b/postler/postler-service.vala
index 71dbd8d..8b8620a 100644
--- a/postler/postler-service.vala
+++ b/postler/postler-service.vala
@@ -376,9 +376,9 @@ namespace Postler {
helper.folder = _("Inbox");
else
helper.folder = Postler.Folders.decode_foldername (helper.folder);
- string state = _("Receiving %d of %d").printf ((int)count, (int)total);
- progress (helper.display_name, state + " " + helper.folder,
- total > count ? count / total : 0);
+ string state = _("Receiving %d of %d in %s").printf (
+ (int)count, (int)total, helper.folder);
+ progress (helper.display_name, state, total > count ? count / total : 0);
}
else if (!(msg.contains ("Synchronizing")) ) {
if (msg.contains ("Selecting master ")) {
More information about the Xfce4-commits
mailing list