lyx_mirror/src/gettext.cpp
Jean-Marc Lasgouttes 12dbcf2ee1 [the "translation" patch series] Part 2: fixing document label translations
* src/gettext.cpp (locale_init): factor some code; call Messages::init().
	* LyX.cpp (exec): call Messages::init() after initializing package().
	* Messages.cpp (init): new method, factor some code from get().
	(get): change the method used to set the locale. Should be much more robust
	than it was (and simpler too).



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19360 a592a061-630c-0410-9148-cb99ea01b6c8
2007-08-07 22:24:47 +00:00

62 lines
1.1 KiB
C++

/**
* \file src/gettext.cpp
* 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/lstrings.h"
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif
using std::string;
namespace lyx {
docstring const _(string const & str)
{
return getGuiMessages().get(str);
}
void locale_init()
{
#ifdef ENABLE_NLS
# ifdef HAVE_LC_MESSAGES
setlocale(LC_MESSAGES, "");
# endif
setlocale(LC_CTYPE, "");
Messages::init();
#endif
setlocale(LC_NUMERIC, "C");
}
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