From 9e5a8eb5c8bce86b0762886dcda82f15c4ade7cc Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 29 Aug 2012 13:11:35 -0400 Subject: [PATCH] network: Rename "Wireless" to "Wi-Fi" in the UI We support multiple kinds of wireless networks; clarify which kind we're talking about here. Also, add "Wi-Fi" and "Wifi" to the desktop file search keywords (leaving "Wireless" there as well). https://bugzilla.gnome.org/show_bug.cgi?id=677143 --- panels/network/gnome-network-panel.desktop.in.in | 2 +- panels/network/network-wifi.ui | 10 +++++----- panels/network/panel-common.c | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/panels/network/gnome-network-panel.desktop.in.in b/panels/network/gnome-network-panel.desktop.in.in index 6b4787ac1..9b3114713 100644 --- a/panels/network/gnome-network-panel.desktop.in.in +++ b/panels/network/gnome-network-panel.desktop.in.in @@ -14,4 +14,4 @@ X-GNOME-Bugzilla-Component=network X-GNOME-Bugzilla-Version=@VERSION@ X-GNOME-Settings-Panel=network # Translators: those are keywords for the network control-center panel -_Keywords=Network;Wireless;IP;LAN;Proxy; +_Keywords=Network;Wireless;Wi-Fi;Wifi;IP;LAN;Proxy; diff --git a/panels/network/network-wifi.ui b/panels/network/network-wifi.ui index 00c89850d..b55affd72 100644 --- a/panels/network/network-wifi.ui +++ b/panels/network/network-wifi.ui @@ -35,7 +35,7 @@ True False - Wireless Hotspot + Wi-Fi Hotspot @@ -174,7 +174,7 @@ False start True - Wireless + Wi-Fi @@ -335,7 +335,7 @@ True False 0 - Wireless + Wi-Fi end @@ -866,7 +866,7 @@ True False 0 - Wireless Hotspot + Wi-Fi Hotspot @@ -883,7 +883,7 @@ True False 0 - Switch off to connect to a wireless network + Switch off to connect to a Wi-Fi network False diff --git a/panels/network/panel-common.c b/panels/network/panel-common.c index debc95766..707db8daf 100644 --- a/panels/network/panel-common.c +++ b/panels/network/panel-common.c @@ -87,7 +87,7 @@ panel_device_to_localized_string (NMDevice *device) break; case NM_DEVICE_TYPE_WIFI: /* TRANSLATORS: device type */ - value = _("Wireless"); + value = _("Wi-Fi"); break; case NM_DEVICE_TYPE_MODEM: caps = nm_device_modem_get_current_capabilities (NM_DEVICE_MODEM (device));