mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
Changed "removed" to "exiled" for consistency
This commit is contained in:
@@ -18,9 +18,9 @@ Display/dev/title=Developer
|
|||||||
|
|
||||||
Display/human/title=Spieler
|
Display/human/title=Spieler
|
||||||
Display/human/hand/title=Hand:
|
Display/human/hand/title=Hand:
|
||||||
Display/human/removed/menu=Spieler - Entfernte Karten ansehen
|
Display/human/exiled/menu=Spieler - Entfernte Karten ansehen
|
||||||
Display/human/removed/button=Entfernt:
|
Display/human/exiled/button=Entfernt:
|
||||||
Display/human/removed/title=Deine entfernten Karten
|
Display/human/exiled/title=Deine entfernten Karten
|
||||||
Display/human/library/title=Bibliothek:
|
Display/human/library/title=Bibliothek:
|
||||||
Display/human/graveyard/menu=Spieler - Friedhof ansehen
|
Display/human/graveyard/menu=Spieler - Friedhof ansehen
|
||||||
Display/human/graveyard/button=Friedhof:
|
Display/human/graveyard/button=Friedhof:
|
||||||
@@ -33,9 +33,9 @@ Display/combat/title=Kampf
|
|||||||
|
|
||||||
Display/computer/title=Computer
|
Display/computer/title=Computer
|
||||||
Display/computer/hand/title=Hand:
|
Display/computer/hand/title=Hand:
|
||||||
Display/computer/removed/menu=Computer - Entfernte Karten ansehen
|
Display/computer/exiled/menu=Computer - Entfernte Karten ansehen
|
||||||
Display/computer/removed/button=Entfernt:
|
Display/computer/exiled/button=Entfernt:
|
||||||
Display/computer/removed/title=Computer's entfernte Karten
|
Display/computer/exiled/title=Computer's entfernte Karten
|
||||||
Display/computer/library/title=Bibliothek:
|
Display/computer/library/title=Bibliothek:
|
||||||
Display/computer/graveyard/menu=Computer - Friedhof ansehen
|
Display/computer/graveyard/menu=Computer - Friedhof ansehen
|
||||||
Display/computer/graveyard/button=Friedhof:
|
Display/computer/graveyard/button=Friedhof:
|
||||||
|
|||||||
@@ -20,9 +20,9 @@ Display/human/title=Player
|
|||||||
Display/human/hand/menu=Player - View Hand
|
Display/human/hand/menu=Player - View Hand
|
||||||
Display/human/hand/button=Hand:
|
Display/human/hand/button=Hand:
|
||||||
Display/human/hand/title=Player's Hand
|
Display/human/hand/title=Player's Hand
|
||||||
Display/human/removed/menu=Player - View Exile
|
Display/human/exiled/menu=Player - View Exile
|
||||||
Display/human/removed/button=Exile:
|
Display/human/exiled/button=Exile:
|
||||||
Display/human/removed/title=Player's Exile
|
Display/human/exiled/title=Player's Exile
|
||||||
Display/human/library/menu=Player - View Library
|
Display/human/library/menu=Player - View Library
|
||||||
Display/human/library/button=Library:
|
Display/human/library/button=Library:
|
||||||
Display/human/library/title=Player's Library
|
Display/human/library/title=Player's Library
|
||||||
@@ -41,9 +41,9 @@ Display/computer/title=Computer
|
|||||||
Display/computer/hand/menu=Computer - View Hand
|
Display/computer/hand/menu=Computer - View Hand
|
||||||
Display/computer/hand/button=Hand:
|
Display/computer/hand/button=Hand:
|
||||||
Display/computer/hand/title=Computer's Hand
|
Display/computer/hand/title=Computer's Hand
|
||||||
Display/computer/removed/menu=Computer - View Exile
|
Display/computer/exiled/menu=Computer - View Exile
|
||||||
Display/computer/removed/button=Exile:
|
Display/computer/exiled/button=Exile:
|
||||||
Display/computer/removed/title=Computer's Exile
|
Display/computer/exiled/title=Computer's Exile
|
||||||
Display/computer/library/menu=Computer - View Library
|
Display/computer/library/menu=Computer - View Library
|
||||||
Display/computer/library/button=Library:
|
Display/computer/library/button=Library:
|
||||||
Display/computer/library/title=Computer's Library
|
Display/computer/library/title=Computer's Library
|
||||||
|
|||||||
@@ -398,10 +398,10 @@ public class ControlField {
|
|||||||
public void mousePressed(final MouseEvent e) {
|
public void mousePressed(final MouseEvent e) {
|
||||||
if (ControlField.this.player.isComputer()) {
|
if (ControlField.this.player.isComputer()) {
|
||||||
new ZoneAction(ControlField.this.player.getZone(Zone.Exile),
|
new ZoneAction(ControlField.this.player.getZone(Zone.Exile),
|
||||||
NewConstants.Lang.GuiDisplay.COMPUTER_REMOVED).actionPerformed(null);
|
NewConstants.Lang.GuiDisplay.COMPUTER_EXILED).actionPerformed(null);
|
||||||
} else {
|
} else {
|
||||||
new ZoneAction(ControlField.this.player.getZone(Zone.Exile),
|
new ZoneAction(ControlField.this.player.getZone(Zone.Exile),
|
||||||
NewConstants.Lang.GuiDisplay.HUMAN_REMOVED).actionPerformed(null);
|
NewConstants.Lang.GuiDisplay.HUMAN_EXILED).actionPerformed(null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -420,8 +420,8 @@ public final class NewConstants {
|
|||||||
public static final String MENU = "%s/Display/human/graveyard/menu";
|
public static final String MENU = "%s/Display/human/graveyard/menu";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The HUMAN_REMOVED. */
|
/** The HUMAN_EXILED. */
|
||||||
public static final String HUMAN_REMOVED = "%s/Display/human/removed";
|
public static final String HUMAN_EXILED = "%s/Display/human/exiled";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Interface HumanRemoved.
|
* The Interface HumanRemoved.
|
||||||
@@ -429,13 +429,13 @@ public final class NewConstants {
|
|||||||
public static class HumanRemoved {
|
public static class HumanRemoved {
|
||||||
|
|
||||||
/** The TITLE. */
|
/** The TITLE. */
|
||||||
public static final String TITLE = "%s/Display/human/removed/title";
|
public static final String TITLE = "%s/Display/human/exiled/title";
|
||||||
|
|
||||||
/** The BUTTON. */
|
/** The BUTTON. */
|
||||||
public static final String BUTTON = "%s/Display/human/removed/button";
|
public static final String BUTTON = "%s/Display/human/exiled/button";
|
||||||
|
|
||||||
/** The MENU. */
|
/** The MENU. */
|
||||||
public static final String MENU = "%s/Display/human/removed/menu";
|
public static final String MENU = "%s/Display/human/exiled/menu";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The COMBAT. */
|
/** The COMBAT. */
|
||||||
@@ -534,8 +534,8 @@ public final class NewConstants {
|
|||||||
public static final String MENU = "%s/Display/computer/graveyard/menu";
|
public static final String MENU = "%s/Display/computer/graveyard/menu";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The COMPUTER_REMOVED. */
|
/** The COMPUTER_EXILED. */
|
||||||
public static final String COMPUTER_REMOVED = "%s/Display/computer/removed";
|
public static final String COMPUTER_EXILED = "%s/Display/computer/exiled";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Interface CopmuterRemoved.
|
* The Interface CopmuterRemoved.
|
||||||
@@ -543,13 +543,13 @@ public final class NewConstants {
|
|||||||
public static class ComputerRemoved {
|
public static class ComputerRemoved {
|
||||||
|
|
||||||
/** The TITLE. */
|
/** The TITLE. */
|
||||||
public static final String TITLE = "%s/Display/computer/removed/title";
|
public static final String TITLE = "%s/Display/computer/exiled/title";
|
||||||
|
|
||||||
/** The BUTTON. */
|
/** The BUTTON. */
|
||||||
public static final String BUTTON = "%s/Display/computer/removed/button";
|
public static final String BUTTON = "%s/Display/computer/exiled/button";
|
||||||
|
|
||||||
/** The MENU. */
|
/** The MENU. */
|
||||||
public static final String MENU = "%s/Display/computer/removed/menu";
|
public static final String MENU = "%s/Display/computer/exiled/menu";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The CONCEDE. */
|
/** The CONCEDE. */
|
||||||
|
|||||||
Reference in New Issue
Block a user