> There is another problem with the translations. When hitting escape in
> the game, you get the dialog "Do you really want to quit (O/N)". In
> german the proper keys would be J/N and in englisch Y/N.
"Ja, Ich habe schön dieses Problem gesehen !" I noticed this problem, but
I forgot it ... I will change it. I propose to use a string with two
caracters :
char *yes_no = _("YN");
int c = getchar();
if (c == yes_no[0]) yes; else no;
But we only need one char ... It's just easier to understand for people
who want to translate the game ;-) Another string :
char *yes_no = _("Y/N");
Bye, Haypo
--
Victor STINNER, étudiant en génie informatique à l'UTBM (GI02)
http://www.haypocalc.com/perso/