Added language prompts 29 and 30

This commit is contained in:
Michiel Broek
2005-09-02 20:39:54 +00:00
parent e37086c63c
commit 4c2f8c1d18
11 changed files with 22 additions and 22 deletions

View File

@@ -176,7 +176,7 @@ void Chat(char *username, char *channel)
* Forbid the sysop to chat, the sysop MUST use mbmon.
*/
Syslog('+', "The Sysop attempted to chat");
pout(LIGHTRED, BLACK, (char *)"The Sysop cannot use the bbs to chat! Use mbmon to chat.");
pout(LIGHTRED, BLACK, (char *) Language(29));
Enter(1);
Pause();
return;
@@ -216,7 +216,7 @@ void Chat(char *username, char *channel)
if (strncmp(buf, "200:1,", 6) == 0) {
Syslog('!', "Chatsever is not available");
colour(LIGHTRED, BLACK);
mvprintw(4, 1, (char *)"Sorry, the chatserver is not available");
mvprintw(4, 1, (char *) Language(30));
Enter(2);
Pause();
chat_with_sysop = FALSE;