X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgettext.h;h=0783413b5eb6bd6a9ac8823201707180de15b480;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=a60e5c52f9e345e2d716ddee34cac5b05ded6d9e;hpb=e7401bd8f2310213b4b765c01676459f37adb530;p=lyx.git diff --git a/src/gettext.h b/src/gettext.h index a60e5c52f9..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,45 +46,25 @@ * Panic/fatal (that should not happen) messages need not be translated */ -#ifdef ENABLE_NLS -#include "LString.h" +//#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 +/// +docstring const _(std::string const &); -char const * _(char const *); +//#else // ENABLE_NLS -string const _(string const &); +/// +//# define _(str) (str) + +//#endif -//# define _(str) gettext(str) # define N_(str) (str) // for detecting static strings -# 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 S_(str) (str) -/// -# define N_(str) (str) /// -# define locale_init() -/// -# define gettext_init() -#endif +void locale_init(); + + +} // namespace lyx #endif