If the translation fails for some reason, just return what we were

given. This is already how it is done in client/.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33935 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-29 21:33:26 +00:00
parent 29c93f87e6
commit c6721161b0

View File

@ -159,9 +159,10 @@ docstring const Messages::get(string const & m) const
char const * m_c = m.c_str();
char const * trans_c = gettext(m_c);
docstring trans;
if (!trans_c)
LYXERR(Debug::LOCALE, "Undefined result from gettext");
else if (trans_c == m_c) {
if (!trans_c) {
LYXERR(Debug::LOCALE, "Undefined result from gettext for `" << m << "'.");
trans = from_ascii(m);
} else if (trans_c == m_c) {
//LYXERR(Debug::LOCALE, "Same as entered returned");
trans = from_ascii(m);
} else {