Do not mark empty strings for translation. Fixes #357422.

2006-09-30  Harish Krishnaswamy  <kharish@novell.com>

	* 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
This commit is contained in:
Harish Krishnaswamy
2006-09-30 06:33:42 +00:00
committed by Harish Krishnaswamy
parent 912e44d96c
commit ddb6f95098
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-09-30 Harish Krishnaswamy <kharish@novell.com>
* 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 <dang@gentoo.org>
* em-folder-view.c: ignore marked, empty selections when replying.

View File

@ -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;