Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-03-05 15:54:47 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-03-05 15:54:47 +0400
commitbafc90cfd84aaa7b86565ac7606bfdfdce057e0d (patch)
treed66467cf0595ec6f0e78a5925c846ec86b0c8615 /src/mirall/accountsettings.cpp
parentb5349b66c61611a3acf626ba7acfc69a5cbfad75 (diff)
clarify which space is used, fix #1517
Diffstat (limited to 'src/mirall/accountsettings.cpp')
-rw-r--r--src/mirall/accountsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mirall/accountsettings.cpp b/src/mirall/accountsettings.cpp
index de9486654..bc7248d26 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);