diff options
author | Frederic Crozat <fcrozat@mandriva.org> | 2008-08-07 16:20:30 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2008-08-07 16:20:30 +0000 |
commit | 106b2a7a379d6ce02610ab2b8f1f54e487cf54a6 (patch) | |
tree | 19b39394c813158630cad11fa296842b1254bd00 /ext/sndfile | |
parent | eea5ff778fcde82cdf415f38a8104b218fc396db (diff) |
Make sure gettext returns translations in UTF-8 encoding rather than in the current locale encoding (#546822).
Original commit message from CVS:
Patch by: Frederic Crozat <fcrozat@mandriva.org>
* ext/sndfile/gstsf.c: (plugin_init):
* sys/dvb/gstdvbsrc.c: (gst_dvbsrc_plugin_init):
* sys/oss4/oss4-audio.c: (plugin_init):
Make sure gettext returns translations in UTF-8 encoding rather
than in the current locale encoding (#546822).
Diffstat (limited to 'ext/sndfile')
-rw-r--r-- | ext/sndfile/gstsf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/sndfile/gstsf.c b/ext/sndfile/gstsf.c index dcfcc1bd5..6148e8529 100644 --- a/ext/sndfile/gstsf.c +++ b/ext/sndfile/gstsf.c @@ -109,6 +109,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, "sfsink", GST_RANK_NONE, |