lyx_mirror/src/gettext.C
Georg Baum 83525c9570 Don't crash anymore if an .ui file contains unicode labels
* src/gettext.[Ch]
	(translateIfPossible): new function to translate stuff that might
	already be in the native language

	* src/MenuBackend.C
	(Menu::read): Use translateIfPossible for item names and submenu
	labels, since the user may have already entered them in his native
	language into the .ui file

	* src/ToolbarBackend.C
	(ToolbarBackend::read): do the same with the tooltip


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16015 a592a061-630c-0410-9148-cb99ea01b6c8
2006-11-23 16:31:48 +00:00

88 lines
1.4 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;
namespace {
static Messages & getLyXMessages()
{
static Messages lyx_messages;
return lyx_messages;
}
} // anon namespace
docstring const _(string const & str)
{
return getLyXMessages().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