totem r5792 - in branches/gnome-2-24: . src/backend
- From: pwithnall svn gnome org
- To: svn-commits-list gnome org
- Subject: totem r5792 - in branches/gnome-2-24: . src/backend
- Date: Wed, 29 Oct 2008 12:04:15 +0000 (UTC)
Author: pwithnall
Date: Wed Oct 29 12:04:14 2008
New Revision: 5792
URL: http://svn.gnome.org/viewvc/totem?rev=5792&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:
branches/gnome-2-24/ChangeLog
branches/gnome-2-24/src/backend/video-utils.c
Modified: branches/gnome-2-24/src/backend/video-utils.c
==============================================================================
--- branches/gnome-2-24/src/backend/video-utils.c (original)
+++ branches/gnome-2-24/src/backend/video-utils.c Wed Oct 29 12:04:14 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]