diff --git a/src/java/com/threerings/crowd/chat/data/ChatCodes.java b/src/java/com/threerings/crowd/chat/data/ChatCodes.java index 8f3ceaaf0..47740157a 100644 --- a/src/java/com/threerings/crowd/chat/data/ChatCodes.java +++ b/src/java/com/threerings/crowd/chat/data/ChatCodes.java @@ -1,5 +1,5 @@ // -// $Id: ChatCodes.java,v 1.13 2002/10/31 23:27:16 mdb Exp $ +// $Id: ChatCodes.java,v 1.14 2003/01/22 23:14:11 shaper Exp $ package com.threerings.crowd.chat; @@ -42,6 +42,10 @@ public interface ChatCodes extends InvocationCodes * actually a server-wide broadcast. */ public static final byte BROADCAST_MODE = 3; + /** String translations for the various chat modes. */ + public static final String[] XLATE_MODES = { + "default", "think", "emote", "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";