summaryrefslogtreecommitdiffstats
path: root/perl-install/tinyfirewall.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2001-03-23 15:16:47 +0000
committerdamien <damien@mandriva.com>2001-03-23 15:16:47 +0000
commitdc9b2dc6c7c81edf9b0663d1436dff417246e038 (patch)
treec4719e98871f9d0e9077019e07f67ceda4d648e8 /perl-install/tinyfirewall.pm
parente098254bafc8d10becd2d9c50f09d96a3fa19953 (diff)
downloaddrakx-backup-do-not-use-dc9b2dc6c7c81edf9b0663d1436dff417246e038.tar
drakx-backup-do-not-use-dc9b2dc6c7c81edf9b0663d1436dff417246e038.tar.gz
drakx-backup-do-not-use-dc9b2dc6c7c81edf9b0663d1436dff417246e038.tar.bz2
drakx-backup-do-not-use-dc9b2dc6c7c81edf9b0663d1436dff417246e038.tar.xz
drakx-backup-do-not-use-dc9b2dc6c7c81edf9b0663d1436dff417246e038.zip
corrected bad translation
Diffstat (limited to 'perl-install/tinyfirewall.pm')
-rw-r--r--perl-install/tinyfirewall.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/tinyfirewall.pm b/perl-install/tinyfirewall.pm
index c4fc7c871..20ab08d36 100644
--- a/perl-install/tinyfirewall.pm
+++ b/perl-install/tinyfirewall.pm
@@ -114,9 +114,9 @@ sub DoInterface {
[undef , undef, undef, undef, ["tcp", "20"],["tcp", "21"]],
[undef , undef, undef, undef, ["tcp", "25"]],
[undef , undef, undef, $popimap, ["tcp", "109"], ["tcp", "110"], ["tcp", "143"]],
- [undef , _("No I don't need DHCP"), _("Yes I need DHCP"), $dhcp],
- [undef , _("No I don't need NTP"), _("Yes I need NTP"), $ntp ],
- [undef , _("Don't Save"), _("Save & Quit"), $quit ]
+ [undef , "No I don't need DHCP", "Yes I need DHCP", $dhcp],
+ [undef , "No I don't need NTP", "Yes I need NTP", $ntp ],
+ [undef , "Don't Save", "Save & Quit", $quit ]
);
!Kernel22() and pop @struct, pop @struct;
for (my $i=0;$i<@struct;$i++) {
@@ -131,12 +131,12 @@ sub DoInterface {
}
my $no = $l->[1] ? $l->[1] : _("No (firewall this off from the internet)");
my $yes = $l->[2] ? $l->[2] : _("Yes (allow this through the firewall)");
- if (my $e = $in->ask_from_list(_("Firewall Configuration Wizard"),
+ if (my $e = $in->ask_from_list_(_("Firewall Configuration Wizard"),
$messages[$i],
[ $yes, $no ], or_( map { $_ && CheckService($_->[0], $_->[1]) } (@$l[4..6])) ? $yes : $no
)) {
map { $_ and Service($e=~/Yes/, $_->[0], $_->[1]) } (@{$struct[$i]}[4..6]);
- $struct[$i][3] and $struct[$i][3]->($e=~/Yes/);
+ $struct[$i][3] and $struct[$i][3]->($e=~/Yes/ || $e eq "Save & Quit");
} else {
prev:
$i = $i-2 >= -1 ? $i-2 : -1;