Skip to content

Commit e670edd

Browse files
committed
User-facing content fixups from transifex translator feedback
1 parent df08250 commit e670edd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/qt/intro.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ void Intro::setStatus(int status, const QString &message, quint64 bytesAvailable
298298

299299
void Intro::UpdateFreeSpaceLabel()
300300
{
301-
QString freeString = tr("%1 GB of free space available").arg(m_bytes_available / GB_BYTES);
301+
QString freeString = tr("%1 GB of space available").arg(m_bytes_available / GB_BYTES);
302302
if (m_bytes_available < m_required_space_gb * GB_BYTES) {
303303
freeString += " " + tr("(of %1 GB needed)").arg(m_required_space_gb);
304304
ui->freeSpace->setStyleSheet("QLabel { color: #800000 }");

src/wallet/spend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ static bool CreateTransactionInternal(
778778
}
779779
else if ((unsigned int)nChangePosInOut > txNew.vout.size())
780780
{
781-
error = _("Change index out of range");
781+
error = _("Transaction change output index out of range");
782782
return false;
783783
}
784784

0 commit comments

Comments
 (0)