From 3dec3126dfb6aa22618fed1741e83a75dcd4d9ac Mon Sep 17 00:00:00 2001 From: Antoine Ginies Date: Thu, 26 Feb 2004 13:55:47 +0000 Subject: typo fix --- web_wizard/Apache.pm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'web_wizard') diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm index 63e33d18..b3ec74b4 100755 --- a/web_wizard/Apache.pm +++ b/web_wizard/Apache.pm @@ -59,7 +59,7 @@ my $o = { } close($FH); } else { - return (0, N("%s does not exist.", $file)) + return 0, N("%s does not exist.", $file) } 1 } @@ -68,16 +68,16 @@ my $o = { $o->{pages} = { welcome => { - name => N("Web Server Configuration Wizard") . "\n\n" . N("This wizard will help you configuring the Web Server for your network."), + name => N("Web server configuration wizard") . "\n\n" . N("This wizard will help you configuring the Web server for your network."), post => sub { $wiz->check_dhcp }, no_back => 1, next => 'config' }, config => { - name => N("Web Server") . "\n\n" . N("Your server can act as a Web Server toward your internal network (intranet) and as a Web Server for the Internet.") . "\n\n" . N("Select the kind of Web service you want to activate:") . "\n\n" . N("Don't check any box if you don't want to activate your Web Server."), + name => N("Web server") . "\n\n" . N("Your server can act as a Web server toward your internal network (intranet) and as a Web server for the internet.") . "\n\n" . N("Select the kind of Web service you want to activate:") . "\n\n" . N("Don't check any box if you don't want to activate your Web server."), data => [ - { text => N("Enable the Web Server for the Intranet"), type => 'bool', val => \$o->{var}{web_internal} }, - { text => N("Enable the Web Server for the Internet"), type => 'bool', val => \$o->{var}{web_external} }, + { text => N("Enable the Web server for the intranet"), type => 'bool', val => \$o->{var}{web_internal} }, + { text => N("Enable the Web server for the internet"), type => 'bool', val => \$o->{var}{web_external} }, ], next => 'ask_mod' }, @@ -108,7 +108,7 @@ available on your http server via http://www.yourserver.com/~user."), 70)), type name => N("Type the path of the directory you want being the document root."), pre => sub { $o->{var}{shared_dir} ||= $root }, data => [ - { label => N("Document Root:"), val => \$o->{var}{shared_dir} }, + { label => N("Document root:"), val => \$o->{var}{shared_dir} }, ], post => \&check_dir, next => 'summary' @@ -116,7 +116,7 @@ available on your http server via http://www.yourserver.com/~user."), 70)), type error_in_dir => { name => N("Error."), data => [ - { label => N("The path you entered does not exist.") } + { label => N("The path you entered does not exist.") } ], ignore => 1, next => 'ask_dir' @@ -128,7 +128,7 @@ available on your http server via http://www.yourserver.com/~user."), 70)), type next => 'config' }, summary => { - name => N("Configuring the Web Server") . "\n\n" . N("The wizard collected the following parameters needed to configure your Web Server") . "\n\n" . N("To accept these values, and configure your server, click the Next button or use the Back button to correct them."), + name => N("Configuring the Web server") . "\n\n" . N("The wizard collected the following parameters needed to configure your Web server") . "\n\n" . N("To accept these values, and configure your server, click the Next button or use the Back button to correct them."), pre => sub { $o->{var}{internal} = $o->{var}{web_internal} ? N("enabled") : N("disabled"); $o->{var}{external} = $o->{var}{web_external} ? N("enabled") : N("disabled") @@ -144,7 +144,7 @@ available on your http server via http://www.yourserver.com/~user."), 70)), type }, end => { name => N("Congratulations") . "\n\n" . - N("The wizard successfully configured your Intranet/Internet Web Server"), + N("The wizard successfully configured your intranet/internet Web server"), end => 1, next => 0 }, -- cgit v1.2.1