2003-07-26 00:17:21 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2003-10-08 11:31:51 +00:00
|
|
|
|
* \file tex2lyx/gettext.h
|
2003-07-26 00:17:21 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
2003-08-19 10:04:35 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-07-26 00:17:21 +00:00
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-07-26 00:17:21 +00:00
|
|
|
|
*/
|
|
|
|
|
#ifndef GETTEXT_H
|
|
|
|
|
#define GETTEXT_H
|
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
#include <string>
|
|
|
|
|
|
2003-07-26 00:17:21 +00:00
|
|
|
|
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const _(std::string const &);
|
2003-07-26 00:17:21 +00:00
|
|
|
|
|
2003-08-19 10:04:35 +00:00
|
|
|
|
/// for detecting static strings
|
|
|
|
|
#define N_(str) (str)
|
2003-07-26 00:17:21 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void locale_init();
|
|
|
|
|
|
|
|
|
|
#endif
|