aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-07-29 04:06:22 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-07-29 04:06:22 +0800
commit03fd0adf1d9feb9051e467ae1bda6ad6305e232c (patch)
treeade901b4427e7b157c3864155854df9c202dbfb3 /plugins
parentd1596cd0505c7cc1851e416f5ab89ed65cea7359 (diff)
downloadgsoc2013-evolution-03fd0adf1d9feb9051e467ae1bda6ad6305e232c.tar
gsoc2013-evolution-03fd0adf1d9feb9051e467ae1bda6ad6305e232c.tar.gz
gsoc2013-evolution-03fd0adf1d9feb9051e467ae1bda6ad6305e232c.tar.bz2
gsoc2013-evolution-03fd0adf1d9feb9051e467ae1bda6ad6305e232c.tar.lz
gsoc2013-evolution-03fd0adf1d9feb9051e467ae1bda6ad6305e232c.tar.xz
gsoc2013-evolution-03fd0adf1d9feb9051e467ae1bda6ad6305e232c.tar.zst
gsoc2013-evolution-03fd0adf1d9feb9051e467ae1bda6ad6305e232c.zip
** Fix for bug #428123 from Lucky
svn path=/trunk/; revision=33873
Diffstat (limited to 'plugins')
-rw-r--r--plugins/subject-thread/ChangeLog6
-rw-r--r--plugins/subject-thread/subject-thread.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/subject-thread/ChangeLog b/plugins/subject-thread/ChangeLog
index 71093fe341..3c647ab8f8 100644
--- a/plugins/subject-thread/ChangeLog
+++ b/plugins/subject-thread/ChangeLog
@@ -1,3 +1,9 @@
+2007-07-29 Srinivasa Ragavan <sragavan@novell.com>
+
+ ** Fix for bug #428123 from Lucky
+
+ * subject-thread.c: (org_gnome_subject_thread_factory):
+
2007-04-02 Sankar P <psankar@novell.com>
* Committed on behalf of Gilles Dartiguelongue <dartigug@esiee.fr>
diff --git a/plugins/subject-thread/subject-thread.c b/plugins/subject-thread/subject-thread.c
index a412b08ec5..75cadd9af7 100644
--- a/plugins/subject-thread/subject-thread.c
+++ b/plugins/subject-thread/subject-thread.c
@@ -51,7 +51,7 @@ org_gnome_subject_thread_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_
EMConfigTargetPrefs *target = (EMConfigTargetPrefs *) hook_data->config->target;
/* Create the checkbox we will display, complete with mnemonic that is unique in the dialog */
- check = gtk_check_button_new_with_mnemonic (_("Fall back to threading messages by sub_ject"));
+ check = gtk_check_button_new_with_mnemonic (_("F_all back to threading messages by subject"));
/* Set the toggle button to the current gconf setting */
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check), gconf_client_get_bool (target->gconf, GCONF_KEY, NULL));