Skip to content

Commit

Permalink
Change sendcoins dialogue Yes to Send
Browse files Browse the repository at this point in the history
  • Loading branch information
instagibbs committed Sep 25, 2019
1 parent cd73721 commit a649cc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt/sendcoinsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -927,11 +927,11 @@ void SendConfirmationDialog::updateYesButton()
if(secDelay > 0)
{
yesButton->setEnabled(false);
yesButton->setText(tr("Yes") + " (" + QString::number(secDelay) + ")");
yesButton->setText(tr("Send") + " (" + QString::number(secDelay) + ")");
}
else
{
yesButton->setEnabled(true);
yesButton->setText(tr("Yes"));
yesButton->setText(tr("Send"));
}
}

0 comments on commit a649cc6

Please sign in to comment.