]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
move include files
[lyx.git] / src / gettext.C
index 3c3c0e253f603feb292f528fd5d1049f359320b8..08a948e8f40d07dc416317f21ea084b9e41d1093 100644 (file)
@@ -1,12 +1,34 @@
+// -*- C++ -*-
+/* This file is part of
+ * ====================================================== 
+ * 
+ *           LyX, The Document Processor
+ *        
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2001 The LyX Team.
+ *
+ * ====================================================== */
+
 #include <config.h>
 
+#ifdef ENABLE_NLS
+
 #include "LString.h"
-#include "gettext.h"
 
-#ifdef ENABLE_NLS
+#  if HAVE_GETTEXT
+#    include <libintl.h>      // use the header already in the system *EK*
+#    ifdef HAVE_LOCALE_H
+#      include <locale.h>        // for LC_MESSAGES
+#    endif
+#  else
+#    include "../intl/libintl.h"
+#  endif
 
 char const * _(char const * str)
 {
+       // I'd rather have an Assert on str, we should not allow
+       // null pointers here. Lgb
+       // Assert(str);
        if (str && str[0])
                return gettext(str);
        else
@@ -29,4 +51,20 @@ string const _(string const & str)
                return string();
 }
 
+void locale_init()
+{
+#  ifdef HAVE_LC_MESSAGES
+       setlocale(LC_MESSAGES, "");
+       setlocale(LC_CTYPE, "");
+       setlocale(LC_NUMERIC, "C");
+#  endif
+}
+
+void gettext_init(string const & localedir)
+{
+       bindtextdomain(PACKAGE, localedir.c_str()); 
+       textdomain(PACKAGE);
+}
+
+
 #endif