]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/gettext.cpp
79630fde70c98c9a01edbf3bfa345136289db817
[lyx.git] / src / tex2lyx / gettext.cpp
1 /**
2  * \file tex2lyx/gettext.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "gettext.h"
15 #include "../support/docstring.h"
16
17
18 namespace lyx {
19
20
21 docstring const _(std::string const & str)
22 {
23         return from_ascii(str);
24 }
25
26
27 void locale_init()
28 {}
29
30
31 } // namespace lyx