diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-07-29 04:06:22 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-07-29 04:06:22 +0800 |
commit | 03fd0adf1d9feb9051e467ae1bda6ad6305e232c (patch) | |
tree | ade901b4427e7b157c3864155854df9c202dbfb3 /plugins | |
parent | d1596cd0505c7cc1851e416f5ab89ed65cea7359 (diff) | |
download | gsoc2013-evolution-03fd0adf1d9feb9051e467ae1bda6ad6305e232c.tar.gz 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/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/subject-thread/subject-thread.c | 2 |
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)); |