aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2005-12-17 19:53:30 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2005-12-17 19:53:30 +0800
commit172ad11003eec1e4d49ba262853f11910d47616f (patch)
treedbe6f8adbf1c4cde1fb81f2b0de1cf669173566b
parentf6734b1d17682ed7b6cfc046d3cad45e6a28c951 (diff)
downloadgsoc2013-evolution-172ad11003eec1e4d49ba262853f11910d47616f.tar
gsoc2013-evolution-172ad11003eec1e4d49ba262853f11910d47616f.tar.gz
gsoc2013-evolution-172ad11003eec1e4d49ba262853f11910d47616f.tar.bz2
gsoc2013-evolution-172ad11003eec1e4d49ba262853f11910d47616f.tar.lz
gsoc2013-evolution-172ad11003eec1e4d49ba262853f11910d47616f.tar.xz
gsoc2013-evolution-172ad11003eec1e4d49ba262853f11910d47616f.tar.zst
gsoc2013-evolution-172ad11003eec1e4d49ba262853f11910d47616f.zip
** Fixes bug #324094
2005-12-15 Srinivasa Ragavan <sragavan@novell.com> ** Fixes bug #324094 * gui/e-calendar-view.c: (e_calendar_view_get_tooltips): Added comments to few strings for translation. svn path=/trunk/; revision=30798
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/gui/e-calendar-view.c5
2 files changed, 11 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index f9d8472442..a6aec0e39b 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,12 @@
2005-12-15 Srinivasa Ragavan <sragavan@novell.com>
+ ** Fixes bug #324094
+
+ * gui/e-calendar-view.c: (e_calendar_view_get_tooltips): Added
+ comments to few strings for translation.
+
+2005-12-15 Srinivasa Ragavan <sragavan@novell.com>
+
* gui/e-week-view.c: (e_week_view_reshape_event_span),
(e_week_view_on_text_item_event): Added event-num to the
CanvasItem to be picked up by the event handler. This causes
@@ -7,7 +14,6 @@
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.
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c
index c529729444..01fdf973a4 100644
--- a/calendar/gui/e-calendar-view.c
+++ b/calendar/gui/e-calendar-view.c
@@ -1957,6 +1957,7 @@ e_calendar_view_get_tooltips (ECalendarViewEventData *data)
GtkWidget *hbox = gtk_hbox_new (FALSE, 0);
ptr = strchr(organiser.value, ':');
ptr++;
+ /* To Translators: It will display "Organiser: NameOfTheUser <email@ofuser.com>" */
tmp = g_strdup_printf (_("Organizer: %s <%s>"), organiser.cn, ptr);
label = gtk_label_new (tmp);
gtk_box_pack_start ((GtkBox *)hbox, label, FALSE, FALSE, 0);
@@ -1970,6 +1971,7 @@ e_calendar_view_get_tooltips (ECalendarViewEventData *data)
e_cal_component_get_location (newcomp, &str);
if (str) {
+ /* To Translators: It will display "Location: PlaceOfTheMeeting" */
tmp = g_strdup_printf (_("Location: %s"), str);
label = gtk_label_new (NULL);
gtk_label_set_markup ((GtkLabel *)label, tmp);
@@ -1999,7 +2001,8 @@ e_calendar_view_get_tooltips (ECalendarViewEventData *data)
tmp1 = get_label(dtstart.value);
tmp = calculate_time (t_start, t_end);
-
+
+ /* To Translators: It will display "Time: ActualStartDateAndTime (DurationOfTheMeeting)"*/
tmp2 = g_strdup_printf(_("Time: %s %s"), tmp1, tmp);
hbox = gtk_hbox_new (FALSE, 0);
gtk_box_pack_start ((GtkBox *)hbox, gtk_label_new_with_mnemonic (tmp2), FALSE, FALSE, 0);