]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/gettext.C
add config.h
[lyx.git] / src / tex2lyx / gettext.C
index 4003355c0193882ae5dfe181a270f601e759fb11..5758fc1b98a2f8ab8e07584883ee26908624eddb 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * \file gettext.C
+ * \file tex2lyx/gettext.C
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
 
 #include "gettext.h"
 
-using std::string;
 
+namespace lyx {
 
-string const _(string const & str)
+
+docstring const _(std::string const & str)
 {
-       return str;
+       return from_ascii(str);
 }
 
 
 void locale_init()
 {}
+
+
+} // namespace lyx