summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/xine.c4
-rw-r--r--src/xine-engine/xineintl.h (renamed from src/xine-engine/xineintl.h.in)6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index 8e7975727..0ac89b2c7 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine.c,v 1.310 2005/02/13 22:12:50 holstsn Exp $
+ * $Id: xine.c,v 1.311 2005/02/19 13:11:52 valtri Exp $
*/
/*
@@ -1360,7 +1360,7 @@ xine_t *xine_new (void) {
* i18n
*/
- bindtextdomain("xine-lib", XINE_LOCALEDIR);
+ bindtextdomain(XINE_TEXTDOMAIN, XINE_LOCALEDIR);
#endif
/*
diff --git a/src/xine-engine/xineintl.h.in b/src/xine-engine/xineintl.h
index 4586b3045..614195193 100644
--- a/src/xine-engine/xineintl.h.in
+++ b/src/xine-engine/xineintl.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000-2002 the xine project
+ * Copyright (C) 2000-2005 the xine project
*
* This file is part of xine, a free video player.
*
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xineintl.h.in,v 1.1 2002/12/11 01:04:01 siggi Exp $
+ * $Id: xineintl.h,v 1.9 2005/02/19 13:11:53 valtri Exp $
*
*/
@@ -32,7 +32,7 @@ extern "C" {
#ifdef ENABLE_NLS
# include <libintl.h>
-# define _(String) dgettext ("@LIBNAME@", String)
+# define _(String) dgettext (XINE_TEXTDOMAIN, String)
# ifdef gettext_noop
# define N_(String) gettext_noop (String)
# else