diff options
Diffstat (limited to 'web_wizard')
-rwxr-xr-x | web_wizard/Apache.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm index b3ec74b4..429ff72f 100755 --- a/web_wizard/Apache.pm +++ b/web_wizard/Apache.pm @@ -74,10 +74,10 @@ $o->{pages} = { 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 Internet"), type => 'bool', val => \$o->{var}{web_external} }, ], next => 'ask_mod' }, @@ -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 }, |