mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
errors: reword state change failed error message and remove bugzilla link
Reword this message a bit to make it clearer what it means, namely that the state change may have failed for good reasons, but that the element just failed to post a proper error on the bus. This is not an internal GStreamer bug, and we really don't need people to flood bugzilla with bug reports if one such plugin bug ever makes it into the wild.
This commit is contained in:
parent
99a1493e69
commit
32ba8b4fb3
1 changed files with 2 additions and 1 deletions
|
@ -143,7 +143,8 @@ _gst_core_errors_init (void)
|
||||||
TABLE (t, CORE, NOT_IMPLEMENTED,
|
TABLE (t, CORE, NOT_IMPLEMENTED,
|
||||||
N_("Internal GStreamer error: code not implemented." FILE_A_BUG));
|
N_("Internal GStreamer error: code not implemented." FILE_A_BUG));
|
||||||
TABLE (t, CORE, STATE_CHANGE,
|
TABLE (t, CORE, STATE_CHANGE,
|
||||||
N_("Internal GStreamer error: state change failed." FILE_A_BUG));
|
N_("GStreamer error: state change failed and some element failed to "
|
||||||
|
"post a proper error message with the reason for the failure."));
|
||||||
TABLE (t, CORE, PAD, N_("Internal GStreamer error: pad problem." FILE_A_BUG));
|
TABLE (t, CORE, PAD, N_("Internal GStreamer error: pad problem." FILE_A_BUG));
|
||||||
TABLE (t, CORE, THREAD,
|
TABLE (t, CORE, THREAD,
|
||||||
N_("Internal GStreamer error: thread problem." FILE_A_BUG));
|
N_("Internal GStreamer error: thread problem." FILE_A_BUG));
|
||||||
|
|
Loading…
Reference in a new issue