summaryrefslogtreecommitdiffstats
path: root/lib/network/connection
diff options
context:
space:
mode:
authorEugeni Dodonov <eugeni@mandriva.org>2009-03-30 19:28:36 +0000
committerEugeni Dodonov <eugeni@mandriva.org>2009-03-30 19:28:36 +0000
commit2522d9f3a426478610bce756f23fc5e0b61e289f (patch)
treee387d812ddb46dbb9c98dbb0812c43bd35879711 /lib/network/connection
parent1fdaae51b420a3c37edb4cf50c323601766b3816 (diff)
downloaddrakx-net-2522d9f3a426478610bce756f23fc5e0b61e289f.tar
drakx-net-2522d9f3a426478610bce756f23fc5e0b61e289f.tar.gz
drakx-net-2522d9f3a426478610bce756f23fc5e0b61e289f.tar.bz2
drakx-net-2522d9f3a426478610bce756f23fc5e0b61e289f.tar.xz
drakx-net-2522d9f3a426478610bce756f23fc5e0b61e289f.zip
Spelling change for 'Assign host name from DHCP address' option (#41886).
Diffstat (limited to 'lib/network/connection')
-rw-r--r--lib/network/connection/ethernet.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/connection/ethernet.pm b/lib/network/connection/ethernet.pm
index 7f0d65c..fb2ab90 100644
--- a/lib/network/connection/ethernet.pm
+++ b/lib/network/connection/ethernet.pm
@@ -207,7 +207,7 @@ sub get_hostname_settings {
my $auto_hostname = sub { $self->{protocol} eq 'dhcp' && $self->{address}{needhostname} };
[
if_($self->{protocol} eq 'dhcp',
- { text => N("Assign host name from DHCP address"), val => \$self->{address}{needhostname}, type => "bool" },
+ { text => N("Assign host name from DHCP server (or generate a unique one)"), val => \$self->{address}{needhostname}, type => "bool" },
),
{ label => N("Host name"), val => \$self->{address}{hostname}, disabled => $auto_hostname },
];