X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgettext.h;h=eaddb3253afee452a0599b106a639baa75807664;hb=8ebf862adbe377d032f888a82d88d4393aebc929;hp=a8908d1a2ee535f7cedc043fb2739ecc05e1de7a;hpb=797d87b4513088a66b17c7ac653b84e36ea80458;p=lyx.git diff --git a/src/gettext.h b/src/gettext.h index a8908d1a2e..eaddb3253a 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -1,6 +1,21 @@ // -*- 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" + +#include /* * Native Language Support @@ -30,37 +45,22 @@ * Panic/fatal (that should not happen) messages need not be translated */ -#ifdef ENABLE_NLS -# if HAVE_GETTEXT -# include // use the header already in the system *EK* -# ifdef HAVE_LOCALE_H -# include // for LC_MESSAGES -# endif -# else -# include "../intl/libintl.h" -# endif - -# define _(str) gettext(str) -# define N_(str) (str) // for detecting static strings +//#ifdef ENABLE_NLS -# ifdef HAVE_LC_MESSAGES - // LC_TIME, LC_CTYPE, even LC_ALL -# define locale_init() { setlocale (LC_MESSAGES, ""); setlocale (LC_CTYPE, "");} -# else -# define locale_init() -# endif -# define gettext_init() { bindtextdomain (PACKAGE, lyx_localedir.c_str()); \ - textdomain (PACKAGE); } -#else /// -# define _(str) (str) -/// -# define N_(str) (str) +lyx::docstring const _(std::string const &); + +//#else // ENABLE_NLS + /// -# define locale_init() +//# define _(str) (str) + +//#endif + +# define N_(str) (str) // for detecting static strings + /// -# define gettext_init() -#endif +void locale_init(); #endif