aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/misc.c')
-rw-r--r--calendar/gui/misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/misc.c b/calendar/gui/misc.c
index f67ab9142e..ed0f401db2 100644
--- a/calendar/gui/misc.c
+++ b/calendar/gui/misc.c
@@ -93,17 +93,17 @@ calculate_time (time_t start,
hours = difference / 3600;
difference %= 3600;
- times[i++] = g_strdup_printf (ngettext("%d hour", "%d hours", hours), hours);
+ times[i++] = g_strdup_printf (ngettext ("%d hour", "%d hours", hours), hours);
}
if (difference >= 60) {
minutes = difference / 60;
difference %= 60;
- times[i++] = g_strdup_printf (ngettext("%d minute", "%d minutes", minutes), minutes);
+ times[i++] = g_strdup_printf (ngettext ("%d minute", "%d minutes", minutes), minutes);
}
if (i == 0 || difference != 0) {
/* TRANSLATORS: here, "second" is the time division (like "minute"), not the ordinal number (like "third") */
- times[i++] = g_strdup_printf (ngettext("%d second", "%d seconds", difference), (gint)difference);
+ times[i++] = g_strdup_printf (ngettext ("%d second", "%d seconds", difference), (gint) difference);
}
times[i] = NULL;