diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-19 21:46:20 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-19 21:46:20 +0000 |
commit | 77f83d2604dc6bcdd58d87c6325ec96760788562 (patch) | |
tree | 97dba4fab4610e1d6b82a09f4722b959642cf8e3 | |
parent | 3d6ca49a58a0073ec88310d20bff0a9a0021af3b (diff) | |
download | drakx-77f83d2604dc6bcdd58d87c6325ec96760788562.tar drakx-77f83d2604dc6bcdd58d87c6325ec96760788562.tar.gz drakx-77f83d2604dc6bcdd58d87c6325ec96760788562.tar.bz2 drakx-77f83d2604dc6bcdd58d87c6325ec96760788562.tar.xz drakx-77f83d2604dc6bcdd58d87c6325ec96760788562.zip |
add strings for future options
-rw-r--r-- | perl-install/network/netconnect.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 906a3315d..c29455277 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -91,7 +91,10 @@ sub detect_timezone() { ); my %l10n_lan_protocols = ( static => N("Manual configuration"), - dhcp => N("Automatic IP (BOOTP/DHCP/Zeroconf)"), + dhcp => N("Automatic IP (BOOTP/DHCP)"), + if_(0, + dhcp_zeroconf => N("Automatic IP (BOOTP/DHCP/Zeroconf)"), + ) ); @@ -557,6 +560,7 @@ Modifying the fields below will override this configuration."), $auto_ip = $l10n_lan_protocols{defined $auto_ip ? ($auto_ip ? 'dhcp' : 'static') :$ethntf->{BOOTPROTO}} || 0; }, name => sub { + N("Zeroconf hostname resolution"); N("Configuring network device %s (driver %s)", $ethntf->{DEVICE}, $module) . "\n\n" . N("The following protocols can be used to configure an ethernet connection. Please choose the one you want to use") }, |