diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2000-08-22 20:43:02 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2000-08-22 20:43:02 +0000 |
commit | b7153d8acb35ca213ea613dd9b2b15800b9b94f9 (patch) | |
tree | 059f3953d73bc6f0b95c7c18ca434b0695c36db8 /perl-install/standalone/drakgw | |
parent | 71b49d1a41df428ef08c9159db9e2154d3ec29b5 (diff) | |
download | drakx-backup-do-not-use-b7153d8acb35ca213ea613dd9b2b15800b9b94f9.tar drakx-backup-do-not-use-b7153d8acb35ca213ea613dd9b2b15800b9b94f9.tar.gz drakx-backup-do-not-use-b7153d8acb35ca213ea613dd9b2b15800b9b94f9.tar.bz2 drakx-backup-do-not-use-b7153d8acb35ca213ea613dd9b2b15800b9b94f9.tar.xz drakx-backup-do-not-use-b7153d8acb35ca213ea613dd9b2b15800b9b94f9.zip |
update-po
and fixed/standardized some English strings (English doesn't use a space
before the colon)
Diffstat (limited to 'perl-install/standalone/drakgw')
-rwxr-xr-x | perl-install/standalone/drakgw | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index 98ddb4aa2..fd9862661 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -178,22 +178,19 @@ my $interface; if ($#all_cards == -1) { $in->ask_warn(_("No network adapter on your system!"), - _("No ethernet network adapter is currently configured on your ". - "system. Please run the hardware configuration tool.")); + _("No ethernet network adapter is currently configured on your system. Please run the hardware configuration tool.")); $in->exit(0); } elsif ($#all_cards == 0) { $interface = $all_cards[0]; $in->ask_okcancel(_("Network interface"), - _("There is only one configured network adapter on your system:\n\n$interface\n\n". - "Would you like to setup your Local Area Network with that adapter?"), 1) or $in->exit(0); + _("There is only one configured network adapter on your system:\n\n$interface\n\nWould you like to setup your Local Area Network with that adapter?"), 1) or $in->exit(0); } else { $interface = $in->ask_from_list(_("Choose the network interface"), - _("Please choose what network adapter will be connected to your\n". - "Local Area Network."), + _("Please choose what network adapter will be connected\nto your Local Area Network."), \@all_cards, ); defined $interface or $in->exit(0); |