diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-04-26 21:50:42 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-04-26 21:50:42 +0800 |
commit | 05edabda2e3ea9c2b4c6790e6bb4912c8387977f (patch) | |
tree | ceb556e3e799416026f0e7a7c3be6f8a60dbbe3b /calendar/gui | |
parent | 8fb08c993325b697990544511fc875104e5c09da (diff) | |
download | gsoc2013-evolution-05edabda2e3ea9c2b4c6790e6bb4912c8387977f.tar.gz gsoc2013-evolution-05edabda2e3ea9c2b4c6790e6bb4912c8387977f.tar.zst gsoc2013-evolution-05edabda2e3ea9c2b4c6790e6bb4912c8387977f.zip |
Committing fix for bug #328194
svn path=/trunk/; revision=31908
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/calendar-setup.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/calendar/gui/dialogs/calendar-setup.c b/calendar/gui/dialogs/calendar-setup.c index 5a5ee80f28..e413856a31 100644 --- a/calendar/gui/dialogs/calendar-setup.c +++ b/calendar/gui/dialogs/calendar-setup.c @@ -285,12 +285,11 @@ eccp_general_offline (EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, row = ((GtkTable*)parent)->nrows; if (sdialog->source_type == E_CAL_SOURCE_TYPE_EVENT) - offline_setting = gtk_check_button_new_with_label (_("Copy calendar contents locally for offline operation")); + offline_setting = gtk_check_button_new_with_mnemonic (_("Cop_y calendar contents locally for offline operation")); else if (sdialog->source_type == E_CAL_SOURCE_TYPE_TODO) - - offline_setting = gtk_check_button_new_with_label (_("Copy task list contents locally for offline operation")); + offline_setting = gtk_check_button_new_with_mnemonic (_("Cop_y task list contents locally for offline operation")); else if(sdialog->source_type == E_CAL_SOURCE_TYPE_JOURNAL) - offline_setting = gtk_check_button_new_with_label(_("Copy memo list contents locally for offline operation")); + offline_setting = gtk_check_button_new_with_mnemonic (_("Cop_y memo list contents locally for offline operation")); gtk_widget_show (offline_setting); g_signal_connect (offline_setting, "toggled", G_CALLBACK (offline_status_changed_cb), sdialog); |