diff options
Diffstat (limited to 'drakpxelinux.pl')
-rw-r--r-- | drakpxelinux.pl | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/drakpxelinux.pl b/drakpxelinux.pl index 9fda41c..932b942 100644 --- a/drakpxelinux.pl +++ b/drakpxelinux.pl @@ -62,17 +62,17 @@ my ($IPSERVER) = `/sbin/ip addr show dev $interface` =~ /^\s*inet\s+(\d+\.\d+\.\ my $DOMAINNAME = chomp_(`dnsdomainname`); my $help = "" . -N("PXE Label: ") . N("the name displayed in PXE menu (a word/number)") . "\n" . -N("Server: ") . N("IP address of server, which contains installation directory") . "\n" . -N("Kernel: ") . N("memdisk or vmlinuz") . "\n" . -N("Initrd: ") . N("network boot image (network.img ) or all.rdz") . "\n" . -N("Interface: ") . N("network interface used for the installation process") . "\n" . -N("Network: ") . N("DHCP or an IP address") . "\n" . -N("Directory: ") . N("full path to MDK install server directory") . "\n" . -N("Method: ") . N("installation method: choose NFS or HTTP") . "\n" . -N("Ramsize: ") . N("ramsize parameter on boot disk") . "\n" . -N("Display: ") . N("export display on another computer (ie: 10.0.1.33:0)") . "\n" . -N("VGA: ") . N("if you encounter any problem with VGA, please adjust") . "\n" . +N("PXE Label: the name displayed in PXE menu (a word/number)") . "\n" . +N("Server: IP address of server, which contains installation directory") . "\n" . +N("Kernel: memdisk or vmlinuz") . "\n" . +N("Initrd: network boot image (network.img ) or all.rdz") . "\n" . +N("Interface: network interface used for the installation process") . "\n" . +N("Network: DHCP or an IP address") . "\n" . +N("Directory: full path to MDK install server directory") . "\n" . +N("Method: installation method: choose NFS or HTTP") . "\n" . +N("Ramsize: ramsize parameter on boot disk") . "\n" . +N("Display: export display on another computer (ie: 10.0.1.33:0)") . "\n" . +N("VGA: if you encounter any problem with VGA, please adjust") . "\n" . ""; @@ -330,10 +330,10 @@ sub wizard_add_entry { ], complete => sub { if (any { /^$WPXENAME :/ } cat_($PXEHELP)) { - err_dialog(N("Error !"), N("Found a similar entry in PXE list labeled : %s.\nChoose another label please", $WPXENAME)) and return 'addimg'; + err_dialog(N("Error!"), N("Found a similar entry in PXE list labeled : %s.\nChoose another label please", $WPXENAME)) and return 'addimg'; } if ($WPXENAME != /^\d+$/) { - err_dialog(N("Error !"), N("PXE label should be a name/number without space. Please adjust")); + err_dialog(N("Error!"), N("PXE label should be a name/number without space. Please adjust")); return 'addimg'; } }, |