From e3b8d0357fca56470ff2a649821fd587955c4cb2 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Sat, 11 Feb 2006 19:14:50 +0000 Subject: adding translator comments to "second" strings to distinguish ordinal 2006-02-11 Andre Klapper * gui/dialogs/recurrence-page.c: * gui/alarm-notify/util.c: * gui/misc.c: adding translator comments to "second" strings to distinguish ordinal numbers and time divisions. Fixes bug 328988. svn path=/trunk/; revision=31484 --- calendar/gui/misc.c | 1 + 1 file changed, 1 insertion(+) (limited to 'calendar/gui/misc.c') 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)); -- cgit