From 03daa19ec574dcab59e89566a8062b60b16a8325 Mon Sep 17 00:00:00 2001 From: xHire Date: Sat, 25 Oct 2008 11:58:43 +0200 Subject: Translated all game into Czech + some small fixes Updated scripts Correction: "Height Score" -> "High Score" Set right file permissions --- src/screen/screen_setting.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/screen/screen_setting.c') 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 = -- cgit v1.2.3