diff options
| author | Michal Zima <xhire@mujmalysvet.cz> | 2010-02-08 22:59:42 +0100 |
|---|---|---|
| committer | Michal Zima <xhire@mujmalysvet.cz> | 2010-02-08 22:59:42 +0100 |
| commit | 446ee442f34bb9f8e6f52d29e3985c9025fbffd7 (patch) | |
| tree | fc0c39ba0b9fd5a05d8d86ce4ffe3331e6006887 /src/screen/world.c | |
| parent | 6d80682e084f0f51a9441f7f94ac955d7700d12d (diff) | |
Found one more string to be translated
More code style corrections
Diffstat (limited to 'src/screen/world.c')
| -rw-r--r-- | src/screen/world.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screen/world.c b/src/screen/world.c index c2615c8..b1043a1 100644 --- a/src/screen/world.c +++ b/src/screen/world.c @@ -387,9 +387,9 @@ void dialog_no(void *p) static void hotkey_escape() { - yes_no_dialog_set("Naozaj chete ukoncit hru ?", dialog_yes, dialog_no, NULL); + yes_no_dialog_set(_("Do you really want to quit the game?"), dialog_yes, dialog_no, NULL); yes_no_dialog_set_active(TRUE); - //world_do_end(); + /*world_do_end();*/ } void startWorld() @@ -417,7 +417,7 @@ void startWorld() prepareArena(); } -static void action_analyze(space_t * space, tux_t * tux, void *p) +static void action_analyze(space_t *space, tux_t *tux, void *p) { UNUSED(space); UNUSED(p); |