mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
translate quest starting pool type
This commit is contained in:
@@ -74,7 +74,7 @@ public enum VSubmenuQuestData implements IVSubmenu<CSubmenuQuestData> {
|
||||
private final FLabel lblPreconDeck = new FLabel.Builder().text(localizer.getMessage("lblStarterEventdeck") +":").build();
|
||||
private final FComboBoxWrapper<String> cbxPreconDeck = new FComboBoxWrapper<>();
|
||||
|
||||
private final FLabel lblFormat = new FLabel.Builder().text(localizer.getMessage("lblSanctionedformat") + "").build();
|
||||
private final FLabel lblFormat = new FLabel.Builder().text(localizer.getMessage("lblSanctionedformat") + ":").build();
|
||||
private final FComboBoxWrapper<GameFormat> cbxFormat = new FComboBoxWrapper<>();
|
||||
|
||||
private final FLabel lblCustomDeck = new FLabel.Builder().text(localizer.getMessage("lblCustomdeck")).build();
|
||||
@@ -97,7 +97,7 @@ public enum VSubmenuQuestData implements IVSubmenu<CSubmenuQuestData> {
|
||||
private final FLabel lblPrizedCards = new FLabel.Builder().text(localizer.getMessage("lblPrizedCards")).build();
|
||||
private final FComboBoxWrapper<Object> cbxPrizedCards = new FComboBoxWrapper<>();
|
||||
|
||||
private final FLabel lblPrizeFormat = new FLabel.Builder().text(localizer.getMessage("lblSanctionedformat")).build();
|
||||
private final FLabel lblPrizeFormat = new FLabel.Builder().text(localizer.getMessage("lblSanctionedformat") + ":").build();
|
||||
private final FComboBoxWrapper<GameFormat> cbxPrizeFormat = new FComboBoxWrapper<>();
|
||||
|
||||
private final FLabel lblPrizeUnrestricted = new FLabel.Builder().text(localizer.getMessage("lblAllCardsAvailableWin")).build();
|
||||
|
||||
@@ -1,19 +1,21 @@
|
||||
package forge.quest;
|
||||
|
||||
import forge.util.Localizer;
|
||||
|
||||
public enum StartingPoolType {
|
||||
Complete("Unrestricted"),
|
||||
Sanctioned("Sanctioned format"),
|
||||
Casual("Casual/Historic format"),
|
||||
CustomFormat("Custom format"),
|
||||
Precon("Event or starter deck"),
|
||||
SealedDeck("My sealed deck"),
|
||||
DraftDeck("My draft deck"),
|
||||
Cube("Predefined cube");
|
||||
Complete("lblUnrestricted"),
|
||||
Sanctioned("lblSanctionedFormat"),
|
||||
Casual("lblCasualOrHistoricFormat"),
|
||||
CustomFormat("lblCustomFormat"),
|
||||
Precon("lblEventOrStartDeck"),
|
||||
SealedDeck("lblMySealedDeck"),
|
||||
DraftDeck("lblMyDraftDeck"),
|
||||
Cube("lblPredefinedCube");
|
||||
|
||||
private final String caption;
|
||||
|
||||
StartingPoolType(String caption0) {
|
||||
caption = caption0;
|
||||
caption = Localizer.getInstance().getMessage(caption0);
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
||||
Reference in New Issue
Block a user