From c64e0b6579cd74541775f37207b509b8e1c763a3 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 26 Oct 2009 16:45:17 -0500 Subject: Adding a translators comments for minutes and hours strings. --- src/im-menu-item.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/im-menu-item.c b/src/im-menu-item.c index 35bb3be..9ea7ec7 100644 --- a/src/im-menu-item.c +++ b/src/im-menu-item.c @@ -213,6 +213,10 @@ update_time (ImMenuItem * self) } if (elapsed_minutes < 60) { + /* TRANSLATORS: This string is used to represent the number of minutes + since an IM has occured. It is in the right column + of a menu so being brief is desirable, but one character + is not a requirement. */ timestring = g_strdup_printf(ngettext("%d m", "%d m", elapsed_minutes), elapsed_minutes); } else { guint elapsed_hours = elapsed_minutes / 60; @@ -222,6 +226,10 @@ update_time (ImMenuItem * self) elapsed_hours += 1; } + /* TRANSLATORS: This string is used to represent the number of hours + since an IM has occured. It is in the right column + of a menu so being brief is desirable, but one character + is not a requirement. */ timestring = g_strdup_printf(ngettext("%d h", "%d h", elapsed_hours), elapsed_hours); } -- cgit v1.2.3