2003-07-26 00:17:21 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file gettext.h
|
|
|
|
|
* 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-09-05 17:23:11 +00:00
|
|
|
|
#include "support/std_string.h"
|
2003-07-26 00:17:21 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
string const _(string const &);
|
|
|
|
|
|
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
|