"Judge" -> "Card Czar"

This commit is contained in:
Andy Janata 2012-01-30 00:35:11 -08:00
parent e88a5238b7
commit 259b323e1c
2 changed files with 5 additions and 5 deletions

View File

@ -160,15 +160,15 @@ cah.$.GamePlayerStatus.JUDGING = "judging";
cah.$.GamePlayerStatus_msg = {};
cah.$.GamePlayerStatus_msg['playing'] = "Playing";
cah.$.GamePlayerStatus_msg['idle'] = "";
cah.$.GamePlayerStatus_msg['judging'] = "Judging";
cah.$.GamePlayerStatus_msg['judging'] = "Selecting";
cah.$.GamePlayerStatus_msg['host'] = "Host";
cah.$.GamePlayerStatus_msg['judge'] = "Judge";
cah.$.GamePlayerStatus_msg['judge'] = "Card Czar";
cah.$.GamePlayerStatus_msg_2 = {};
cah.$.GamePlayerStatus_msg_2['playing'] = "Select a card to play.";
cah.$.GamePlayerStatus_msg_2['idle'] = "Waiting for players...";
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['judge'] = "You are the judge this round.";
cah.$.GamePlayerStatus_msg_2['judge'] = "You are the Card Czar this round.";
cah.$.GameState = function() {
// Dummy constructor to make Eclipse auto-complete.

View File

@ -356,8 +356,8 @@ public class Constants {
public enum GamePlayerStatus implements DoubleLocalizable {
HOST("host", "Host", "Wait for players then click Start Game."),
IDLE("idle", "", "Waiting for players..."),
JUDGE("judge", "Judge", "You are the judge this round."),
JUDGING("judging", "Judging", "Select a winning card."),
JUDGE("judge", "Card Czar", "You are the Card Czar this round."),
JUDGING("judging", "Selecting", "Select a winning card."),
PLAYING("playing", "Playing", "Select a card to play.");
private final String status;