]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.h
Extend the navigate menu to child docs
[lyx.git] / src / gettext.h
index daeb9ce5e7a24750f2a3f185ad04d71fb713e411..0783413b5eb6bd6a9ac8823201707180de15b480 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 /**
- * \file gettext.h
+ * \file src/gettext.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
 #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
  */
 
-#include "LString.h"
 
 //#ifdef ENABLE_NLS
 
 ///
-string const _(string const &);
+docstring const _(std::string const &);
 
 //#else // ENABLE_NLS
 
@@ -60,4 +64,7 @@ string const _(string const &);
 ///
 void locale_init();
 
+
+} // namespace lyx
+
 #endif