mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
User-facing content fixups from transifex translator feedback
This commit is contained in:
parent
df0825046a
commit
e670edd434
2 changed files with 2 additions and 2 deletions
|
@ -298,7 +298,7 @@ void Intro::setStatus(int status, const QString &message, quint64 bytesAvailable
|
||||||
|
|
||||||
void Intro::UpdateFreeSpaceLabel()
|
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) {
|
if (m_bytes_available < m_required_space_gb * GB_BYTES) {
|
||||||
freeString += " " + tr("(of %1 GB needed)").arg(m_required_space_gb);
|
freeString += " " + tr("(of %1 GB needed)").arg(m_required_space_gb);
|
||||||
ui->freeSpace->setStyleSheet("QLabel { color: #800000 }");
|
ui->freeSpace->setStyleSheet("QLabel { color: #800000 }");
|
||||||
|
|
|
@ -778,7 +778,7 @@ static bool CreateTransactionInternal(
|
||||||
}
|
}
|
||||||
else if ((unsigned int)nChangePosInOut > txNew.vout.size())
|
else if ((unsigned int)nChangePosInOut > txNew.vout.size())
|
||||||
{
|
{
|
||||||
error = _("Change index out of range");
|
error = _("Transaction change output index out of range");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue