← Back to team overview

ayatana-commits team mailing list archive

[Branch ~indicator-applet-developers/indicator-messages/trunk] Rev 153: Adding translator comments for the hours and minutes strings.

 

Merge authors:
  Ted Gould (ted)
Related merge proposals:
  https://code.launchpad.net/~ted/indicator-messages/translator-comments/+merge/13994
  proposed by: Ted Gould (ted)
  review: Approve - Neil J. Patel (njpatel)
------------------------------------------------------------
revno: 153 [merge]
committer: Ted Gould <ted@xxxxxxxxxxxxx>
branch nick: trunk
timestamp: Mon 2009-10-26 21:03:23 -0500
message:
  Adding translator comments for the hours and minutes strings.
modified:
  src/im-menu-item.c


--
lp:indicator-messages
https://code.launchpad.net/~indicator-applet-developers/indicator-messages/trunk

Your team ayatana-commits is subscribed to branch lp:indicator-messages.
To unsubscribe from this branch go to https://code.launchpad.net/~indicator-applet-developers/indicator-messages/trunk/+edit-subscription.
=== modified file 'src/im-menu-item.c'
--- src/im-menu-item.c	2009-09-29 21:46:18 +0000
+++ src/im-menu-item.c	2009-10-26 21:45:17 +0000
@@ -213,6 +213,10 @@
 	}
 
 	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 @@
 			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);
 	}