diff options
Diffstat (limited to 'src/screen')
| -rw-r--r-- | src/screen/screen_setting.c | 8 | ||||
| -rw-r--r-- | src/screen/screen_table.c | 4 |
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; } |