clarify which space is used, fix #1517

This commit is contained in:
Jan-Christoph Borchardt 2014-03-05 12:54:47 +01:00
parent b5349b66c6
commit bafc90cfd8

View File

@ -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);