diff options
author | Andre Klapper <a9016009@gmx.de> | 2011-04-05 19:27:18 +0800 |
---|---|---|
committer | Andre Klapper <a9016009@gmx.de> | 2011-04-05 19:28:03 +0800 |
commit | 72cd94b39ab6983d0a0c03826014a4089b05ca3f (patch) | |
tree | a6b4b1a197e76567912e8f0caa9e0d6b52ec9526 /calendar | |
parent | e80b81efedb6057d48735eb4f820001b2f1d94d5 (diff) | |
download | gsoc2013-evolution-72cd94b39ab6983d0a0c03826014a4089b05ca3f.tar.gz gsoc2013-evolution-72cd94b39ab6983d0a0c03826014a4089b05ca3f.tar.zst gsoc2013-evolution-72cd94b39ab6983d0a0c03826014a4089b05ca3f.zip |
Move translator comments so they get picked up
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/print.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c index 631e026cd7..d3b6068ca9 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -607,8 +607,8 @@ instance_cb (ECalComponent *comp, return FALSE; } -/* Translators: These are workday abbreviations, e.g. Su=Sunday and Th=thursday */ const gchar *daynames[] = +/* Translators: These are workday abbreviations, e.g. Su=Sunday and Th=thursday */ { N_("Su"), N_("Mo"), N_("Tu"), N_("We"), N_("Th"), N_("Fr"), N_("Sa") }; @@ -2994,43 +2994,43 @@ print_date_label (GtkPrintContext *context, buffer, 1024, NULL, NULL); if (end > 0 && start > 0) { - /* Translators: This is part of "START to END" text, - * where START and END are date/times. */ write_label_piece ( end, &start, zone, use_24_hour_format, + /* Translators: This is part of "START to END" text, + * where START and END are date/times. */ buffer, 1024, _(" to "), NULL); } if (complete > 0) { if (start > 0) { - /* Translators: This is part of "START to END - * (Completed COMPLETED)", where COMPLETED is a - * completed date/time. */ write_label_piece ( complete, NULL, zone, use_24_hour_format, + /* Translators: This is part of "START to END + * (Completed COMPLETED)", where COMPLETED is a + * completed date/time. */ buffer, 1024, _(" (Completed "), ")"); } else { - /* Translators: This is part of "Completed COMPLETED", - * where COMPLETED is a completed date/time. */ write_label_piece ( complete, &start, zone, use_24_hour_format, + /* Translators: This is part of "Completed COMPLETED", + * where COMPLETED is a completed date/time. */ buffer, 1024, _("Completed "), NULL); } } if (due > 0 && complete == 0) { if (start > 0) { - /* Translators: This is part of "START (Due DUE)", - * where START and DUE are dates/times. */ write_label_piece ( due, NULL, zone, use_24_hour_format, + /* Translators: This is part of "START (Due DUE)", + * where START and DUE are dates/times. */ buffer, 1024, _(" (Due "), ")"); } else { - /* Translators: This is part of "Due DUE", - * where DUE is a date/time due the event - * should be finished. */ write_label_piece ( due, &start, zone, use_24_hour_format, + /* Translators: This is part of "Due DUE", + * where DUE is a date/time due the event + * should be finished. */ buffer, 1024, _("Due "), NULL); } } |