From fd2cfbeea02cc8008e5a43b4d88b528aa423dc78 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Fri, 27 Mar 2015 10:41:24 +0300 Subject: [PATCH] cdrom.c, network.c: tweak messages No code changes, just slightly better strings. --- cdrom.c | 2 +- network.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cdrom.c b/cdrom.c index fc9e07f..e5a3de1 100644 --- a/cdrom.c +++ b/cdrom.c @@ -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; diff --git a/network.c b/network.c index 7e52fa6..85216a5 100644 --- a/network.c +++ b/network.c @@ -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)