KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > chateverywhere > resources > Messages


1 /* en_US property file for Chat Everywhere
2  * Copyright (c) 2003, A. de Bernis <alexis@bernis.org>
3  */

4
5
6 package org.chateverywhere.resources;
7
8 import java.util.ListResourceBundle JavaDoc;
9
10 public class Messages extends ListResourceBundle JavaDoc {
11
12     public Object JavaDoc[][] getContents() {
13         return contents;
14     }
15  
16     static final Object JavaDoc[][] contents = {
17         {"MSG_USERS", "Users"},
18         {"MSG_TYPE_HERE", "<--Type here"},
19         {"MSG_CLEAR", "Clear"},
20         {"MSG_FONT", "Font"},
21         {"MSG_ACTION", "Action"},
22         {"MSG_WELCOME", "Welcome to Chat Everywhere"},
23         {"MSG_LOADING", "Loading..."},
24         {"MSG_GO", "Go"},
25         {"MSG_NICK", "Nick"},
26         {"MSG_SERVER_UP", "The server is up"},
27         {"MSG_CONNECTING", "Connecting..."},
28         {"MSG_NO_PRIV_NS", "Failed to get some more privileges (Netscape)."},
29         {"MSG_NO_PRIV_IE", "Failed to get some more privileges (Internet Explorer)."},
30         {"MSG_NOT_FOUND", "Connection failed : server not found (check ServerHost)"},
31         {"MSG_NOT_SIGNED", "Connection failed : applet needs to be signed to connect to this host"},
32         {"MSG_CONN", "Connecting to server"},
33         {"MSG_SRV_DOWN", "Connection failed : server must be down."},
34         {"MSG_NEW_USER", "joined the chat"},
35         {"MSG_USER_QUIT", "has quit"},
36         {"MSG_POSS_NICKS", "Possible nicks"},
37         {"MSG_CHAT", "Chat with"},
38         {"MSG_ERROR", "ERROR"},
39         {"MSG_AUTH_FAILED", "Authentication failed: choose a non-protected nick"},
40         {"MSG_NICK_PROTECTED", "Nick protected"},
41         {"MSG_ASK_PASSWORD", "Enter your password:"},
42         {"MSG_OK", "OK"},
43         {"MSG_CANCEL", "Cancel"},
44         {"MSG_NEW_CONNECTION", "New user connected"},
45         {"MSG_AUTO_SCROLLING", "Auto-scrolling"},
46         {"MSG_NOTIFY_CONNECT", "Notify new connection"},
47         {"MSG_BIP_ON_TEXT", "Bip on new text"},
48         {"MSG_OPTIONS", "Options"},
49         {"MSG_BIP_AS_SOUND_FILE","Play bip as a sound file"},
50         {"MSG_SMILEYS_AS_PICS", "Display smileys as pics"},
51         {"MSG_DISCONNECTED", "disconnected"},
52     };
53 }
54
Popular Tags