tools/gst-launch.c: Change the printing of the 'buffering...' output to avoid putting...
authorJan Schmidt <thaytan@mad.scientist.com>
Sun, 12 Oct 2008 22:16:00 +0000 (22:16 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Sun, 12 Oct 2008 22:16:00 +0000 (22:16 +0000)
Original commit message from CVS:
* tools/gst-launch.c:
Change the printing of the 'buffering...' output to avoid putting
a \r in a translateable string (flagged by the TP).

ChangeLog
tools/gst-launch.c

index de3ca1b..888983c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-10-12  Jan Schmidt  <jan.schmidt@sun.com>
+
+       * tools/gst-launch.c:
+       Change the printing of the 'buffering...' output to avoid putting
+       a \r in a translateable string (flagged by the TP).
+
 2008-10-10  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
 
        * gst/gstxml.c:
index 72e13a6..7fe0ee9 100644 (file)
@@ -518,7 +518,7 @@ event_loop (GstElement * pipeline, gboolean blocking, GstState target_state)
         gint percent;
 
         gst_message_parse_buffering (message, &percent);
-        fprintf (stderr, _("buffering... %d  \r"), percent);
+        fprintf (stderr, "%s %d%%  \r", _("buffering..."), percent);
 
         /* no state management needed for live pipelines */
         if (is_live)