summaryrefslogtreecommitdiffstats
path: root/drakpxelinux.pl
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-08-30 01:33:08 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-08-30 01:33:08 +0000
commit2395d9ee40671aa2c18f005a3c6452362478b683 (patch)
tree41b5b234c8098ba548b81d38b172d9b9c45dc14d /drakpxelinux.pl
parent7ff421eb2a32c46363da54ad07657d5eb1e99350 (diff)
downloaddrakpxelinux-2395d9ee40671aa2c18f005a3c6452362478b683.tar
drakpxelinux-2395d9ee40671aa2c18f005a3c6452362478b683.tar.gz
drakpxelinux-2395d9ee40671aa2c18f005a3c6452362478b683.tar.bz2
drakpxelinux-2395d9ee40671aa2c18f005a3c6452362478b683.tar.xz
drakpxelinux-2395d9ee40671aa2c18f005a3c6452362478b683.zip
typo fix (Joao Ferreira)
Diffstat (limited to 'drakpxelinux.pl')
-rw-r--r--drakpxelinux.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/drakpxelinux.pl b/drakpxelinux.pl
index 8938208..8ee169f 100644
--- a/drakpxelinux.pl
+++ b/drakpxelinux.pl
@@ -22,7 +22,7 @@
# thx R1 for test and some debug
# cvs.mandrakesoft.com module: /soft/drakpxelinux
-my $version = "0.9.1";
+my $version = "1.0.1";
use lib qw(/usr/lib/libDrakX);
use standalone;
@@ -71,8 +71,8 @@ N("Interface: network interface used for the installation process") . "\n" .
N("Network: DHCP or an IP address") . "\n" .
N("Directory: full path to Mandrakelinux install server directory") . "\n" .
N("Installation method: NFS or HTTP") . "\n" .
-N("Ramsize: ramsize parameter on boot disk") . "\n" .
-N("Display: export display to another computer (ie: 10.0.1.33:0)") . "\n" .
+N("Ramsize: ramsize parameter on boot image") . "\n" .
+N("Display: export display to another computer (e.g.: 10.0.1.33:0)") . "\n" .
N("VGA: if you encounter any problem with VGA, please adjust") . "\n" .
"";
@@ -86,8 +86,8 @@ my %help = (
'network' => N("DHCP or an IP address"),
'directory' => N("full path to Mandrakelinux install server directory"),
'automatic' => N("installation method: choose NFS or HTTP"),
- 'ramsize' => N("ramsize parameter on boot disk"),
- 'display' => N("export display on another computer (ie: 10.0.1.33:0)"),
+ 'ramsize' => N("ramsize parameter on boot image"),
+ 'display' => N("export display on another computer (e.g.: 10.0.1.33:0)"),
'option' => "apic nolapic acpi=off initrd=/bin/shell",
'server' => N("IP address of server, that contains the installation directory"),
'labels' => N("lists all PXE entries, the default boot is the selected one"),
@@ -344,11 +344,11 @@ sub wizard_add_entry {
{ label => N("PXE label:"), val => \$WPXENAME,
help => N("name displayed in PXE menu (please provide an ASCII word or a number, without spaces)") },
{ label => N("PXE information:"), val => \$WINFO,
- help => N("The PXE information is used to explain the role of the boot image,\nie:\nMandrakelinux 10 rescue disk\nMandrakelinux cooker install via http") },
+ help => N("The PXE information is used to explain the role of the boot image,\ne.g.:\nMandrakelinux 10 rescue disk\nMandrakelinux cooker install via http") },
{ label => N("Full path to all.rdz image source:"), val => \$WALLRDZ,
help => N("Provide the full path to all.rdz image source") },
{ label => N("Full path to vmlinuz source:"), val => \$WVMLINUZ,
- help => N("Provide the full path to vmlinuz kernel source") },
+ help => N("Provide the full path to vmlinuz kernel location") },
],
complete => sub {
if (any { /^$WPXENAME :/ } cat_($PXEHELP)) {