summaryrefslogtreecommitdiffstats
path: root/ftp_wizard
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2004-08-08 09:14:33 +0000
committerPablo Saratxaga <pablo@mandriva.com>2004-08-08 09:14:33 +0000
commit1499430f9b2999a17fb3e3a0f5a1c2355adecd8a (patch)
tree25558c1a6977f8728c8c4b8262b70e122ae28fd1 /ftp_wizard
parent2ee9e5c2a5775fde6ed2730d5485249271e0394b (diff)
downloaddrakwizard-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 '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 ee6a9bfb..a2ef0f66 100755
--- a/ftp_wizard/Proftpd.pm
+++ b/ftp_wizard/Proftpd.pm
@@ -112,7 +112,7 @@ $o->{pages} = {
next => 'config',
},
error_shell => {
- name => N("I can't find bash in list of shells! It seems you have modified it by hand ! Please correct."),
+ name => N("I can't find bash in list of shells! It seems you have modified it by hand! Please correct."),
no_back => 1,
end => 1,
next => 0,
@@ -188,7 +188,7 @@ sub check_dir {
sub get_dir {
my $file = "/etc/proftpd.conf";
- die "no FTP configuration file found ! warning." if !-f $file;
+ die "no FTP configuration file found! warning." if !-f $file;
local *NEW;
open(NEW, "< $file") or die "error while opening $file: $!";
@@ -254,7 +254,7 @@ sub do_it {
my $wiz_ftp_internal = $o->{var}{wiz_ftp_external} ? 1 : true $o->{var}{wiz_ftp_internal};
my $wiz_ftp_external = true $o->{var}{wiz_ftp_external};
my $file = "/etc/proftpd.conf";
- die "no FTP configuration file found ! warning." if !-f $file;
+ die "no FTP configuration file found! warning." if !-f $file;
MDK::Common::cp_af($file, $file . ".orig");
my $allow;
if ($wiz_ftp_internal && !$wiz_ftp_external) {