aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/alarm-notify/util.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2006-03-06 17:34:29 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-03-06 17:34:29 +0800
commit93d59c50395b14323cc61509655e16f2f425b2fd (patch)
treed405a0b835f4a19cfb1c45a3232f907e56ac9200 /calendar/gui/alarm-notify/util.c
parenteb1b6e1ab3cff27d9ed7fcbde2347fcb135fdd27 (diff)
downloadgsoc2013-evolution-93d59c50395b14323cc61509655e16f2f425b2fd.tar
gsoc2013-evolution-93d59c50395b14323cc61509655e16f2f425b2fd.tar.gz
gsoc2013-evolution-93d59c50395b14323cc61509655e16f2f425b2fd.tar.bz2
gsoc2013-evolution-93d59c50395b14323cc61509655e16f2f425b2fd.tar.lz
gsoc2013-evolution-93d59c50395b14323cc61509655e16f2f425b2fd.tar.xz
gsoc2013-evolution-93d59c50395b14323cc61509655e16f2f425b2fd.tar.zst
gsoc2013-evolution-93d59c50395b14323cc61509655e16f2f425b2fd.zip
committed fix for bug #328988
svn path=/trunk/; revision=31654
Diffstat (limited to 'calendar/gui/alarm-notify/util.c')
-rw-r--r--calendar/gui/alarm-notify/util.c62
1 files changed, 25 insertions, 37 deletions
diff --git a/calendar/gui/alarm-notify/util.c b/calendar/gui/alarm-notify/util.c
index 9409cc928c..661b0f44c0 100644
--- a/calendar/gui/alarm-notify/util.c
+++ b/calendar/gui/alarm-notify/util.c
@@ -53,47 +53,35 @@ calculate_time (time_t start, time_t end)
{
time_t difference = end - start;
char *str;
+ int hours, minutes;
+ char *times[4];
+ char *joined;
+ int i;
- if (difference < 60) {/* Can't be zero */
- str = g_strdup_printf (_("(%ld seconds)"), difference);
- } else if (difference > 60 && difference < 3600) { /* It will be x minutes y seconds*/
- int minutes, seconds;
- 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));
- } else {
- guint hours, minutes, seconds;
- char *s_hours = NULL, *s_minutes = NULL, *s_seconds = NULL;
-
+ i = 0;
+ if (difference >= 3600) {
hours = difference / 3600;
- minutes = (difference % 3600)/60;
- seconds = difference % 60;
+ difference %= 3600;
-
- if (seconds)
- s_seconds = g_strdup_printf (ngettext(_(" %u second"), _(" %u seconds"), seconds), seconds);
- if (minutes)
- s_minutes = g_strdup_printf (ngettext(_(" %u minute"), _(" %u minutes"), minutes), minutes);
- if (hours)
- s_hours = g_strdup_printf (ngettext(_("%u hour"),_("%u hours"), hours), hours);
-
- if (s_minutes && s_seconds)
- str = g_strconcat ("(", s_hours, s_minutes, s_seconds, ")", NULL);
- else if (s_minutes)
- str = g_strconcat ("(", s_hours, s_minutes, ")", NULL);
- else if (s_seconds)
- str = g_strconcat ("(", s_hours, s_seconds, ")", NULL);
- else
- str = g_strconcat ("(", s_hours, ")", NULL);
+ times[i++] = g_strdup_printf (ngettext("%d hour", "%d hours", hours), hours);
+ }
+ if (difference >= 60) {
+ minutes = difference / 60;
+ difference %= 60;
- g_free (s_hours);
- g_free (s_minutes);
- g_free (s_seconds);
+ 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), (int)difference);
}
- return g_strchug(str);
+ times[i] = NULL;
+ joined = g_strjoinv (" ", times);
+ str = g_strconcat ("(", joined, ")", NULL);
+ while (i > 0)
+ g_free (times[--i]);
+ g_free (joined);
+
+ return str;
}