summaryrefslogtreecommitdiffstats
path: root/ext/resindvd
diff options
context:
space:
mode:
Diffstat (limited to 'ext/resindvd')
-rw-r--r--ext/resindvd/plugin.c9
-rw-r--r--ext/resindvd/resindvdsrc.c3
2 files changed, 9 insertions, 3 deletions
diff --git a/ext/resindvd/plugin.c b/ext/resindvd/plugin.c
index bc0a9640..33b95003 100644
--- a/ext/resindvd/plugin.c
+++ b/ext/resindvd/plugin.c
@@ -24,8 +24,8 @@
#include <gst/gst.h>
#include "resindvdbin.h"
-
#include "gstmpegdemux.h"
+#include <gst/gst-i18n-plugin.h>
GST_DEBUG_CATEGORY (resindvd_debug);
#define GST_CAT_DEFAULT resindvd_debug
@@ -38,6 +38,13 @@ plugin_init (GstPlugin * plugin)
GST_DEBUG_CATEGORY_INIT (resindvd_debug, "resindvd elements",
0, "DVD playback elements from resindvd");
+#ifdef ENABLE_NLS
+ GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
+ LOCALEDIR);
+ bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+#endif
+
result &= gst_element_register (plugin, "rsndvdbin",
GST_RANK_PRIMARY, RESIN_TYPE_DVDBIN);
diff --git a/ext/resindvd/resindvdsrc.c b/ext/resindvd/resindvdsrc.c
index 7f07f0bf..bf4d033d 100644
--- a/ext/resindvd/resindvdsrc.c
+++ b/ext/resindvd/resindvdsrc.c
@@ -24,8 +24,7 @@
#include <string.h>
#include <gst/gst.h>
-// #include <gst/gst-i18n-plugin.h>
-#define _(s) s /* FIXME - add i18n bits to build */
+#include <gst/gst-i18n-plugin.h>
#include "resindvdsrc.h"