X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgettext.h;h=eaddb3253afee452a0599b106a639baa75807664;hb=8ebf862adbe377d032f888a82d88d4393aebc929;hp=75e64d05db0a5f2cd0baaf260e771c8829c76613;hpb=4fbee583466a423566f62992dfac41909da4a45d;p=lyx.git diff --git a/src/gettext.h b/src/gettext.h index 75e64d05db..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,14 +45,11 @@ * Panic/fatal (that should not happen) messages need not be translated */ -#include "LString.h" //#ifdef ENABLE_NLS /// -char const * _(char const *); -/// -string const _(string const &); +lyx::docstring const _(std::string const &); //#else // ENABLE_NLS @@ -50,7 +62,5 @@ string const _(string const &); /// void locale_init(); -/// -void gettext_init(string const & localedir); #endif