From 22f4937e955a00d4fa099545ceb5523eafafd8a9 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 19 Jan 2004 15:45:55 +0000 Subject: putting i18n in place for plugins Original commit message from CVS: putting i18n in place for plugins --- ext/sndfile/gstsf.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ext/sndfile') diff --git a/ext/sndfile/gstsf.c b/ext/sndfile/gstsf.c index 7c00cff2..18100d8c 100644 --- a/ext/sndfile/gstsf.c +++ b/ext/sndfile/gstsf.c @@ -790,7 +790,7 @@ gst_sf_loop (GstElement *element) written = sf_writef_float (this->file, buf, num_to_write); if (written != num_to_write) gst_element_error (element, RESOURCE, WRITE, - (_("Error while writing to file \"%s\""), this->filename), + (_("Could not write to file \"%s\""), this->filename), ("soundfile error: %s", sf_strerror (this->file))); } @@ -818,6 +818,12 @@ plugin_init (GstPlugin *plugin) if (!gst_element_register (plugin, "sfsink", GST_RANK_NONE, GST_TYPE_SFSINK)) return FALSE; +#ifdef ENABLE_NLS + setlocale (LC_ALL, ""); + bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); + textdomain (GETTEXT_PACKAGE); +#endif /* ENABLE_NLS */ + return TRUE; } -- cgit v1.2.1