summaryrefslogtreecommitdiffstats
path: root/ftp_wizard
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-02-26 13:33:27 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-02-26 13:33:27 +0000
commit0ffcd6647cd48ff169ed672e14b3c5f4febcc003 (patch)
tree19893bc2c448498debdfde89d033146dad59eb25 /ftp_wizard
parent65c0027f1dce9d77a6c27660580ede0ad5cd69de (diff)
downloaddrakwizard-0ffcd6647cd48ff169ed672e14b3c5f4febcc003.tar
drakwizard-0ffcd6647cd48ff169ed672e14b3c5f4febcc003.tar.gz
drakwizard-0ffcd6647cd48ff169ed672e14b3c5f4febcc003.tar.bz2
drakwizard-0ffcd6647cd48ff169ed672e14b3c5f4febcc003.tar.xz
drakwizard-0ffcd6647cd48ff169ed672e14b3c5f4febcc003.zip
typo fix
Diffstat (limited to 'ftp_wizard')
-rwxr-xr-xftp_wizard/Proftpd.pm22
1 files changed, 11 insertions, 11 deletions
diff --git a/ftp_wizard/Proftpd.pm b/ftp_wizard/Proftpd.pm
index 017003d0..af0bea07 100755
--- a/ftp_wizard/Proftpd.pm
+++ b/ftp_wizard/Proftpd.pm
@@ -70,22 +70,22 @@ my %opt = (
$o->{pages} = {
welcome => {
- name => N("FTP Server Configuration Wizard") . "\n\n" . N("This wizard will help you configuring an FTP Server for your network."),
+ name => N("FTP server configuration wizard") . "\n\n" . N("This wizard will help you configuring an FTP server for your network."),
no_back => 1,
post => \&check,
next => 'config'
},
config => {
- name => N("FTP Server") . "\n\n" . N("Your server can act as an FTP Server toward your internal network (intranet) and as an FTP Server for the Internet.") . "\n\n" . N("Select the kind of FTP service you want to activate:"),
+ name => N("FTP server") . "\n\n" . N("Your server can act as an FTP server toward your internal network (intranet) and as an FTP server for the internet.") . "\n\n" . N("Select the kind of FTP service you want to activate:"),
data => [
- { label => N("Enable the FTP Server for the Intranet"), type => 'bool', val => \$o->{var}{wiz_ftp_internal} },
- { label => N("Enable the FTP Server for the Internet"), type => 'bool', val => \$o->{var}{wiz_ftp_external} },
+ { label => N("Enable the FTP server for the intranet"), type => 'bool', val => \$o->{var}{wiz_ftp_internal} },
+ { label => N("Enable the FTP server for the internet"), type => 'bool', val => \$o->{var}{wiz_ftp_external} },
],
post => \&check_opt,
next => 'options'
},
options => {
- name => N("FTP Proftpd server options") . "\n\n" . N("Permit root login: allow root to log on FTP server.") . "\n" . N("Admin Email: email address of the FTP administrator.") . "\n" . N("Chroot Home user: users will only see their home directory.") . "\n\n" . N("Allow FTP resume: allow resume upload or download on FTP server.") . "\n" . N("Allow FXP: allow file transfer via another FTP."),
+ name => N("FTP Proftpd server options") . "\n\n" . N("Permit root login: allow root to log on FTP server.") . "\n" . N("Admin email: email address of the FTP administrator.") . "\n" . N("Chroot home user: users will only see their home directory.") . "\n\n" . N("Allow FTP resume: allow resume upload or download on FTP server.") . "\n" . N("Allow FXP: allow file transfer via another FTP."),
pre => sub {
$o->{var}{wiz_root_login} ||= 0;
$o->{var}{wiz_default_root} ||= 1;
@@ -94,8 +94,8 @@ $o->{pages} = {
},
data => [
{ label => N("Admin email:"), val => \$o->{var}{wiz_server_admin} },
- { label => N("Permit root Login:"), type => 'bool', val => \$o->{var}{wiz_root_login} },
- { label => N("Chroot Home user:"), type => 'bool', val => \$o->{var}{wiz_default_root} },
+ { label => N("Permit root login:"), type => 'bool', val => \$o->{var}{wiz_root_login} },
+ { label => N("Chroot home user:"), type => 'bool', val => \$o->{var}{wiz_default_root} },
{ label => N("Allow FTP resume:"), type => 'bool', val => \$o->{var}{wiz_ftp_resume} },
{ label => N("Allow FXP:"), type => 'bool', val => \$o->{var}{wiz_ftp_fxp} },
],
@@ -123,7 +123,7 @@ $o->{pages} = {
next => 'config'
},
summary => {
- name => N("Configuring the FTP Server") . "\n\n" . N("The wizard collected the following parameters needed to configure your FTP Server") . "\n\n" . N("To accept those values, and configure your server, click the next button or use the back button to correct them"),
+ name => N("Configuring the FTP server") . "\n\n" . N("The wizard collected the following parameters needed to configure your FTP server") . "\n\n" . N("To accept those values, and configure your server, click the next button or use the back button to correct them"),
pre => sub {
$o->{var}{internal} = $o->{var}{wiz_ftp_internal} ? N("enabled") : N("disabled");
$o->{var}{external} = $o->{var}{wiz_ftp_external} ? N("enabled") : N("disabled");
@@ -133,8 +133,8 @@ $o->{pages} = {
$o->{var}{fxp} = $o->{var}{wiz_ftp_fxp} ? N("enabled") : N("disabled");
},
data => [
- { label => N("Intranet FTP Server:"), fixed_val => \$o->{var}{internal} },
- { label => N("Internet FTP Server:"), fixed_val => \$o->{var}{external} },
+ { label => N("Intranet FTP server:"), fixed_val => \$o->{var}{internal} },
+ { label => N("Internet FTP server:"), fixed_val => \$o->{var}{external} },
{ label => N("Admin email"), fixed_val => \$o->{var}{wiz_server_admin} },
{ label => N("Permit root Login"), fixed_val => \$o->{var}{rootlogin} },
{ label => N("Chroot Home user"), fixed_val => \$o->{var}{defaultroot} },
@@ -145,7 +145,7 @@ $o->{pages} = {
next => 'end'
},
end => {
- name => N("Congratulations") . "\n\n" . N("The wizard successfully configured your Intranet/Internet FTP Server"),
+ name => N("Congratulations") . "\n\n" . N("The wizard successfully configured your intranet/internet FTP server"),
end => 1,
no_back => 1,
next => 0