diff options
Diffstat (limited to 'installsrv_wizard')
-rw-r--r-- | installsrv_wizard/Installsrv.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/installsrv_wizard/Installsrv.pm b/installsrv_wizard/Installsrv.pm index 92092092..33e5ab71 100644 --- a/installsrv_wizard/Installsrv.pm +++ b/installsrv_wizard/Installsrv.pm @@ -39,7 +39,7 @@ my $WWWDIR = "/var/www/html"; my $testy; my $o = { - name => 'MDK Install Server Wizard', + name => 'Install Server Wizard', var => { DESTDIR => '/var/install/clic', SOURCEDIR => '/home/nis/install/clic', @@ -50,12 +50,12 @@ my $o = { $o->{pages} = { welcome => { - name => N("Configure a Mandrakelinux install server (via NFS and http)") . "\n\n" . N("Easily configure a Mandrakelinux server installation directory, with NFS and HTTP access."), + name => N("Configure an install server (via NFS and http)") . "\n\n" . N("Easily configure a server installation directory, with NFS and HTTP access."), no_back => 1, next => 'install_srv', }, install_srv => { - name => N("Install server configuration") . "\n\n" . N("Path to data: specify your source directory, should be base of a Mandrakelinux installation.") . "\n\n" . N("Destination directory: copy file in which directory?"), + name => N("Install server configuration") . "\n\n" . N("Path to data: specify your source directory, should be base of a Linux installation.") . "\n\n" . N("Destination directory: copy file in which directory?"), pre => sub { $o->{var}{wiz_nfs} ||= 1; $o->{var}{wiz_http} ||= 1; @@ -74,7 +74,7 @@ $o->{pages} = { next => 'install_srv', }, error_dir => { - name => N("Error, the source path must be a directory with full Mandrakelinux installation directory."), + name => N("Error, the source path must be a directory with full Linux installation directory."), next => 'install_srv', }, dir_already_use => { @@ -101,7 +101,7 @@ $o->{pages} = { next => 'end', }, end => { - name => N("Congratulations, Mandrakelinux Install server is now ready. You can now configure a DHCP server with PXE support, and a PXE server. So it will be very easy to install Mandrakelinux through a network."), + name => N("Congratulations, Install server is now ready. You can now configure a DHCP server with PXE support, and a PXE server. So it will be very easy to install Linux through a network."), end => 1, no_back => 1, next => 0 |