summaryrefslogtreecommitdiff
path: root/src/screen
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2008-10-25 11:58:43 +0200
committerxHire <xhire@tuxportal.cz>2008-10-25 11:58:43 +0200
commit03daa19ec574dcab59e89566a8062b60b16a8325 (patch)
tree702273f2e42d4e483a5262f66660d8b3329e558e /src/screen
parent4b4a75f6ced29923777d0dd7e27fdd4bbfed800a (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')
-rw-r--r--src/screen/screen_setting.c8
-rw-r--r--src/screen/screen_table.c4
2 files changed, 6 insertions, 6 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 =
diff --git a/src/screen/screen_table.c b/src/screen/screen_table.c
index 5eea4d2..1a5ffcd 100644
--- a/src/screen/screen_table.c
+++ b/src/screen/screen_table.c
@@ -152,7 +152,7 @@ loadHighscoreFile()
textFile = loadTextFile(path);
if (textFile == 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);
textFile = newTextFile(path);
}
@@ -161,7 +161,7 @@ loadHighscoreFile()
}
if (textFile == NULL) {
- fprintf(stderr, _("I was unable to create: \"%s\" !\n"), path);
+ fprintf(stderr, _("I was unable to create: \"%s\"!\n"), path);
return;
}