X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgettext.C;h=46053cfc59e5407e4e66316470accbf6ed59e26d;hb=e7f4618bcce770369cf46335c2c7f0164b4b8857;hp=a27c579b421797b2421b2814915819c32bf54bec;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/gettext.C b/src/gettext.C index a27c579b42..46053cfc59 100644 --- a/src/gettext.C +++ b/src/gettext.C @@ -1,5 +1,5 @@ /** - * \file gettext.C + * \file src/gettext.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * @@ -11,31 +11,27 @@ #include +#include "gettext.h" #include "messages.h" -#include "LString.h" -#include "support/LAssert.h" -#include +#include "support/environment.h" +#include "support/lstrings.h" + + +namespace lyx { #ifdef HAVE_LOCALE_H # include #endif -namespace { - -Messages & getLyXMessages() -{ - static Messages lyx_messages; - - return lyx_messages; -} +using support::setEnv; -} // anon namespace +using std::string; -string const _(string const & str) +docstring const _(string const & str) { - return getLyXMessages().get(str); + return getGuiMessages().get(str); } @@ -43,6 +39,8 @@ string const _(string const & str) void locale_init() { + // Disable, as otherwise it overrides everything else incl. the doc language + setEnv("LANGUAGE", ""); # ifdef HAVE_LC_MESSAGES setlocale(LC_MESSAGES, ""); # endif @@ -58,3 +56,20 @@ void locale_init() } #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