mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
Rename "stack until found" feature (#4871)
* Rename "stack until found" feature * lint
This commit is contained in:
parent
9943133d6d
commit
3e8adae3de
3 changed files with 7 additions and 6 deletions
|
|
@ -771,7 +771,7 @@ void Player::retranslateUi()
|
|||
aMoveTopCardToExile->setText(tr("Move top card to e&xile"));
|
||||
aMoveTopCardsToGraveyard->setText(tr("Move top cards to &graveyard..."));
|
||||
aMoveTopCardsToExile->setText(tr("Move top cards to &exile..."));
|
||||
aMoveTopCardsUntil->setText(tr("Take top cards &until..."));
|
||||
aMoveTopCardsUntil->setText(tr("Put top cards on stack &until..."));
|
||||
|
||||
aDrawBottomCard->setText(tr("&Draw bottom card"));
|
||||
aDrawBottomCards->setText(tr("D&raw bottom cards..."));
|
||||
|
|
@ -1313,8 +1313,8 @@ void Player::actMoveTopCardsUntil()
|
|||
QString expr = previousMovingCardsUntilExpr;
|
||||
for (;;) {
|
||||
bool ok;
|
||||
expr =
|
||||
QInputDialog::getText(game, "Take top cards until", "Select card (accepts search syntax)", {}, expr, &ok);
|
||||
expr = QInputDialog::getText(game, "Put top cards on stack until", "Card name (or search expressions)", {},
|
||||
expr, &ok);
|
||||
if (!ok) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue