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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/calendar/gui/misc.c b/calendar/gui/misc.c
index 5ab2739525..2bcc9e1ab5 100644
--- a/calendar/gui/misc.c
+++ b/calendar/gui/misc.c
@@ -108,6 +108,7 @@ calculate_time (time_t start, time_t end)
minutes = difference / 60;
seconds = difference % 60;
if (seconds)
+ /* TRANSLATORS: here, "second" is the time division (like "minute"), not the ordinal number (like "third") */
str = g_strdup_printf (_("(%d %s %d %s)"), minutes, ngettext(_("minute"), _("minutes"), minutes), seconds, ngettext(_("second"), _("seconds"), seconds));
else
str = g_strdup_printf (_("(%d %s)"), minutes, ngettext(_("minute"), _("minutes"), minutes));