summaryrefslogtreecommitdiffstats
path: root/ftp_wizard
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2004-02-27 01:39:28 +0000
committerPablo Saratxaga <pablo@mandriva.com>2004-02-27 01:39:28 +0000
commit4faf71968e024c1271bf290901189cc4f84152af (patch)
tree4037cb5940945e81736f548c0c79f2d9fc1ff94c /ftp_wizard
parent682be8195b2359db1aa28934d870ff7d2db71edf (diff)
downloaddrakwizard-4faf71968e024c1271bf290901189cc4f84152af.tar
drakwizard-4faf71968e024c1271bf290901189cc4f84152af.tar.gz
drakwizard-4faf71968e024c1271bf290901189cc4f84152af.tar.bz2
drakwizard-4faf71968e024c1271bf290901189cc4f84152af.tar.xz
drakwizard-4faf71968e024c1271bf290901189cc4f84152af.zip
rescued a some ~50 strings strings and updated pot file.
capitalized "Internet"
Diffstat (limited to 'ftp_wizard')
-rwxr-xr-xftp_wizard/Proftpd.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/ftp_wizard/Proftpd.pm b/ftp_wizard/Proftpd.pm
index fec232a1..ee6a9bfb 100755
--- a/ftp_wizard/Proftpd.pm
+++ b/ftp_wizard/Proftpd.pm
@@ -76,10 +76,10 @@ $o->{pages} = {
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 Internet"), type => 'bool', val => \$o->{var}{wiz_ftp_external} },
],
post => \&check_opt,
next => 'options'
@@ -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