X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgettext.h;h=0624d8be83ef5379ad9824fda22f73f3c9c3f24b;hb=e5b8f6956160631022fede155f55bad7951eecb8;hp=ebd358a739535c0e7af6b69a36b54a242f80db9d;hpb=7d09a8c0e72b879c36587a884fd404f31234ba18;p=lyx.git diff --git a/src/gettext.h b/src/gettext.h index ebd358a739..0624d8be83 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,31 +46,32 @@ * Panic/fatal (that should not happen) messages need not be translated */ -#ifdef ENABLE_NLS -#include "LString.h" +//#ifdef ENABLE_NLS /// -char const * _(char const *); -/// -string const _(string const &); -/// -void locale_init(); -/// -void gettext_init(string const & localedir); +docstring const _(std::string const &); + +//#else // ENABLE_NLS -#else -/// -# define _(str) (str) -/// -# define S_(str) (str) -/// -# define locale_init() /// -# define gettext_init(package, localedir) +//# define _(str) (str) -#endif +//#endif # define N_(str) (str) // for detecting static strings +/** + * Translate \p name if it is possible. + * This should be used to translate strings that come from configuration + * files like .ui files. These strings could already be in the native + * language if they come from a file in the personal directory. */ +docstring const translateIfPossible(docstring const & name); + +/// +void locale_init(); + + +} // namespace lyx + #endif