X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgettext.h;h=0783413b5eb6bd6a9ac8823201707180de15b480;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=002d2bc563e818a58e51eb2394e452fd58fa5548;hpb=5cc00f4bcd10d5606b8ae1af57895c8fb566e42c;p=lyx.git diff --git a/src/gettext.h b/src/gettext.h index 002d2bc563..0783413b5e 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -1,6 +1,22 @@ // -*- C++ -*- -#ifndef _GETTEXT_H_ -#define _GETTEXT_H_ +/** + * \file src/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 "support/docstring.h" + + +namespace lyx { /* * Native Language Support @@ -30,29 +46,25 @@ * Panic/fatal (that should not happen) messages need not be translated */ -#include "LString.h" -#ifdef ENABLE_NLS +//#ifdef ENABLE_NLS /// -char const * _(char const *); -/// -string const _(string const &); +docstring const _(std::string const &); -#else // ENABLE_NLS +//#else // ENABLE_NLS /// -# define _(str) (str) -/// -# define S_(str) (str) +//# define _(str) (str) -#endif +//#endif # define N_(str) (str) // for detecting static strings /// void locale_init(); -/// -void gettext_init(string const & localedir); + + +} // namespace lyx #endif