2005-11-02 Robert Love <rml@novell.com>

* gnome/applet/applet.c: Make menu item "Enable Wireless" not "Wireless
	  Enabled", as checkboxes should be actions/commands not positive
	  statements, otherwise they are confusing in the unselected case.  See
	  examples in GNOME HIG, Chapter 6.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1091 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Robert Love 2005-11-02 18:00:20 +00:00 committed by Robert Love
parent aec2ccd0fa
commit 3dc658143d
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2005-11-02 Robert Love <rml@novell.com>
* gnome/applet/applet.c: Make menu item "Enable Wireless" not "Wireless
Enabled", as checkboxes should be actions/commands not positive
statements, otherwise they are confusing in the unselected case. See
examples in GNOME HIG, Chapter 6.
2005-11-02 Robert Love <rml@novell.com>
* gnome/applet/applet.c: When wireless is disabled, act it. Do not

View file

@ -2067,8 +2067,8 @@ static GtkWidget *nmwa_context_menu_create (NMWirelessApplet *applet)
menu = gtk_menu_new ();
/* Wireless Enabled item */
applet->stop_wireless_item = gtk_check_menu_item_new_with_mnemonic (_("_Wireless Enabled"));
/* 'Enable Wireless' item */
applet->stop_wireless_item = gtk_check_menu_item_new_with_mnemonic (_("Enable _Wireless"));
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (applet->stop_wireless_item), TRUE);
g_signal_connect (G_OBJECT (applet->stop_wireless_item), "activate", G_CALLBACK (nmwa_set_wireless_enabled_cb), applet);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), applet->stop_wireless_item);