summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-04-20 07:57:54 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-04-20 07:57:54 +0000
commit9fd10d32c4391fb079bb1daf888fc55ea2ecf727 (patch)
tree809e2de09d5f0afd6f579afdb633d3f39f4e9225
parent6c9771c5870b3d90ee2e134a915431e65bc33c9b (diff)
downloaddrakx-9fd10d32c4391fb079bb1daf888fc55ea2ecf727.tar
drakx-9fd10d32c4391fb079bb1daf888fc55ea2ecf727.tar.gz
drakx-9fd10d32c4391fb079bb1daf888fc55ea2ecf727.tar.bz2
drakx-9fd10d32c4391fb079bb1daf888fc55ea2ecf727.tar.xz
drakx-9fd10d32c4391fb079bb1daf888fc55ea2ecf727.zip
(build_notebook) do not assume there's not language that want to
translate the "dhcp" string as in other code
-rwxr-xr-xperl-install/standalone/drakconnect2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect
index f29e9b16b..3bca72a79 100755
--- a/perl-install/standalone/drakconnect
+++ b/perl-install/standalone/drakconnect
@@ -356,7 +356,7 @@ sub build_notebook {
);
if ($is_ethernet) {
my $proto = $gui->{intf}{BOOTPROTO};
- $proto->{protocols} = { static => N("static"), dhcp => 'DHCP' };
+ $proto->{protocols} = { static => N("static"), dhcp => N("DHCP") };
$proto->set_popdown_strings(@{$proto->{protocols}}{qw(dhcp static)});
$proto->set_text($proto->{protocols}{$intf->{BOOTPROTO}});
foreach ($gui->{intf}{IPADDR}, $gui->{intf}{NETMASK}, $gui->{netc}{GATEWAY}) {