From dc9b2dc6c7c81edf9b0663d1436dff417246e038 Mon Sep 17 00:00:00 2001 From: damien Date: Fri, 23 Mar 2001 15:16:47 +0000 Subject: corrected bad translation --- perl-install/tinyfirewall.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'perl-install/tinyfirewall.pm') 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; -- cgit v1.2.1