mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
26 lines
475 B
C
26 lines
475 B
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file gettext.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Lars Gullik Bjønnes
|
||
|
* \author Jean-Marc Lasgouttes
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS
|
||
|
*/
|
||
|
#ifndef GETTEXT_H
|
||
|
#define GETTEXT_H
|
||
|
|
||
|
#include "LString.h"
|
||
|
|
||
|
///
|
||
|
string const _(string const &);
|
||
|
|
||
|
#define N_(str) (str) // for detecting static strings
|
||
|
|
||
|
///
|
||
|
void locale_init();
|
||
|
|
||
|
#endif
|