Commited fix to remove markup from translation and added few notes to

2005-12-15  Srinivasa Ragavan  <sragavan@novell.com>

	* Commited fix to remove markup from translation and added few
	notes to translaters, on what will be displayed.

svn path=/trunk/; revision=30783
This commit is contained in:
Srinivasa Ragavan
2005-12-15 12:50:24 +00:00
committed by Srinivasa Ragavan
parent 8757f8253d
commit 14aa169551
2 changed files with 16 additions and 1 deletions
+7
View File
@@ -1,3 +1,10 @@
2005-12-15 Srinivasa Ragavan <sragavan@novell.com>
reviewed by: <delete if not using a buddy>
* gui/e-calendar-view.c: (e_calendar_view_get_tooltips): Removed
markup from translatable strings.
2005-12-15 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #324058
+9 -1
View File
@@ -1901,6 +1901,14 @@ get_label (struct icaltimetype *tt)
return g_strdup (buffer);
}
/*
* It is expected to show the tooltips in this below format
*
* <B>SUBJECT OF THE MEETING</B>
* Organiser: NameOfTheUser<email@ofuser.com>
* Location: PlaceOfTheMeeting
* Time : DateAndTime (xx Minutes)
*/
gboolean
e_calendar_view_get_tooltips (ECalendarViewEventData *data)
@@ -1928,7 +1936,7 @@ e_calendar_view_get_tooltips (ECalendarViewEventData *data)
box = gtk_vbox_new (FALSE, 0);
str = icalcomponent_get_summary (pevent->comp_data->icalcomp);
tmp = g_strdup_printf (_("<b>%s</b>"), str);
tmp = g_strdup_printf ("<b>%s</b>", str);
label = gtk_label_new (NULL);
gtk_label_set_line_wrap ((GtkLabel *)label, TRUE);
gtk_label_set_markup ((GtkLabel *)label, tmp);