Use English strings for the system and confirm menus, to be consistent with the

command menu. There are still some other hard-coded French messages in the code,
though.

svn-id: r21634
This commit is contained in:
Torbjörn Andersson 2006-04-05 21:20:04 +00:00
parent 738aecd57e
commit 95eb460417

View File

@ -297,17 +297,31 @@ int16 getObjectUnderCursor(uint16 x, uint16 y) {
}
const commandeType systemMenu[] = {
"Pause",
"Restart Game",
"Quit",
"Backup Drive is A:",
"Restore game",
"Save game"
// french
/*
"Pause",
"Nouvelle partie",
"Quitter",
"Lecteur de Svg. A:",
"Charger une partie",
"Sauver la partie"
*/
};
const commandeType confirmMenu[] = {
"Ok, go ahead ...",
"Absolutely Not!"
// french
/*
"Ok , Vas-y ...",
"Surtout Pas !"
*/
};
commandeType currentSaveName[10];