]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.h
* Layout.cpp (read): fix ObsoletedBy and DependsOn for layout names
[lyx.git] / src / gettext.h
index 7cb097af487d089f9b1170f9c0854dfec5e85c6b..0624d8be83ef5379ad9824fda22f73f3c9c3f24b 100644 (file)
 #ifndef GETTEXT_H
 #define GETTEXT_H
 
-#include <string>
+#include "support/docstring.h"
+
+
+namespace lyx {
 
 /*
  * Native Language Support
@@ -47,7 +50,7 @@
 //#ifdef ENABLE_NLS
 
 ///
-std::string const _(std::string const &);
+docstring const _(std::string const &);
 
 //#else // ENABLE_NLS
 
@@ -58,7 +61,17 @@ std::string const _(std::string const &);
 
 #  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);
+
 ///
 void locale_init();
 
+
+} // namespace lyx
+
 #endif