[Pkg-owncloud-commits] [owncloud-client] 94/333: move percent indicator of space usage to correct location

Sandro Knauß hefee-guest at moszumanska.debian.org
Thu Apr 17 23:16:39 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 5ce4763868c4e098fdc0114c81077df5c0cf8f76
Author: Jan-Christoph Borchardt <hey at jancborchardt.net>
Date:   Wed Mar 5 12:55:32 2014 +0100

    move percent indicator of space usage to correct location
---
 src/mirall/accountsettings.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mirall/accountsettings.cpp b/src/mirall/accountsettings.cpp
index bc7248d..22a854d 100644
--- a/src/mirall/accountsettings.cpp
+++ b/src/mirall/accountsettings.cpp
@@ -726,7 +726,7 @@ void AccountSettings::slotUpdateQuota(qint64 total, qint64 used)
         QString totalStr = Utility::octetsToString(total);
         double percent = used/(double)total*100;
         QString percentStr = Utility::compactFormatDouble(percent, 1);
-        ui->quotaLabel->setText(tr("%1 of %2 (%3%) server space in use.").arg(usedStr, totalStr, percentStr));
+        ui->quotaLabel->setText(tr("%1 (%3%) of %2 server space in use.").arg(usedStr, totalStr, percentStr));
     } else {
         ui->quotaProgressBar->setVisible(false);
         ui->quotaInfoLabel->setVisible(false);

-- 
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