totem r5791 - in trunk: . src/backend



Author: pwithnall
Date: Wed Oct 29 12:03:24 2008
New Revision: 5791
URL: http://svn.gnome.org/viewvc/totem?rev=5791&view=rev

Log:
2008-10-29  Philip Withnall  <philip tecnocode co uk>

	* src/backend/video-utils.c (totem_time_to_string): Use C_() 
instead
	of Q_() to separate translation context from strings.
	(Closes: #513627)



Modified:
   trunk/ChangeLog
   trunk/src/backend/video-utils.c

Modified: trunk/src/backend/video-utils.c
==============================================================================
--- trunk/src/backend/video-utils.c	(original)
+++ trunk/src/backend/video-utils.c	Wed Oct 29 12:03:24 2008
@@ -214,21 +214,17 @@
 		/* Translators: This is a time format, like "9:05:02" for 9
 		 * hours, 5 minutes, and 2 seconds. You may change ":" to
 		 * the separator that your locale uses or use "%Id" instead
-		 * of "%d" if your locale uses localized digits. Do not
-		 * translate the "long time format|" part. Remove it from
-		 * the translation.
+		 * of "%d" if your locale uses localized digits.
 		 */
-		return g_strdup_printf (Q_("long time format|%d:%02d:%02d"), hour, min, sec);
+		return g_strdup_printf (C_("long time format", "%d:%02d:%02d"), hour, min, sec);
 	} else {
 		/* minutes:seconds */
 		/* Translators: This is a time format, like "5:02" for 5
 		 * minutes and 2 seconds. You may change ":" to the
 		 * separator that your locale uses or use "%Id" instead of
-		 * "%d" if your locale uses localized digits. Do not
-		 * translate the "short time format|" part. Remove it from
-		 * the translation.
+		 * "%d" if your locale uses localized digits.
 		 */
-		return g_strdup_printf (Q_("short time format|%d:%02d"), min, sec);
+		return g_strdup_printf (C_("short time format", "%d:%02d"), min, sec);
 	}
 
 	return NULL;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]