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:
committed by
Harish Krishnaswamy
parent
912e44d96c
commit
ddb6f95098
@ -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.
|
||||
|
||||
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user