minor fix: add spaces to error messages

SVN revision: 18814
This commit is contained in:
andyetitmoves 2005-12-03 15:00:44 +00:00 committed by andyetitmoves
parent 97fd4f7d87
commit 2f655c348d
1 changed files with 5 additions and 5 deletions

View File

@ -210,8 +210,8 @@ e_intl_language_set(const char *lang)
alias_locale = _e_intl_locale_alias_get(_e_intl_language);
if (!_e_intl_locale_validate(alias_locale))
{
fprintf(stderr, "Locale %s is NO GOOD. Please"
"install this locale or don't"
fprintf(stderr, "Locale %s is NO GOOD. Please "
"install this locale or don't "
"use it!\n", alias_locale);
}
else
@ -224,11 +224,11 @@ e_intl_language_set(const char *lang)
locale_path = _e_intl_language_path_find(alias_locale);
if (locale_path == NULL)
{
fprintf(stderr, "The eMonkeys can not find the"
fprintf(stderr, "The eMonkeys can not find the "
" eTranslation for your eLocale(%s). "
"Please make sure your messages "
"path is in order. If this locale"
"is an alias make sure you have your"
"path is in order. If this locale "
"is an alias make sure you have your "
"locale.aliases file in the right place\n", alias_locale);
}
else