aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoby Wang <boby.wang@sun.com>2006-03-20 14:19:43 +0800
committerLi Yuan <liyuan@src.gnome.org>2006-03-20 14:19:43 +0800
commit4a19f6a83850664c2c64ff0115861f9c31680f06 (patch)
tree6594975d6a97f56da546b3ee86f44e755fc4805f
parentab382e96118f91b2722146dd7c0163042bd46c73 (diff)
downloadgsoc2013-evolution-4a19f6a83850664c2c64ff0115861f9c31680f06.tar
gsoc2013-evolution-4a19f6a83850664c2c64ff0115861f9c31680f06.tar.gz
gsoc2013-evolution-4a19f6a83850664c2c64ff0115861f9c31680f06.tar.bz2
gsoc2013-evolution-4a19f6a83850664c2c64ff0115861f9c31680f06.tar.lz
gsoc2013-evolution-4a19f6a83850664c2c64ff0115861f9c31680f06.tar.xz
gsoc2013-evolution-4a19f6a83850664c2c64ff0115861f9c31680f06.tar.zst
gsoc2013-evolution-4a19f6a83850664c2c64ff0115861f9c31680f06.zip
** Fix for bug #268584
2006-03-20 Boby Wang <boby.wang@sun.com> ** Fix for bug #268584 * gui/dialogs/cal-attachment-select-file.c: (run_selector): * gui/dialogs/cal-attachment.glade: set the accelerate key for "Suggest Suggest automatic display of attachment" svn path=/trunk/; revision=31722
-rw-r--r--calendar/ChangeLog9
-rw-r--r--calendar/gui/dialogs/cal-attachment-select-file.c4
-rw-r--r--calendar/gui/dialogs/cal-attachment.glade2
3 files changed, 12 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index fd4864ca30..32a59efe37 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,12 @@
+2006-03-20 Boby Wang <boby.wang@sun.com>
+
+ ** Fix for bug #268584
+
+ * gui/dialogs/cal-attachment-select-file.c: (run_selector):
+ * gui/dialogs/cal-attachment.glade:
+ set the accelerate key for "Suggest Suggest automatic display of
+ attachment"
+
2006-03-09 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #334003
diff --git a/calendar/gui/dialogs/cal-attachment-select-file.c b/calendar/gui/dialogs/cal-attachment-select-file.c
index 44e6e4ab0c..2b7fb4fdae 100644
--- a/calendar/gui/dialogs/cal-attachment-select-file.c
+++ b/calendar/gui/dialogs/cal-attachment-select-file.c
@@ -93,7 +93,7 @@ run_selector(CompEditor *editor, const char *title, guint32 flags, gboolean *sho
gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (selection), path);
if (showinline_p) {
- showinline = gtk_check_button_new_with_label (_("Suggest automatic display of attachment"));
+ showinline = gtk_check_button_new_with_mnemonic (_("_Suggest automatic display of attachment"));
gtk_widget_show (showinline);
gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (selection), showinline);
}
@@ -112,7 +112,7 @@ run_selector(CompEditor *editor, const char *title, guint32 flags, gboolean *sho
}
if (showinline_p) {
- showinline = gtk_check_button_new_with_label (_("Suggest automatic display of attachment"));
+ showinline = gtk_check_button_new_with_mnemonic (_("_Suggest automatic display of attachment"));
gtk_widget_show (showinline);
gtk_box_pack_end (GTK_BOX (GTK_FILE_SELECTION (selection)->main_vbox), showinline, FALSE, FALSE, 4);
}
diff --git a/calendar/gui/dialogs/cal-attachment.glade b/calendar/gui/dialogs/cal-attachment.glade
index dc228eef70..709ebcab33 100644
--- a/calendar/gui/dialogs/cal-attachment.glade
+++ b/calendar/gui/dialogs/cal-attachment.glade
@@ -207,7 +207,7 @@
<widget class="GtkCheckButton" id="disposition_checkbox">
<property name="visible">True</property>
<property name="can_focus">True</property>
- <property name="label" translatable="yes">Suggest automatic display of attachment</property>
+ <property name="label" translatable="yes">_Suggest automatic display of attachment</property>
<property name="use_underline">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
<property name="active">False</property>