mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Show the number of cards you need to put back when London mulliganning
This commit is contained in:
@@ -317,7 +317,7 @@ lblIsGoingFirst=beginnt.
|
||||
lblYouAreGoing=Du startest
|
||||
lblMulligan=Mulligan
|
||||
lblDoYouWantToKeepYourHand=Starthand behalten?
|
||||
lblReturnForLondon=Lege %n Karten unter die Bibliothek
|
||||
lblReturnForLondon=Lege %d Karten unter die Bibliothek
|
||||
lblOk=OK
|
||||
lblReset=Zurück
|
||||
lblAuto=Auto
|
||||
|
||||
@@ -317,7 +317,7 @@ lblIsGoingFirst=is going first
|
||||
lblYouAreGoing=you are going
|
||||
lblMulligan=Mulligan
|
||||
lblDoYouWantToKeepYourHand=Do you want to keep your hand?
|
||||
lblReturnForLondon=Return %n card(s) to bottom of library
|
||||
lblReturnForLondon=Return %d card(s) to the bottom of your library
|
||||
lblOk=Ok
|
||||
lblReset=Reset
|
||||
lblAuto=Auto
|
||||
|
||||
@@ -317,7 +317,7 @@ lblIsGoingFirst=va primero
|
||||
lblYouAreGoing=vas
|
||||
lblMulligan=Mulligan
|
||||
lblDoYouWantToKeepYourHand=¿Quieres quedarte tu mano?
|
||||
lblReturnForLondon=Return %n card(s) to bottom of library
|
||||
lblReturnForLondon=Return %d card(s) to the bottom of your library
|
||||
lblOk=Ok
|
||||
lblReset=Reset
|
||||
lblAuto=Auto
|
||||
|
||||
@@ -60,7 +60,7 @@ public class InputLondonMulligan extends InputSyncronizedBase {
|
||||
|
||||
getController().getGui().updateButtons(getOwner(), localizer.getMessage("lblOk"), "", cardsLeft == 0, false, true);
|
||||
|
||||
sb.append(String.format(localizer.getMessage("lblReturnForLondon"), selected.size(), toReturn));
|
||||
sb.append(String.format(localizer.getMessage("lblReturnForLondon"), cardsLeft));
|
||||
|
||||
showMessage(sb.toString());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user