aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2011-04-05 19:27:18 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:54 +0800
commit572183d7859fa631d792343378e7ebd8e22cc7a6 (patch)
tree944d862fe72cadd65be05250735f90372fbfe493 /calendar
parentb16e0c3ca96bc70358d319c8d69d641bd9f47b93 (diff)
downloadgsoc2013-evolution-572183d7859fa631d792343378e7ebd8e22cc7a6.tar
gsoc2013-evolution-572183d7859fa631d792343378e7ebd8e22cc7a6.tar.gz
gsoc2013-evolution-572183d7859fa631d792343378e7ebd8e22cc7a6.tar.bz2
gsoc2013-evolution-572183d7859fa631d792343378e7ebd8e22cc7a6.tar.lz
gsoc2013-evolution-572183d7859fa631d792343378e7ebd8e22cc7a6.tar.xz
gsoc2013-evolution-572183d7859fa631d792343378e7ebd8e22cc7a6.tar.zst
gsoc2013-evolution-572183d7859fa631d792343378e7ebd8e22cc7a6.zip
Move translator comments so they get picked up
Diffstat (limited to 'calendar')
-rw-r--r--calendar/gui/print.c26
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);
}
}