]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / gettext.h
index a8908d1a2ee535f7cedc043fb2739ecc05e1de7a..0624d8be83ef5379ad9824fda22f73f3c9c3f24b 100644 (file)
@@ -1,6 +1,22 @@
 // -*- 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 "support/docstring.h"
+
+
+namespace lyx {
 
 /*
  * Native Language Support
  *   Panic/fatal (that should not happen) messages need not be translated
  */
 
-#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
+//#ifdef ENABLE_NLS
 
-#  define _(str) gettext(str)
-#  define N_(str) (str)              // for detecting static strings
-
-#  ifdef HAVE_LC_MESSAGES
-                                // LC_TIME, LC_CTYPE, even LC_ALL
-#    define locale_init() { setlocale (LC_MESSAGES, ""); setlocale (LC_CTYPE, "");}
-#  else
-#    define locale_init()
-#  endif
-#  define gettext_init() { bindtextdomain (PACKAGE, lyx_localedir.c_str()); \
-       textdomain (PACKAGE); }
-#else
-///
-#  define _(str) (str)
 ///
-#  define N_(str) (str)
+docstring const _(std::string const &);
+
+//#else // ENABLE_NLS
+
 ///
-#  define locale_init()
+//#  define _(str) (str)
+
+//#endif
+
+#  define N_(str) (str)              // for detecting static strings
+
+/**
+ * Translate \p name if it is possible.
+ * This should be used to translate strings that come from configuration
+ * files like .ui files. These strings could already be in the native
+ * language if they come from a file in the personal directory. */
+docstring const translateIfPossible(docstring const & name);
+
 ///
-#  define gettext_init()
-#endif
+void locale_init();
+
+
+} // namespace lyx
 
 #endif