From ddb6f950982909e873f770f2c4312e46037f3f87 Mon Sep 17 00:00:00 2001 From: Harish Krishnaswamy Date: Sat, 30 Sep 2006 06:33:42 +0000 Subject: Do not mark empty strings for translation. Fixes #357422. 2006-09-30 Harish Krishnaswamy * em-format-html-display.c: (em_format_html_get_search_dialog): Do not mark empty strings for translation. Fixes #357422. svn path=/trunk/; revision=32834 --- mail/ChangeLog | 5 +++++ mail/em-format-html-display.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 22889a7ac3..e9c4d2b70e 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2006-09-30 Harish Krishnaswamy + + * em-format-html-display.c: (em_format_html_get_search_dialog): + Do not mark empty strings for translation. Fixes #357422. + 2006-09-29 Daniel Gryniewicz * em-folder-view.c: ignore marked, empty selections when replying. diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index 63069d3c87..694ce3c952 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -681,7 +681,7 @@ em_format_html_get_search_dialog (EMFormatHTMLDisplay *efhd) gtk_widget_show (p->search_case_check); gtk_box_pack_start ((GtkBox *)(hbox2), p->search_case_check, FALSE, FALSE, 0); - p->search_matches_label = gtk_label_new (_("")); + p->search_matches_label = gtk_label_new (""); gtk_widget_show (p->search_matches_label); gtk_box_pack_start ((GtkBox *)(hbox2), p->search_matches_label, TRUE, TRUE, 0); p->search_dialog = (GtkWidget *)hbox2; -- cgit v1.2.3