diff options
| author | xHire <xhire@tuxportal.cz> | 2008-10-25 11:58:43 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2008-10-25 11:58:43 +0200 |
| commit | 03daa19ec574dcab59e89566a8062b60b16a8325 (patch) | |
| tree | 702273f2e42d4e483a5262f66660d8b3329e558e /src/screen/screen_setting.c | |
| parent | 4b4a75f6ced29923777d0dd7e27fdd4bbfed800a (diff) | |
Translated all game into Czech + some small fixes
Updated scripts
Correction: "Height Score" -> "High Score"
Set right file permissions
Diffstat (limited to 'src/screen/screen_setting.c')
| -rw-r--r-- | src/screen/screen_setting.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/screen/screen_setting.c b/src/screen/screen_setting.c index 78e2936..22e524c 100644 --- a/src/screen/screen_setting.c +++ b/src/screen/screen_setting.c @@ -217,14 +217,14 @@ initSettingFile() configFile = loadTextFile(path); if (configFile == NULL) { - fprintf(stderr, _("I am unable to load: \"%s\" !\n"), path); + fprintf(stderr, _("I am unable to load: \"%s\"!\n"), path); fprintf(stderr, _("Creating: \"%s\"\n"), path); configFile = newTextFile(path); } if (configFile == NULL) { - fprintf(stderr, _("I was unable to create: \"%s\" !\n"), path); + fprintf(stderr, _("I was unable to create: \"%s\"!\n"), path); return; } @@ -384,11 +384,11 @@ initScreenSetting() newWidgetCheck(label_sound->x + label_sound->w + 10, WINDOW_SIZE_Y - 80, isSoundActive(), eventWidget); label_ai = - newWidgetLabel("AI:", check_sound->x + WIDGET_CHECK_WIDTH + 10, + newWidgetLabel(_("AI:"), check_sound->x + WIDGET_CHECK_WIDTH + 10, WINDOW_SIZE_Y - 85, WIDGET_LABEL_LEFT); #else label_ai = - newWidgetLabel("AI:", 100, WINDOW_SIZE_Y - 85, WIDGET_LABEL_LEFT); + newWidgetLabel(_("AI:"), 100, WINDOW_SIZE_Y - 85, WIDGET_LABEL_LEFT); #endif check_ai = |