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
|
lblYouAreGoing=Du startest
|
||||||
lblMulligan=Mulligan
|
lblMulligan=Mulligan
|
||||||
lblDoYouWantToKeepYourHand=Starthand behalten?
|
lblDoYouWantToKeepYourHand=Starthand behalten?
|
||||||
lblReturnForLondon=Lege %n Karten unter die Bibliothek
|
lblReturnForLondon=Lege %d Karten unter die Bibliothek
|
||||||
lblOk=OK
|
lblOk=OK
|
||||||
lblReset=Zurück
|
lblReset=Zurück
|
||||||
lblAuto=Auto
|
lblAuto=Auto
|
||||||
|
|||||||
@@ -317,7 +317,7 @@ lblIsGoingFirst=is going first
|
|||||||
lblYouAreGoing=you are going
|
lblYouAreGoing=you are going
|
||||||
lblMulligan=Mulligan
|
lblMulligan=Mulligan
|
||||||
lblDoYouWantToKeepYourHand=Do you want to keep your hand?
|
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
|
lblOk=Ok
|
||||||
lblReset=Reset
|
lblReset=Reset
|
||||||
lblAuto=Auto
|
lblAuto=Auto
|
||||||
|
|||||||
@@ -317,7 +317,7 @@ lblIsGoingFirst=va primero
|
|||||||
lblYouAreGoing=vas
|
lblYouAreGoing=vas
|
||||||
lblMulligan=Mulligan
|
lblMulligan=Mulligan
|
||||||
lblDoYouWantToKeepYourHand=¿Quieres quedarte tu mano?
|
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
|
lblOk=Ok
|
||||||
lblReset=Reset
|
lblReset=Reset
|
||||||
lblAuto=Auto
|
lblAuto=Auto
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ public class InputLondonMulligan extends InputSyncronizedBase {
|
|||||||
|
|
||||||
getController().getGui().updateButtons(getOwner(), localizer.getMessage("lblOk"), "", cardsLeft == 0, false, true);
|
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());
|
showMessage(sb.toString());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user