summaryrefslogtreecommitdiff
path: root/msgs.h
diff options
context:
space:
mode:
authoradmin (centauri.fritz.box) <puppet@mx.buetow.org>2014-06-30 23:29:34 +0200
committeradmin (centauri.fritz.box) <puppet@mx.buetow.org>2014-06-30 23:29:34 +0200
commit813ee1984130c44f737f27426cc8414d19cf3bd9 (patch)
tree737daaeefa0ee1f2d66821821de489b70522db37 /msgs.h
parent332d7b2107833018b3ef67b64ffe121bff1ef4fb (diff)
parent7ead5b7a9ea99a3e0f1459187b3262f7054f0126 (diff)
Merge remote-tracking branch 'remotes/github/0.5' into 0.50.5
Diffstat (limited to 'msgs.h')
-rw-r--r--msgs.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/msgs.h b/msgs.h
new file mode 100644
index 0000000..8c2ca13
--- /dev/null
+++ b/msgs.h
@@ -0,0 +1,36 @@
+#ifndef MSGS_H
+#define MSGS_H
+
+
+// several error messages which will apear by the clients.
+#define E_ALPNUM "The nick you have specified is not alphanumeric, please change that.<br><br>"
+#define E_NONICK "You need to specify a nick name.<br><br>"
+#define E_NOTONL "An error occured. Your nick is not online.<br><br>"
+#define E_ONLINE "The nick you have specified is already online. Try another nick.<br><br>"
+
+// all the custom messages for verbosity outputs. this messages may not
+// be used for html-template value substituation except the CONTACT and
+// DESCRIP variables. the verbosity output will appear in the standard
+// output of the server.
+// alphabetical ordered.
+#define CFILEOK "Parsing config file "
+#define CFILENO "Failed opening config file "
+#define CONNECT "Receiving connection "
+#define CONTACT "Contact: www.yChat.org, Mail@yChat.org "
+#define DESCRIP "yChat++ Copyright (C) 2003 Paul C. Buetow, Volker Richer "
+#define DOWNMSG "Shutting down "
+#define LOGINPR "Login procedure succeeded for nick "
+#define MODULEC "Caching module "
+#define NEWROOM "Adding room "
+#define REQUEST "Request string "
+#define SEPERAT "----------------------------------------- "
+#define SOCKCRT "Creating server socket "
+#define SOCKERR "Could not create socket. Trying next port "
+#define SOCKRDY "Server socket is ready. See port above "
+#define STARTMS "Starting up "
+#define TECACHE "Caching template "
+#define THREADS "Starting thread job "
+#define THREADE "Exiting thread job "
+#define VERSION "Version: yChat++ Basic 0.5.1"
+
+#endif