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

@ -27,8 +27,8 @@
26 newuser.c YN|Check for new mail at login [Y/n]:
27 newuser.c YN|Check for new files at login [Y/n]:
28 page.c |Enter a short reason for chat
29 .c |
30 .c |
29 chat.c |The Sysop cannot use the bbs to chat! Use mbmon to chat
30 chat.c |Sorry, the chatserver is not available
31 .c |
32 .c |
33 .c |

View File

@ -27,8 +27,8 @@ YN| Is this correct [y/N]:
YN|Check for new mail at login [Y/n]:
YN|Check for new files at login [Y/n]:
|Enter a short reason for chat
|
|
|The Sysop cannot use the bbs to chat! Use mbmon to chat
|Sorry, the chatserver is not available
|
|
|<7C>ƒ„…†‡ˆ‰ŠŒ<E280B9>Ž<EFBFBD><C5BD>“”•˜™šœ<E280BA>žŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄ

View File

@ -27,8 +27,8 @@ JN| Is dit juist [j/N]:
JN|Kijk voor nieuwe post tijdens login [J/n]:
JN|Kijk voor nieuwe bestanden tijdens login [J/n]:
|Geef een korte reden om te kletsen
|
|
|De sysop kan niet kletsen via het bbs! Gebruik mbmon
|Sorry, de chatserver is niet beschikbaar
|
|
|

View File

@ -27,8 +27,8 @@ YN| Is this correct [y/N]:
YN|Check for new mail at login [Y/n]:
YN|Check for new files at login [Y/n]:
|Enter a short reason for chat
|
|
|The Sysop cannot use the bbs to chat! Use mbmon to chat
|Sorry, the chatserver is not available
|
|
|

View File

@ -27,8 +27,8 @@ YN| Is this correct [y/N]:
YN|Check for new mail at login [Y/n]:
YN|Check for new files at login [Y/n]:
|Enter a short reason for chat
|
|
|The Sysop cannot use the bbs to chat! Use mbmon to chat
|Sorry, the chatserver is not available
|
|
|

View File

@ -27,8 +27,8 @@ SN|
YN|Check for new mail at login [Y/n]:
YN|Check for new files at login [Y/n]:
|Enter a short reason for chat
|
|
|The Sysop cannot use the bbs to chat! Use mbmon to chat
|Sorry, the chatserver is not available
|
|
|

View File

@ -27,8 +27,8 @@ YN| Is this correct [y/N]:
YN|Check for new mail at login [Y/n]:
YN|Check for new files at login [Y/n]:
|Enter a short reason for chat
|
|
|The Sysop cannot use the bbs to chat! Use mbmon to chat
|Sorry, the chatserver is not available
|
|
|

View File

@ -27,8 +27,8 @@ JN| Ist dies richtig richtig? [<j>a/<N>ein]:
YN|Check for new mail at login [Y/n]:
YN|Check for new files at login [Y/n]:
|Enter a short reason for chat
|
|
|The Sysop cannot use the bbs to chat! Use mbmon to chat
|Sorry, the chatserver is not available
|
|
|

View File

@ -27,8 +27,8 @@ YN| Is this correct [y/N]:
YN|Check for new mail at login [Y/n]:
YN|Check for new files at login [Y/n]:
|Enter a short reason for chat
|
|
|The Sysop cannot use the bbs to chat! Use mbmon to chat
|Sorry, the chatserver is not available
|
|
|

View File

@ -27,8 +27,8 @@ SN| Es correcto [s/N]:
YN|Check for new mail at login [Y/n]:
YN|Check for new files at login [Y/n]:
|Enter a short reason for chat
|
|
|The Sysop cannot use the bbs to chat! Use mbmon to chat
|Sorry, the chatserver is not available
|
|
|

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;