From fa1ee437e5eb5bb218440ef33b81cb563cf21f3f Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Sun, 12 Jul 2009 14:50:51 +0000 Subject: [PATCH] * gettext.cpp (translateIfPossible): @Use the same tests as i Paragraph::translateIfPossible git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30506 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/gettext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/support/gettext.cpp b/src/support/gettext.cpp index a129854e82..119c67b8ba 100644 --- a/src/support/gettext.cpp +++ b/src/support/gettext.cpp @@ -45,7 +45,7 @@ void locale_init() docstring const translateIfPossible(docstring const & name) { - if (support::isAscii(name)) + if (support::isAscii(name) && !name.empty()) // Probably from a standard configuration file, try to // translate return _(to_ascii(name)); @@ -59,7 +59,7 @@ docstring const translateIfPossible(docstring const & name) docstring const translateIfPossible(docstring const & name, std::string const & language) { - if (support::isAscii(name)) + if (support::isAscii(name) && !name.empty()) // Probably from a standard configuration file, try to // translate return getMessages(language).get(to_ascii(name)); -- 2.39.2