gst/gsterror.c: Add a missing error string.

Original commit message from CVS:

* gst/gsterror.c: (_gst_stream_errors_init):
Add a missing error string.
This commit is contained in:
Thomas Vander Stichele 2006-05-08 15:52:28 +00:00
parent 9d3f628b81
commit ac7251e67b
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2006-05-08 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gsterror.c: (_gst_stream_errors_init):
Add a missing error string.
2006-05-08 Jan Schmidt <thaytan@mad.scientist.com>
* libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment):

View file

@ -232,6 +232,7 @@ _gst_stream_errors_init (void)
TABLE (t, STREAM, ENCODE, N_("Could not encode stream."));
TABLE (t, STREAM, DEMUX, N_("Could not demultiplex stream."));
TABLE (t, STREAM, MUX, N_("Could not multiplex stream."));
TABLE (t, STREAM, FORMAT, N_("The stream is in the wrong format."));
return t;
}