jack: added translatable text for server not found error
authorTristan Matthews <le.businessman@gmail.com>
Thu, 9 Sep 2010 18:49:06 +0000 (14:49 -0400)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 2 Jan 2011 14:30:08 +0000 (14:30 +0000)
ext/jack/Makefile.am
ext/jack/gstjackaudiosink.c
ext/jack/gstjackaudiosrc.c

index dd31d77..ede7059 100644 (file)
@@ -2,7 +2,7 @@
 plugin_LTLIBRARIES = libgstjack.la
 
 libgstjack_la_SOURCES = gstjackutil.c gstjack.c gstjackaudiosrc.c gstjackaudiosink.c gstjackaudioclient.c
-libgstjack_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(JACK_CFLAGS)
+libgstjack_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(JACK_CFLAGS)
 libgstjack_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) $(JACK_LIBS)
 libgstjack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
 libgstjack_la_LIBTOOLFLAGS = --tag=disable-static
index e902823..8f23791 100644 (file)
  * Last reviewed on 2006-11-30 (0.10.4)
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <gst/gst-i18n-plugin.h>
 #include <stdlib.h>
 #include <string.h>
 
@@ -350,7 +355,8 @@ could_not_open:
   {
     if (status & JackServerFailed) {
       GST_ELEMENT_ERROR (sink, RESOURCE, NOT_FOUND,
-          (NULL), ("Cannot connect to the Jack server (status %d)", status));
+          (_("Jack server not found")),
+          ("Cannot connect to the Jack server (status %d)", status));
     } else {
       GST_ELEMENT_ERROR (sink, RESOURCE, OPEN_WRITE,
           (NULL), ("Jack client open error (status %d)", status));
index 1492b3e..a97cea0 100644 (file)
  * Last reviewed on 2008-07-22 (0.10.4)
  */
 
-#include <gst/gst.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <gst/gst-i18n-plugin.h>
 #include <stdlib.h>
 #include <string.h>
 
@@ -357,7 +361,8 @@ could_not_open:
   {
     if (status & JackServerFailed) {
       GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND,
-          (NULL), ("Cannot connect to the Jack server (status %d)", status));
+          (_("Jack server not found")),
+          ("Cannot connect to the Jack server (status %d)", status));
     } else {
       GST_ELEMENT_ERROR (src, RESOURCE, OPEN_WRITE,
           (NULL), ("Jack client open error (status %d)", status));
@@ -670,7 +675,6 @@ static GstRingBuffer *gst_jack_audio_src_create_ringbuffer (GstBaseAudioSrc *
 static void
 gst_jack_audio_src_base_init (gpointer gclass)
 {
-
   GstElementClass *element_class = GST_ELEMENT_CLASS (gclass);
 
   gst_element_class_add_pad_template (element_class,