summaryrefslogtreecommitdiff
path: root/libnm-util/nm-setting-wired.c
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-06-04 17:25:52 -0400
committerDan Winship <danw@gnome.org>2014-06-19 17:45:01 -0400
commit8487a4490c96a71cf1ee590b80716c5868233f64 (patch)
tree1f51b2bf25092653d84811e7d15f5e5162b7d2b3 /libnm-util/nm-setting-wired.c
parent7475d8c28d43bc85231f89d0537fafe6f8c3dcaf (diff)
downloadNetworkManager-8487a4490c96a71cf1ee590b80716c5868233f64.tar.gz
libnm-util, libnm-glib: be consistent about "Wi-Fi", "Ethernet", "InfiniBand" in docs
We made the UIs consistent last year, but missed the documentation. Fix the docs to also consistently use "Wi-Fi" rather than "WiFi", "Wifi", "wifi", or "WiFI"; "Ethernet" rather than "ethernet"; and "InfiniBand" rather than "Infiniband".
Diffstat (limited to 'libnm-util/nm-setting-wired.c')
-rw-r--r--libnm-util/nm-setting-wired.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libnm-util/nm-setting-wired.c b/libnm-util/nm-setting-wired.c
index 50c7e75688..b41ab7174b 100644
--- a/libnm-util/nm-setting-wired.c
+++ b/libnm-util/nm-setting-wired.c
@@ -615,7 +615,7 @@ verify (NMSetting *setting, GSList *all_settings, GError **error)
g_set_error (error,
NM_SETTING_WIRED_ERROR,
NM_SETTING_WIRED_ERROR_INVALID_PROPERTY,
- _("'%s' is not a valid ethernet port value"),
+ _("'%s' is not a valid Ethernet port value"),
priv->port);
g_prefix_error (error, "%s.%s: ", NM_SETTING_WIRED_SETTING_NAME, NM_SETTING_WIRED_PORT);
return FALSE;
@@ -939,7 +939,7 @@ nm_setting_wired_class_init (NMSettingWiredClass *setting_class)
/**
* NMSettingWired:mac-address:
*
- * If specified, this connection will only apply to the ethernet device
+ * If specified, this connection will only apply to the Ethernet device
* whose permanent MAC address matches. This property does not change the MAC address
* of the device (i.e. MAC spoofing).
**/
@@ -948,7 +948,7 @@ nm_setting_wired_class_init (NMSettingWiredClass *setting_class)
_nm_param_spec_specialized (NM_SETTING_WIRED_MAC_ADDRESS,
"Device MAC Address",
"If specified, this connection will only apply to "
- "the ethernet device whose permanent MAC address matches. "
+ "the Ethernet device whose permanent MAC address matches. "
"This property does not change the MAC address "
"of the device (i.e. MAC spoofing).",
DBUS_TYPE_G_UCHAR_ARRAY,
@@ -973,7 +973,7 @@ nm_setting_wired_class_init (NMSettingWiredClass *setting_class)
/**
* NMSettingWired:mac-address-blacklist:
*
- * If specified, this connection will never apply to the ethernet device
+ * If specified, this connection will never apply to the Ethernet device
* whose permanent MAC address matches an address in the list. Each
* MAC address is in the standard hex-digits-and-colons notation
* (00:11:22:33:44:55).
@@ -983,7 +983,7 @@ nm_setting_wired_class_init (NMSettingWiredClass *setting_class)
_nm_param_spec_specialized (NM_SETTING_WIRED_MAC_ADDRESS_BLACKLIST,
"MAC Address Blacklist",
"If specified, this connection will never apply to "
- "the ethernet device whose permanent MAC address matches "
+ "the Ethernet device whose permanent MAC address matches "
"an address in the list. Each MAC address is in the "
"standard hex-digits-and-colons notation (00:11:22:33:44:55).",
DBUS_TYPE_G_LIST_OF_STRING,