]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/gettext.C
Really fix start_of_appendix output
[lyx.git] / src / tex2lyx / gettext.C
1 /**
2  * \file tex2lyx/gettext.C
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 using std::string;
17
18
19 string const _(string const & str)
20 {
21         return str;
22 }
23
24
25 void locale_init()
26 {}