Make sure gettext returns translations in UTF-8 encoding rather than in the current...
authorFrederic Crozat <fcrozat@mandriva.org>
Thu, 7 Aug 2008 16:14:42 +0000 (16:14 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 7 Aug 2008 16:14:42 +0000 (16:14 +0000)
Original commit message from CVS:
Patch by: Frederic Crozat <fcrozat@mandriva.org>
* ext/dvdread/dvdreadsrc.c: (plugin_init):
* ext/lame/gstlame.c: (plugin_init):
* gst/asfdemux/gstasf.c: (plugin_init):
Make sure gettext returns translations in UTF-8 encoding rather
than in the current locale encoding (#546822).

ext/lame/gstlame.c

index 71744b0..906faae 100644 (file)
@@ -1364,6 +1364,7 @@ plugin_init (GstPlugin * plugin)
   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 /* ENABLE_NLS */
 
   if (!gst_element_register (plugin, "lame", GST_RANK_NONE, GST_TYPE_LAME))