]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/gettext.cpp
cosmetics... less than intented
[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
16
17 namespace lyx {
18
19
20 docstring const _(std::string const & str)
21 {
22         return from_ascii(str);
23 }
24
25
26 void locale_init()
27 {}
28
29
30 } // namespace lyx