diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-08-08 09:14:33 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-08-08 09:14:33 +0000 |
commit | 1499430f9b2999a17fb3e3a0f5a1c2355adecd8a (patch) | |
tree | 25558c1a6977f8728c8c4b8262b70e122ae28fd1 /web_wizard | |
parent | 2ee9e5c2a5775fde6ed2730d5485249271e0394b (diff) | |
download | drakwizard-1499430f9b2999a17fb3e3a0f5a1c2355adecd8a.tar drakwizard-1499430f9b2999a17fb3e3a0f5a1c2355adecd8a.tar.gz drakwizard-1499430f9b2999a17fb3e3a0f5a1c2355adecd8a.tar.bz2 drakwizard-1499430f9b2999a17fb3e3a0f5a1c2355adecd8a.tar.xz drakwizard-1499430f9b2999a17fb3e3a0f5a1c2355adecd8a.zip |
fixed various strings to proper English
Diffstat (limited to 'web_wizard')
-rwxr-xr-x | web_wizard/Apache.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm index ae58661e..c1ea415d 100755 --- a/web_wizard/Apache.pm +++ b/web_wizard/Apache.pm @@ -87,7 +87,7 @@ $o->{pages} = { next => 'config' }, ask_mod => { - name => N("Modules :") . "\n\n" . N("* User module : allows users to have a directory in their home directories available on your http server via http://www.yourserver.com/~user, you will be asked for the name of this directory afterward."), + name => N("Modules:") . "\n\n" . N("* User module: allows users to have a directory in their home directories available on your http server via http://www.yourserver.com/~user, you will be asked for the name of this directory afterward."), pre => sub { $o->{var}{user_mod} = is_last_user_mod() }, data => [ { text => join("\n", warp_text(N("Allows users to get a directory in their homes directories @@ -100,7 +100,7 @@ available on your http server via http://www.yourserver.com/~user."), 70)), type name => N("Type the name of the directory users should create in their homes (without ~/) to get it available via http://www.yourserver.com/~user"), pre => sub { $o->{var}{user_dir} ||= 'public_html' }, data => [ - { label => N("user http sub-directory : ~/"), help => N("Type the name of the directory users should create in their homes (without ~/) to get it available via http://www.yourserver.com/~user"), val => \$o->{var}{user_dir} }, + { label => N("user http sub-directory: ~/"), help => N("Type the name of the directory users should create in their homes (without ~/) to get it available via http://www.yourserver.com/~user"), val => \$o->{var}{user_dir} }, ], next => 'ask_dir' }, |