diff --git a/src/java/com/threerings/crowd/chat/data/ChatCodes.java b/src/java/com/threerings/crowd/chat/data/ChatCodes.java index f09b28d1d..b2b534eda 100644 --- a/src/java/com/threerings/crowd/chat/data/ChatCodes.java +++ b/src/java/com/threerings/crowd/chat/data/ChatCodes.java @@ -84,6 +84,11 @@ public interface ChatCodes extends InvocationCodes * actually a server-wide broadcast. */ public static final byte BROADCAST_MODE = 4; + /** String translations for the various chat modes. */ + public static final String[] XLATE_MODES = { + "default", "think", "emote", "shout", "broadcast" + }; + /** An error code delivered when the user targeted for a tell * notification is not online. */ public static final String USER_NOT_ONLINE = "m.user_not_online";