summaryrefslogtreecommitdiffstats
path: root/drakpxelinux.pl
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2004-08-21 07:11:27 +0000
committerPablo Saratxaga <pablo@mandriva.com>2004-08-21 07:11:27 +0000
commit8a702340fb29117dbd188f0a634fd66299edebe1 (patch)
tree8950a42eafe15ac156907d9b1b1dc64c47e52989 /drakpxelinux.pl
parent6dd56dfa796c0dcf2e618fd088c375ae0020357b (diff)
downloaddrakpxelinux-8a702340fb29117dbd188f0a634fd66299edebe1.tar
drakpxelinux-8a702340fb29117dbd188f0a634fd66299edebe1.tar.gz
drakpxelinux-8a702340fb29117dbd188f0a634fd66299edebe1.tar.bz2
drakpxelinux-8a702340fb29117dbd188f0a634fd66299edebe1.tar.xz
drakpxelinux-8a702340fb29117dbd188f0a634fd66299edebe1.zip
explicitely tell that the PXE menu entries must be in *ASCII*
(saying "letter or digits" is not enough; it should exclude cyrillic, latin accents, etc.); updated pot file
Diffstat (limited to 'drakpxelinux.pl')
-rw-r--r--drakpxelinux.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/drakpxelinux.pl b/drakpxelinux.pl
index 60b3523..399d78f 100644
--- a/drakpxelinux.pl
+++ b/drakpxelinux.pl
@@ -63,10 +63,10 @@ my ($IPSERVER) = `/sbin/ip addr show dev $interface` =~ /^\s*inet\s+(\d+\.\d+\.\
my $DOMAINNAME = chomp_(`dnsdomainname`);
my $help = "" .
-N("PXE Label: the name to be displayed in the PXE menu (a word/number)") . "\n" .
+N("PXE Label: the name to be displayed in the PXE menu (an ASCII word/number)") . "\n" .
N("Server: IP address of server, that contains the installation directory") . "\n" .
N("Kernel: memdisk or vmlinuz") . "\n" .
-N("Initrd: network boot image (network.img ) or all.rdz") . "\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" .
@@ -82,13 +82,13 @@ my %help = (
'kernel' => N("memdisk in case of network.img, or vmlinuz"),
'vga' => N("if you encounter any problem with VGA, please adjust"),
'interface' => N("network interface used for the installation process"),
- 'info' => N("the name to be displayed in the PXE menu (a word/number)"),
+ 'info' => N("the name to be displayed in the PXE menu (an ASCII word/number)"),
'network' => N("DHCP or an IP address"),
'directory' => N("full path to MDK 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)"),
- 'option' => N("apic nolapic acpi=off initrd=/bin/shell"),
+ '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"),
'wizardsrv' => N("launches a wizard to setup a PXE server"),
@@ -342,7 +342,7 @@ sub wizard_add_entry {
name => N("When this wizard has finished, the all.rdz image and kernel vmlinuz will be copied into \n%s.\n\nThe PXE menu list will be updated with this new entry.", $IMGPATH),
data => [
{ label => N("PXE label:"), val => \$WPXENAME,
- help => N("name displayed in PXE menu (please provide a word or a number, without spaces)") },
+ 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:\nMandrake 10 rescue disk\nMandrake cooker install via http") },
{ label => N("Full path to all.rdz image source:"), val => \$WALLRDZ,
@@ -355,7 +355,7 @@ sub wizard_add_entry {
err_dialog(N("Error!"), N("Found a similar entry in PXE list labeled: %s.\nChoose another label please", $WPXENAME)) and return 'addimg';
}
if (($WPXENAME) !~ /^\w+$/) {
- err_dialog(N("Error!"), N("PXE label should be a name/number without space. Please adjust")) and return 'addimg';
+ err_dialog(N("Error!"), N("PXE label should be an ASCII name/number without space. Please adjust")) and return 'addimg';
}
},
next => 'endadd',