diff options
-rw-r--r-- | libempathy/empathy-time.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libempathy/empathy-time.c b/libempathy/empathy-time.c index a482f4dc3..64350404c 100644 --- a/libempathy/empathy-time.c +++ b/libempathy/empathy-time.c @@ -134,7 +134,6 @@ empathy_time_to_string_relative (time_t then) if (seconds > 0) { if (seconds < 60) { - seconds /= 60; return g_strdup_printf (ngettext ("%d second ago", "%d seconds ago", seconds), seconds); } @@ -160,6 +159,6 @@ empathy_time_to_string_relative (time_t then) } } else { - return g_strdup ("in the future"); + return g_strdup (_("in the future")); } } |