lyx_mirror/src/gettext.C
Abdelrazak Younes 197ca2420b * messages.h:
- getMessages(), getGuiMessages(): new global function definitions

* lyx_main.C: implementation of getMessages() and getGuiMessages().

* LyX class:
  - getMessages(), getGuiMessages(), setGuiLanguage(): new interface for Messages access.

* LyX::Singletons class:
  - messages_: new container for Messages objects.

* Buffer::Impl::messages is now a pointer to the singleton defined in lyx_main.C.

* gettext.C: _() uses the global getGuiMessages() instead of the local static Messages object.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16673 a592a061-630c-0410-9148-cb99ea01b6c8
2007-01-14 10:37:14 +00:00

76 lines
1.3 KiB
C

/**
* \file src/gettext.C
* 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.
*/
#include <config.h>
#include "gettext.h"
#include "messages.h"
#include "support/environment.h"
#include "support/lstrings.h"
namespace lyx {
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif
using support::setEnv;
using std::string;
docstring const _(string const & str)
{
return getGuiMessages().get(str);
}
#ifdef ENABLE_NLS
void locale_init()
{
// Disable, as otherwise it overrides everything else incl. the doc language
setEnv("LANGUAGE", "");
# ifdef HAVE_LC_MESSAGES
setlocale(LC_MESSAGES, "");
# endif
setlocale(LC_CTYPE, "");
setlocale(LC_NUMERIC, "C");
}
#else // ENABLE_NLS
void locale_init()
{
setlocale(LC_NUMERIC, "C");
}
#endif
docstring const translateIfPossible(docstring const & name)
{
if (support::isAscii(name))
// Probably from a standard configuration file, try to
// translate
return _(to_ascii(name));
else
// This must be from a user defined configuration file. We
// cannot translate this, since gettext accepts only ascii
// keys.
return name;
}
} // namespace lyx