gst/gsterror.c (_gst_core_errors_init): Use the magic word..
authorAndy Wingo <wingo@pobox.com>
Sat, 16 Jul 2005 14:06:21 +0000 (14:06 +0000)
committerAndy Wingo <wingo@pobox.com>
Sat, 16 Jul 2005 14:06:21 +0000 (14:06 +0000)
Original commit message from CVS:
2005-07-16  Andy Wingo  <wingo@pobox.com>

* gst/gsterror.c (_gst_core_errors_init): Use the magic word..

ChangeLog
docs/gst/tmpl/gstcaps.sgml
gst/gsterror.c

index 3eda9bc..054ef8c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-16  Andy Wingo  <wingo@pobox.com>
+
+       * gst/gsterror.c (_gst_core_errors_init): Use the magic word..
+
 2005-07-16  Wim Taymans  <wim@fluendo.com>
 
        * check/gst/gstbin.c: (GST_START_TEST):
index 9149a47..fdc72d3 100644 (file)
@@ -85,14 +85,6 @@ exactly one.
 @caps: the #GstCaps instance to check
 
 
-<!-- ##### MACRO gst_caps_is_simple ##### -->
-<para>
-
-</para>
-
-@caps: 
-
-
 <!-- ##### MACRO GST_DEBUG_CAPS ##### -->
 <para>
 Convinience macro for prining out the contents of caps with GST_DEBUG().
index 72364e6..a75f6ba 100644 (file)
@@ -58,25 +58,26 @@ _gst_core_errors_init (void)
       N_("GStreamer developers were too lazy to assign an error code "
           "to this error.  Please file a bug."));
   TABLE (t, CORE, NOT_IMPLEMENTED,
-      N_("Internal GStreamer error: code not implemented.  File a bug."));
+      N_
+      ("Internal GStreamer error: code not implemented.  Please file a bug."));
   TABLE (t, CORE, STATE_CHANGE,
-      N_("Internal GStreamer error: state change failed.  File a bug."));
+      N_("Internal GStreamer error: state change failed.  Please file a bug."));
   TABLE (t, CORE, PAD,
-      N_("Internal GStreamer error: pad problem.  File a bug."));
+      N_("Internal GStreamer error: pad problem.  Please file a bug."));
   TABLE (t, CORE, THREAD,
-      N_("Internal GStreamer error: thread problem.  File a bug."));
+      N_("Internal GStreamer error: thread problem.  Please file a bug."));
   TABLE (t, CORE, SCHEDULER,
-      N_("Internal GStreamer error: scheduler problem.  File a bug."));
+      N_("Internal GStreamer error: scheduler problem.  Please file a bug."));
   TABLE (t, CORE, NEGOTIATION,
-      N_("Internal GStreamer error: negotiation problem.  File a bug."));
+      N_("Internal GStreamer error: negotiation problem.  Please file a bug."));
   TABLE (t, CORE, EVENT,
-      N_("Internal GStreamer error: event problem.  File a bug."));
+      N_("Internal GStreamer error: event problem.  Please file a bug."));
   TABLE (t, CORE, SEEK,
-      N_("Internal GStreamer error: seek problem.  File a bug."));
+      N_("Internal GStreamer error: seek problem.  Please file a bug."));
   TABLE (t, CORE, CAPS,
-      N_("Internal GStreamer error: caps problem.  File a bug."));
+      N_("Internal GStreamer error: caps problem.  Please file a bug."));
   TABLE (t, CORE, TAG,
-      N_("Internal GStreamer error: tag problem.  File a bug."));
+      N_("Internal GStreamer error: tag problem.  Please file a bug."));
 
   return t;
 }