better wording (#2674)

This commit is contained in:
tooomm 2017-04-30 04:15:43 +02:00 committed by Zach H
parent fdc82708c6
commit cbd9d2c4fc

View file

@ -726,7 +726,7 @@ void Player::retranslateUi()
} }
aMoveToTopLibrary->setText(tr("&Top of library")); aMoveToTopLibrary->setText(tr("&Top of library"));
aMoveToXfromTopOfLibrary->setText(tr("X cards from the top...")); aMoveToXfromTopOfLibrary->setText(tr("X cards from the top of library..."));
aMoveToBottomLibrary->setText(tr("&Bottom of library")); aMoveToBottomLibrary->setText(tr("&Bottom of library"));
aMoveToHand->setText(tr("&Hand")); aMoveToHand->setText(tr("&Hand"));
aMoveToGraveyard->setText(tr("&Graveyard")); aMoveToGraveyard->setText(tr("&Graveyard"));
@ -1979,7 +1979,7 @@ bool Player::clearCardsToDelete()
void Player::actMoveCardXCardsFromTop() void Player::actMoveCardXCardsFromTop()
{ {
bool ok; bool ok;
int number = QInputDialog::getInt(0, tr("Place card X cards from top library"), tr("How many cards from the top of the deck should this card be placed:"), defaultNumberTopCardsToPlaceBelow, 1, 2000000000, 1, &ok); int number = QInputDialog::getInt(0, tr("Place card X cards from top of library"), tr("How many cards from the top of the deck should this card be placed:"), defaultNumberTopCardsToPlaceBelow, 1, 2000000000, 1, &ok);
number--; number--;
if (!ok) if (!ok)
@ -2636,4 +2636,4 @@ void Player::setLastToken(CardInfo *cardInfo)
lastTokenTableRow = table->clampValidTableRow(2 - cardInfo->getTableRow()); lastTokenTableRow = table->clampValidTableRow(2 - cardInfo->getTableRow());
lastTokenDestroy = true; lastTokenDestroy = true;
aCreateAnotherToken->setEnabled(true); aCreateAnotherToken->setEnabled(true);
} }