totem r5793 - in branches/gnome-2-24: . src/backend
- From: pwithnall svn gnome org
- To: svn-commits-list gnome org
- Subject: totem r5793 - in branches/gnome-2-24: . src/backend
- Date: Wed, 29 Oct 2008 14:57:14 +0000 (UTC)
Author: pwithnall
Date: Wed Oct 29 14:57:14 2008
New Revision: 5793
URL: http://svn.gnome.org/viewvc/totem?rev=5793&view=rev
Log:
2008-10-29 Philip Withnall <philip tecnocode co uk>
* src/backend/video-utils.c (totem_time_to_string): Revert
previous
commit, which broke string freeze.
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 14:57:14 2008
@@ -214,17 +214,21 @@
/* 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.
+ * of "%d" if your locale uses localized digits. Do not
+ * translate the "long time format|" part. Remove it from
+ * the translation.
*/
- return g_strdup_printf (C_("long time format", "%d:%02d:%02d"), hour, min, sec);
+ return g_strdup_printf (Q_("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.
+ * "%d" if your locale uses localized digits. Do not
+ * translate the "short time format|" part. Remove it from
+ * the translation.
*/
- return g_strdup_printf (C_("short time format", "%d:%02d"), min, sec);
+ return g_strdup_printf (Q_("short time format|%d:%02d"), min, sec);
}
return NULL;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]