From bafc90cfd84aaa7b86565ac7606bfdfdce057e0d Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 5 Mar 2014 12:54:47 +0100 Subject: [PATCH] clarify which space is used, fix #1517 --- 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 de94866541..bc7248d265 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%) in use.").arg(usedStr, totalStr, percentStr)); + ui->quotaLabel->setText(tr("%1 of %2 (%3%) server space in use.").arg(usedStr, totalStr, percentStr)); } else { ui->quotaProgressBar->setVisible(false); ui->quotaInfoLabel->setVisible(false);