From 14081c752b9b8738f11f3c3ea54b0908cba1309b Mon Sep 17 00:00:00 2001 From: Walter Korman Date: Wed, 22 Jan 2003 23:14:11 +0000 Subject: [PATCH] Added string translations for the various chat modes. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2211 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/crowd/chat/data/ChatCodes.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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";