]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.h
Add a Buffer::fully_loaded member function, returning true only when
[lyx.git] / src / gettext.h
index b7bab8d2a150bc933cff26af8869fd5fbc5a1181..7cb097af487d089f9b1170f9c0854dfec5e85c6b 100644 (file)
@@ -1,6 +1,19 @@
 // -*- C++ -*-
-#ifndef _GETTEXT_H_
-#define _GETTEXT_H_
+/**
+ * \file src/gettext.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+#ifndef GETTEXT_H
+#define GETTEXT_H
+
+#include <string>
 
 /*
  * Native Language Support
  *   Panic/fatal (that should not happen) messages need not be translated
  */
 
-#ifdef ENABLE_NLS
 
-#include "LString.h"
+//#ifdef ENABLE_NLS
 
 ///
-char const * _(char const *);
-///
-string const _(string const &);
-///
-void locale_init();
-///
-void gettext_init(string const & localedir);
+std::string const _(std::string const &);
+
+//#else // ENABLE_NLS
 
-#else
-///
-#  define _(str) (str)
-///
-#  define S_(str) (str)
-///
-#  define locale_init()
 ///
-#  define gettext_init(localedir)
+//#  define _(str) (str)
 
-#endif
+//#endif
 
 #  define N_(str) (str)              // for detecting static strings
 
+///
+void locale_init();
+
 #endif