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