summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2018-11-08 18:50:43 +0100
committerLubomir Rintel <lkundrak@v3.sk>2019-02-27 10:13:38 +0100
commit1ff9fd637285d050589067e95f2ece6e531b853c (patch)
tree674b12a33d69b05d4c88d2fd6eb34ca055b97a14
parent253012522da7f4d57d34ef4c09d396a5dd605d91 (diff)
downloadnetwork-manager-applet-1ff9fd637285d050589067e95f2ece6e531b853c.tar.gz
applet: fix WiFi to Wi-Fi
-rw-r--r--src/applet-device-wifi.c4
-rw-r--r--src/applet-dialogs.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/applet-device-wifi.c b/src/applet-device-wifi.c
index a95d1f52..ecb4051f 100644
--- a/src/applet-device-wifi.c
+++ b/src/applet-device-wifi.c
@@ -363,7 +363,7 @@ get_ssid_utf8 (NMAccessPoint *ap)
/* List known trojan networks that should never be shown to the user */
static const char *blacklisted_ssids[] = {
/* http://www.npr.org/templates/story/story.php?storyId=130451369 */
- "Free Public WiFi",
+ "Free Public Wi-Fi",
NULL
};
@@ -383,7 +383,7 @@ clamp_ap_to_bssid (NMAccessPoint *ap, NMSettingWireless *s_wifi)
/* For a certain list of known ESSIDs which are commonly preset by ISPs
* and manufacturers and often unchanged by users, lock the connection
* to the BSSID so that we don't try to auto-connect to your grandma's
- * neighbor's WiFi.
+ * neighbor's Wi-Fi.
*/
str_bssid = nm_access_point_get_bssid (ap);
diff --git a/src/applet-dialogs.c b/src/applet-dialogs.c
index 2824a765..95f8b7c1 100644
--- a/src/applet-dialogs.c
+++ b/src/applet-dialogs.c
@@ -504,7 +504,7 @@ info_dialog_add_page (GtkNotebook *notebook,
str = g_strdup_printf (_("Ethernet (%s)"), iface);
show_security = TRUE;
} else if (NM_IS_DEVICE_WIFI (device)) {
- str = g_strdup_printf (_("802.11 WiFi (%s)"), iface);
+ str = g_strdup_printf (_("802.11 Wi-Fi (%s)"), iface);
show_security = TRUE;
} else if (NM_IS_DEVICE_MODEM (device)) {
NMDeviceModemCapabilities caps;