diff --git a/gnome/applet/applet.glade b/gnome/applet/applet.glade
index db57385304..3ffa8c1b8a 100644
--- a/gnome/applet/applet.glade
+++ b/gnome/applet/applet.glade
@@ -559,7 +559,7 @@ You have chosen to log in to the wireless network '%s'. If you are sure that th
True
None
WEP 128-bit Passphrase
-WEP 64/128-bit hex
+WEP 64/128-bit Hex
WEP 64/128-bit ASCII
False
@@ -774,7 +774,7 @@ A passphrase or encryption key is required to access the wireless network '%s'.<
True
None
WEP 128-bit Passphrase
-WEP 64/128-bit hex
+WEP 64/128-bit Hex
WEP 64/128-bit ASCII
False
diff --git a/gnome/applet/wso-wep-hex.c b/gnome/applet/wso-wep-hex.c
index 6aa1ba9bf2..0bd00de3ae 100644
--- a/gnome/applet/wso-wep-hex.c
+++ b/gnome/applet/wso-wep-hex.c
@@ -132,7 +132,7 @@ WirelessSecurityOption * wso_wep_hex_new (const char *glade_file)
g_return_val_if_fail (glade_file != NULL, NULL);
opt = g_malloc0 (sizeof (WirelessSecurityOption));
- opt->name = g_strdup (_("WEP 64/128-bit hex"));
+ opt->name = g_strdup (_("WEP 64/128-bit Hex"));
opt->widget_name = "wep_key_notebook";
opt->data_free_func = data_free_func;
opt->validate_input_func = validate_input_func;