summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakgw
diff options
context:
space:
mode:
authorStefan Siegel <siegel@linux-mandrake.com>2001-08-18 00:10:21 +0000
committerStefan Siegel <siegel@linux-mandrake.com>2001-08-18 00:10:21 +0000
commita9493db8b616de80fd82b0b66562f5d443d9b70f (patch)
tree848bef9c862224a2567b22c1c3c8d9ba77a005bb /perl-install/standalone/drakgw
parent254ddbad5d1bb357fad4595897df9eb954f95f7c (diff)
downloaddrakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar
drakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.gz
drakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.bz2
drakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.xz
drakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.zip
fixed i18n
Diffstat (limited to 'perl-install/standalone/drakgw')
-rwxr-xr-xperl-install/standalone/drakgw7
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw
index 35257a6ad..377e780eb 100755
--- a/perl-install/standalone/drakgw
+++ b/perl-install/standalone/drakgw
@@ -250,7 +250,7 @@ my $lan_address = "192.168.0";
foreach (grep { $_ ne $device } @configured_devices)
{
grep(/$lan_address/, cat_("/etc/sysconfig/network-scripts/ifcfg-$_")) and
- ($in->ask_warn('', _("Potential LAN address conflict found in current config of $_!\n")) or goto step_detectsetup);
+ ($in->ask_warn('', _("Potential LAN address conflict found in current config of %s!\n", $_)) or goto step_detectsetup);
}
@@ -308,7 +308,7 @@ $in->do_pkgs->install(grep { !-e $rpm2file{$_} } keys %rpm2file);
if (grep { !-e $rpm2file{$_} } keys %rpm2file) {
foreach (keys %rpm2file) {
-e $rpm2file{$_} or $in->do_pkgs->install($_);
- -e $rpm2file{$_} or fatal_quit(_("Problems installing package $_"));
+ -e $rpm2file{$_} or fatal_quit(_("Problems installing package %s", $_));
}
}
@@ -665,6 +665,9 @@ Click on Configure to launch the setup wizard.", $setup_state));
#-------------------------------------------------
#- $Log$
+#- Revision 1.50 2001/08/18 00:06:32 siegel
+#- fixed i18n
+#-
#- Revision 1.49 2001/08/09 09:35:37 gc
#- use vnew the right way everywhere
#-