aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-07-31 19:31:01 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-08-11 04:33:35 +0800
commit8b69ea80f6d8d5c59b3696b93f06375e29ef3574 (patch)
treebdc317a3d97a60823749e8d3d7c75100efb98433 /calendar
parent4c3fa97f1ce5b60c231a636eab902651aac57d82 (diff)
downloadgsoc2013-evolution-8b69ea80f6d8d5c59b3696b93f06375e29ef3574.tar
gsoc2013-evolution-8b69ea80f6d8d5c59b3696b93f06375e29ef3574.tar.gz
gsoc2013-evolution-8b69ea80f6d8d5c59b3696b93f06375e29ef3574.tar.bz2
gsoc2013-evolution-8b69ea80f6d8d5c59b3696b93f06375e29ef3574.tar.lz
gsoc2013-evolution-8b69ea80f6d8d5c59b3696b93f06375e29ef3574.tar.xz
gsoc2013-evolution-8b69ea80f6d8d5c59b3696b93f06375e29ef3574.tar.zst
gsoc2013-evolution-8b69ea80f6d8d5c59b3696b93f06375e29ef3574.zip
Bug #325611 - Rephrased translators comments
Diffstat (limited to 'calendar')
-rw-r--r--calendar/gui/e-itip-control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c
index 88abd1b007..9410c19aa9 100644
--- a/calendar/gui/e-itip-control.c
+++ b/calendar/gui/e-itip-control.c
@@ -905,7 +905,7 @@ set_date_label (EItipControl *itip, GtkHTML *html, GtkHTMLStream *html_stream,
e_cal_component_get_dtstart (comp, &datetime);
if (datetime.value) {
- /* For Translators : 'starts' is starts:date implying a task starts on what date */
+ /* For Translators : 'Starts' is part of "Starts: date", showing when the event starts */
str = g_strdup_printf ("<b>%s:</b>", _("Starts"));
write_label_piece (itip, &datetime, buffer, str, "<br>", FALSE);
gtk_html_write (html, html_stream, buffer->str, buffer->len);
@@ -919,7 +919,7 @@ set_date_label (EItipControl *itip, GtkHTML *html, GtkHTMLStream *html_stream,
e_cal_component_get_dtend (comp, &datetime);
if (datetime.value) {
- /* For Translators : 'ends' is ends:date implying a task ends on what date */
+ /* For Translators : 'Ends' is part of "Ends: date", showing when the event ends */
str = g_strdup_printf ("<b>%s:</b>", _("Ends"));
write_label_piece (itip, &datetime, buffer, str, "<br>", FALSE);
gtk_html_write (html, html_stream, buffer->str, buffer->len);