]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/gettext.cpp
55e50ec39af1a41ed64cba5ccd681fc7c188fde9
[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 "support/gettext.h"
15 #include "../support/docstring.h"
16
17 using namespace std;
18
19 namespace lyx {
20
21
22 docstring const _(string const & str)
23 {
24         return from_ascii(str);
25 }
26
27
28 void locale_init()
29 {}
30
31
32 } // namespace lyx