cdrom.c, network.c: tweak messages

No code changes, just slightly better strings.
This commit is contained in:
Michael Shigorin 2015-03-27 10:41:24 +03:00
parent f2535c70c8
commit fd2cfbeea0
2 changed files with 3 additions and 3 deletions

View File

@ -272,7 +272,7 @@ enum return_type cdrom_prepare(void)
unset_param(MODE_AUTOMATIC);
}
results = ask_from_list_comments("Please choose the drive to use for the installation.", medias, medias_models, &choice);
results = ask_from_list_comments("Please choose the drive to boot from.", medias, medias_models, &choice);
if (results == RETURN_OK) {
char ** model = medias_models;
ptr = medias;

View File

@ -563,7 +563,7 @@ static char * interface_select(void)
}
if (count == 0) {
stg1_error_message("No NET device found.");
stg1_error_message("No network device found.");
i = ask_insmod();
if (i == RETURN_BACK)
return NULL;
@ -591,7 +591,7 @@ static char * interface_select(void)
}
}
results = ask_from_list_comments_auto("Please choose the NET device to use for the installation.",
results = ask_from_list_comments_auto("Please choose the network device to boot from.",
interfaces, descriptions, &choice, "interface", interfaces);
if (results != RETURN_OK)