diff options
author | Jon Atack <jon@atack.com> | 2022-02-17 12:39:04 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2022-02-17 12:59:30 +0100 |
commit | e670edd43441ecb6e5978d65348501c57d856030 (patch) | |
tree | a1cc5e02796c22f745c706ddf68f0f3b8f1aa6e7 /src/qt/intro.cpp | |
parent | df0825046acc7cb496c47666e36af18118beb030 (diff) |
User-facing content fixups from transifex translator feedback
Diffstat (limited to 'src/qt/intro.cpp')
-rw-r--r-- | src/qt/intro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index e9a4034e62..dcde7adec4 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -298,7 +298,7 @@ void Intro::setStatus(int status, const QString &message, quint64 bytesAvailable void Intro::UpdateFreeSpaceLabel() { - QString freeString = tr("%1 GB of free space available").arg(m_bytes_available / GB_BYTES); + QString freeString = tr("%1 GB of space available").arg(m_bytes_available / GB_BYTES); if (m_bytes_available < m_required_space_gb * GB_BYTES) { freeString += " " + tr("(of %1 GB needed)").arg(m_required_space_gb); ui->freeSpace->setStyleSheet("QLabel { color: #800000 }"); |