diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/network/connection/ethernet.pm | 1 | ||||
-rw-r--r-- | lib/network/connection/wireless.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/network/connection/ethernet.pm b/lib/network/connection/ethernet.pm index e0fef99..4c5aded 100644 --- a/lib/network/connection/ethernet.pm +++ b/lib/network/connection/ethernet.pm @@ -9,6 +9,7 @@ use network::tools; our @dhcp_clients = qw(dhclient dhcpcd pump dhcpxd); sub get_type_name() { N("Ethernet") } +sub get_type_description() { N("Wired (Ethernet)") } sub _get_type_icon() { 'ethernet' } sub get_devices() { diff --git a/lib/network/connection/wireless.pm b/lib/network/connection/wireless.pm index c1c37d6..920bb30 100644 --- a/lib/network/connection/wireless.pm +++ b/lib/network/connection/wireless.pm @@ -10,6 +10,7 @@ use log; #- network: ID of the selected network sub get_type_name() { N("Wireless") } +sub get_type_description() { N("Wireless (Wi-Fi)") } sub _get_type_icon() { 'wireless' } sub get_devices { my ($_class, %options) = @_; |