gst/gsterror.c: Fix error message for GST_LIBRARY_ERROR_SETTINGS (feel free to come up with something better).

Original commit message from CVS:
* gst/gsterror.c: (_gst_library_errors_init):
Fix error message for GST_LIBRARY_ERROR_SETTINGS (feel free to come
up with something better).
This commit is contained in:
Tim-Philipp Müller 2006-10-13 09:37:59 +00:00
parent 8365e24805
commit f038abdb38
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-10-13 Tim-Philipp Müller <tim at centricular dot net>
* gst/gsterror.c: (_gst_library_errors_init):
Fix error message for GST_LIBRARY_ERROR_SETTINGS (feel free to come
up with something better).
2006-10-12 Tim-Philipp Müller <tim at centricular dot net> 2006-10-12 Tim-Philipp Müller <tim at centricular dot net>
* win32/vs6/libgstreamer.dsp: * win32/vs6/libgstreamer.dsp:

View file

@ -179,7 +179,7 @@ _gst_library_errors_init (void)
"to this error." FILE_A_BUG)); "to this error." FILE_A_BUG));
TABLE (t, LIBRARY, INIT, N_("Could not initialize supporting library.")); TABLE (t, LIBRARY, INIT, N_("Could not initialize supporting library."));
TABLE (t, LIBRARY, SHUTDOWN, N_("Could not close supporting library.")); TABLE (t, LIBRARY, SHUTDOWN, N_("Could not close supporting library."));
TABLE (t, LIBRARY, SETTINGS, N_("Could not close supporting library.")); TABLE (t, LIBRARY, SETTINGS, N_("Could not configure supporting library."));
return t; return t;
} }