gst/gsterror.c: Fix descriptions (#164479).

Original commit message from CVS:
* gst/gsterror.c: (_gst_library_errors_init):
Fix descriptions (#164479).
This commit is contained in:
Ronald S. Bultje 2005-03-12 23:25:00 +00:00
parent f827754418
commit f0423be7c0
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-03-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* gst/gsterror.c: (_gst_library_errors_init):
Fix descriptions (#164479).
2005-03-12 Benjamin Otte <otte@gnome.org>
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>

View file

@ -96,7 +96,8 @@ _gst_library_errors_init (void)
"to this error. Please file a bug."));
TABLE (t, LIBRARY, INIT, N_("Could not initialize 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 set settings."));
TABLE (t, LIBRARY, ENCODE, N_("Failed to encode image."));
return t;
}