"Judge" -> "Card Czar"
This commit is contained in:
parent
e88a5238b7
commit
259b323e1c
|
@ -160,15 +160,15 @@ cah.$.GamePlayerStatus.JUDGING = "judging";
|
||||||
cah.$.GamePlayerStatus_msg = {};
|
cah.$.GamePlayerStatus_msg = {};
|
||||||
cah.$.GamePlayerStatus_msg['playing'] = "Playing";
|
cah.$.GamePlayerStatus_msg['playing'] = "Playing";
|
||||||
cah.$.GamePlayerStatus_msg['idle'] = "";
|
cah.$.GamePlayerStatus_msg['idle'] = "";
|
||||||
cah.$.GamePlayerStatus_msg['judging'] = "Judging";
|
cah.$.GamePlayerStatus_msg['judging'] = "Selecting";
|
||||||
cah.$.GamePlayerStatus_msg['host'] = "Host";
|
cah.$.GamePlayerStatus_msg['host'] = "Host";
|
||||||
cah.$.GamePlayerStatus_msg['judge'] = "Judge";
|
cah.$.GamePlayerStatus_msg['judge'] = "Card Czar";
|
||||||
cah.$.GamePlayerStatus_msg_2 = {};
|
cah.$.GamePlayerStatus_msg_2 = {};
|
||||||
cah.$.GamePlayerStatus_msg_2['playing'] = "Select a card to play.";
|
cah.$.GamePlayerStatus_msg_2['playing'] = "Select a card to play.";
|
||||||
cah.$.GamePlayerStatus_msg_2['idle'] = "Waiting for players...";
|
cah.$.GamePlayerStatus_msg_2['idle'] = "Waiting for players...";
|
||||||
cah.$.GamePlayerStatus_msg_2['judging'] = "Select a winning card.";
|
cah.$.GamePlayerStatus_msg_2['judging'] = "Select a winning card.";
|
||||||
cah.$.GamePlayerStatus_msg_2['host'] = "Wait for players then click Start Game.";
|
cah.$.GamePlayerStatus_msg_2['host'] = "Wait for players then click Start Game.";
|
||||||
cah.$.GamePlayerStatus_msg_2['judge'] = "You are the judge this round.";
|
cah.$.GamePlayerStatus_msg_2['judge'] = "You are the Card Czar this round.";
|
||||||
|
|
||||||
cah.$.GameState = function() {
|
cah.$.GameState = function() {
|
||||||
// Dummy constructor to make Eclipse auto-complete.
|
// Dummy constructor to make Eclipse auto-complete.
|
||||||
|
|
|
@ -356,8 +356,8 @@ public class Constants {
|
||||||
public enum GamePlayerStatus implements DoubleLocalizable {
|
public enum GamePlayerStatus implements DoubleLocalizable {
|
||||||
HOST("host", "Host", "Wait for players then click Start Game."),
|
HOST("host", "Host", "Wait for players then click Start Game."),
|
||||||
IDLE("idle", "", "Waiting for players..."),
|
IDLE("idle", "", "Waiting for players..."),
|
||||||
JUDGE("judge", "Judge", "You are the judge this round."),
|
JUDGE("judge", "Card Czar", "You are the Card Czar this round."),
|
||||||
JUDGING("judging", "Judging", "Select a winning card."),
|
JUDGING("judging", "Selecting", "Select a winning card."),
|
||||||
PLAYING("playing", "Playing", "Select a card to play.");
|
PLAYING("playing", "Playing", "Select a card to play.");
|
||||||
|
|
||||||
private final String status;
|
private final String status;
|
||||||
|
|
Loading…
Reference in New Issue