diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-03-02 13:26:30 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-03-02 13:26:30 +0000 |
commit | a66969f34012db208a95f3c55e8f75e4bdcc65f3 (patch) | |
tree | 3a848e4799f52a4aa8a56b9d1237a449d0eb35eb /perl-install | |
parent | 038b9a7824d15c162dcb94b57e0d385738c5d201 (diff) | |
download | drakx-a66969f34012db208a95f3c55e8f75e4bdcc65f3.tar drakx-a66969f34012db208a95f3c55e8f75e4bdcc65f3.tar.gz drakx-a66969f34012db208a95f3c55e8f75e4bdcc65f3.tar.bz2 drakx-a66969f34012db208a95f3c55e8f75e4bdcc65f3.tar.xz drakx-a66969f34012db208a95f3c55e8f75e4bdcc65f3.zip |
rewrote string to avoid duplication
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/shorewall.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/network/shorewall.pm b/perl-install/network/shorewall.pm index 6bcc03933..ae62dcaad 100644 --- a/perl-install/network/shorewall.pm +++ b/perl-install/network/shorewall.pm @@ -67,12 +67,12 @@ sub default_interfaces { my @l = detect_devices::getNet() or return; $in->ask_from('', - N("Please enter the name of the interface connected to the internet. - + N("Please enter the name of the interface connected to the internet. + Examples: - ppp+ for modem or DSL connections, - eth0, or eth1 for cable connection, - ippp+ for a isdn connection. + ppp+ for modem or DSL connections, + eth0, or eth1 for cable connection, + ippp+ for a isdn connection. "), [ { label => N("Net Device"), val => \$card_netconnect, list => \@l } ]); $conf{net_interface} = $card_netconnect; |