diff options
Diffstat (limited to 'lib/network')
-rw-r--r-- | lib/network/connection/ethernet.pm | 2 | ||||
-rw-r--r-- | lib/network/drakconnect/edit.pm | 2 |
2 files changed, 2 insertions, 2 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 }, ]; diff --git a/lib/network/drakconnect/edit.pm b/lib/network/drakconnect/edit.pm index 5c62cfe..4e1983b 100644 --- a/lib/network/drakconnect/edit.pm +++ b/lib/network/drakconnect/edit.pm @@ -200,7 +200,7 @@ sub build_notebook { gtksignal_connect($gui->{intf}{DHCP_CLIENT} = Gtk2::ComboBox->new_with_strings(\@network::connection::ethernet::dhcp_clients, $intf->{DHCP_CLIENT} || $network::connection::ethernet::dhcp_clients[0]), changed => $apply)), - gtksignal_connect($gui->{intf_bool}{NEEDHOSTNAME} = Gtk2::CheckButton->new(N("Assign host name from DHCP address")), toggled => $apply), + gtksignal_connect($gui->{intf_bool}{NEEDHOSTNAME} = Gtk2::CheckButton->new(N("Assign host name from DHCP server (or generate a unique one)")), toggled => $apply), gtkpack__(Gtk2::HBox->new(1,0), gtknew('Label_Left', text => N("DHCP host name")), gtksignal_connect($gui->{intf}{DHCP_HOSTNAME} = Gtk2::Entry->new, |