summaryrefslogtreecommitdiffstats
path: root/web_wizard
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-02-26 13:55:47 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-02-26 13:55:47 +0000
commit3dec3126dfb6aa22618fed1741e83a75dcd4d9ac (patch)
tree859c66007bff8d1174311d09162b14e9ea50e3b2 /web_wizard
parent07b48df6f3d500d2e8bd06aff5984d48ec5099d0 (diff)
downloaddrakwizard-3dec3126dfb6aa22618fed1741e83a75dcd4d9ac.tar
drakwizard-3dec3126dfb6aa22618fed1741e83a75dcd4d9ac.tar.gz
drakwizard-3dec3126dfb6aa22618fed1741e83a75dcd4d9ac.tar.bz2
drakwizard-3dec3126dfb6aa22618fed1741e83a75dcd4d9ac.tar.xz
drakwizard-3dec3126dfb6aa22618fed1741e83a75dcd4d9ac.zip
typo fix
Diffstat (limited to 'web_wizard')
-rwxr-xr-xweb_wizard/Apache.pm18
1 files changed, 9 insertions, 9 deletions
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
},