[Pkg-owncloud-commits] [owncloud-client] 10/332: Remove extra space between the parenthesis when displaying estimation in the system tray
Sandro Knauß
hefee-guest at moszumanska.debian.org
Thu Aug 14 21:06:32 UTC 2014
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository owncloud-client.
commit 3777074e842e51f990eaa508eaf16fe33d6978a1
Author: Eran <etherpulse at gmail.com>
Date: Thu May 15 17:46:25 2014 +0300
Remove extra space between the parenthesis when displaying estimation in the system tray
---
src/mirall/owncloudgui.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/mirall/owncloudgui.cpp b/src/mirall/owncloudgui.cpp
index 9429b5b..7004de0 100644
--- a/src/mirall/owncloudgui.cpp
+++ b/src/mirall/owncloudgui.cpp
@@ -406,11 +406,11 @@ void ownCloudGui::slotUpdateProgress(const QString &folder, const Progress::Info
QString totalSizeStr = Utility::octetsToString( progress._totalSize );
if(progress._totalSize == 0 ) {
quint64 currentFile = progress._completedFileCount + progress._currentItems.count();
- _actionStatus->setText( tr("Syncing %1 of %2 ( %3 left )")
+ _actionStatus->setText( tr("Syncing %1 of %2 (%3 left)")
.arg( currentFile ).arg( progress._totalFileCount )
.arg( Utility::timeToDescriptiveString(progress.totalEstimate().getEtaEstimate()) ) );
} else {
- _actionStatus->setText( tr("Syncing %1 ( %2 left )")
+ _actionStatus->setText( tr("Syncing %1 (%2 left)")
.arg( totalSizeStr )
.arg( Utility::timeToDescriptiveString(progress.totalEstimate().getEtaEstimate()) ) );
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list