diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-06-03 16:44:17 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-06-03 16:44:17 +0000 |
commit | a25c42ce3c9d206014ef711a4064ad6504dd90d9 (patch) | |
tree | 7ac676dbc55d270b4807e1aed54300ceafa8712a /mdk-stage1 | |
parent | c5e62d4adea5c8367e18dd3e90d703a1be6f4307 (diff) | |
download | drakx-a25c42ce3c9d206014ef711a4064ad6504dd90d9.tar drakx-a25c42ce3c9d206014ef711a4064ad6504dd90d9.tar.gz drakx-a25c42ce3c9d206014ef711a4064ad6504dd90d9.tar.bz2 drakx-a25c42ce3c9d206014ef711a4064ad6504dd90d9.tar.xz drakx-a25c42ce3c9d206014ef711a4064ad6504dd90d9.zip |
english fixes thx to vincent meyer
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/disk.c | 2 | ||||
-rw-r--r-- | mdk-stage1/network.c | 2 | ||||
-rw-r--r-- | mdk-stage1/stage1.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/mdk-stage1/disk.c b/mdk-stage1/disk.c index 515b95395..e4593dfc4 100644 --- a/mdk-stage1/disk.c +++ b/mdk-stage1/disk.c @@ -197,7 +197,7 @@ static enum return_type try_with_device(char *dev_name) return RETURN_ERROR; } - results = ask_from_list_comments_auto("Please choose the partition where is copied the " DISTRIB_NAME " Distribution.", + results = ask_from_list_comments_auto("Please choose the partition where " DISTRIB_NAME " is copied.", parts, parts_comments, &choice, "partition", parts); if (results != RETURN_OK) return results; diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c index c47657fff..3d3107ddf 100644 --- a/mdk-stage1/network.c +++ b/mdk-stage1/network.c @@ -384,7 +384,7 @@ static enum return_type setup_network_interface(struct interface_info * intf) static char ** answers = NULL; struct in_addr addr; - results = ask_from_entries_auto("Please enter the network information. (leave netmask void for Internet standard)", + results = ask_from_entries_auto("Please enter the network information. (leave netmask blank for Internet standard)", questions, &answers, 16, questions_auto, static_ip_callback); if (results != RETURN_OK) return setup_network_interface(intf); diff --git a/mdk-stage1/stage1.c b/mdk-stage1/stage1.c index 4370ebe1d..2c58a19a6 100644 --- a/mdk-stage1/stage1.c +++ b/mdk-stage1/stage1.c @@ -408,8 +408,8 @@ int main(int argc, char **argv, char **env) if (IS_RESCUE && total_memory() < MEM_LIMIT_RESCUE) { stg1_error_message("You are starting the rescue with a low memory configuration. " - "From that point, experience showed us that the program may stop " - "or crash at any point without immediate proper reason. Continue at " + "Our experience shows that your system may crash at any point " + "or lock up for no apparent reason. Continue at " "your own risk. Alternatively, you may reboot your system now."); } |