** Fix for bug #466241

2007-12-04  David Turner  <cillian64@googlemail.com>

	** Fix for bug #466241

	* plugins/exchange-operations/exchange-account-setup.c: (org_gnome_exchange_auth_section):
	Added a mnemonic to the Authentication Type label/dropdown

	* mail/mail-config.glade: Added a mnemonic to "Authentication type"
	in the recieving mail section of configuration



svn path=/trunk/; revision=34643
This commit is contained in:
David Turner
2007-12-04 12:21:49 +00:00
committed by Milan Crha
parent d4eba934b5
commit c896b43ec9
4 changed files with 20 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2007-12-04 David Turner <cillian64@googlemail.com>
** Fix for bug #466241
* mail-config.glade: Added a mnemonic to "Authentication type"
in the recieving mail section of configuration
2007-12-03 Denis Washington <denisw@svn.gnome.org>
** Fix for bug #363644

View File

@ -1610,8 +1610,9 @@ For example: &quot;Work&quot; or &quot;Personal&quot;</property>
<child>
<widget class="GtkLabel" id="label474">
<property name="visible">True</property>
<property name="label" translatable="yes">&lt;span weight=&quot;bold&quot;&gt;Authentication Type&lt;/span&gt;</property>
<property name="use_underline">False</property>
<property name="label" translatable="yes">&lt;span weight=&quot;bold&quot;&gt;_Authentication Type&lt;/span&gt;</property>
<property name="use_underline">True</property>
<property name="mnemonic_widget">source_auth_dropdown</property>
<property name="use_markup">True</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>
<property name="wrap">False</property>

View File

@ -1,3 +1,10 @@
2007-12-04 David Turner <cillian64@googlemail.com>
** Fix for bug #466241
* exchange-account-setup.c: (org_gnome_exchange_auth_section):
Added a mnemonic to the Authentication Type label/dropdown
2007-11-27 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #495123

View File

@ -837,8 +837,8 @@ org_gnome_exchange_auth_section (EPlugin *epl, EConfigHookItemFactoryData *data)
vbox = gtk_vbox_new (FALSE, 6);
label_text = g_strdup_printf("<b>%s</b>", _("Authentication Type"));
auth_label = gtk_label_new (label_text);
label_text = g_strdup_printf("<b>%s</b>", _("_Authentication Type"));
auth_label = gtk_label_new_with_mnemonic (label_text);
g_free (label_text);
gtk_label_set_justify (GTK_LABEL (auth_label), GTK_JUSTIFY_LEFT);
gtk_misc_set_alignment (GTK_MISC (auth_label), 0, 0.5);
@ -848,8 +848,8 @@ org_gnome_exchange_auth_section (EPlugin *epl, EConfigHookItemFactoryData *data)
label_hide = gtk_label_new("\n");
hbox = gtk_hbox_new (FALSE, 6);
dropdown = (GtkComboBox * )gtk_combo_box_new ();
gtk_label_set_mnemonic_widget (GTK_LABEL (auth_label), GTK_WIDGET (dropdown));
button = gtk_button_new_with_mnemonic (_("Ch_eck for Supported Types"));