diff options
author | Milan Crha <mcrha@redhat.com> | 2009-07-31 19:31:01 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-07-31 19:31:01 +0800 |
commit | 64f2b1e73e1bcadbf6dbc94ec0447af0063447f1 (patch) | |
tree | 550859c5e380584c31a3a64d46c395c61ad87dba | |
parent | 7f297cb27db1b4e8f4275a064a26c6299d0bc915 (diff) | |
download | gsoc2013-evolution-64f2b1e73e1bcadbf6dbc94ec0447af0063447f1.tar gsoc2013-evolution-64f2b1e73e1bcadbf6dbc94ec0447af0063447f1.tar.gz gsoc2013-evolution-64f2b1e73e1bcadbf6dbc94ec0447af0063447f1.tar.bz2 gsoc2013-evolution-64f2b1e73e1bcadbf6dbc94ec0447af0063447f1.tar.lz gsoc2013-evolution-64f2b1e73e1bcadbf6dbc94ec0447af0063447f1.tar.xz gsoc2013-evolution-64f2b1e73e1bcadbf6dbc94ec0447af0063447f1.tar.zst gsoc2013-evolution-64f2b1e73e1bcadbf6dbc94ec0447af0063447f1.zip |
Bug #325611 - Rephrased translators comments
-rw-r--r-- | calendar/gui/e-itip-control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 6d5c23bf41..85b0accc33 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -896,7 +896,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); @@ -910,7 +910,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); |