X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgettext.C;h=aae9bc7f5c12b91b6e989775e99fda66c2b7484b;hb=b9963e1a57135c3e2ab128a9ec4300f0e4886992;hp=08a948e8f40d07dc416317f21ea084b9e41d1093;hpb=7d09a8c0e72b879c36587a884fd404f31234ba18;p=lyx.git diff --git a/src/gettext.C b/src/gettext.C index 08a948e8f4..aae9bc7f5c 100644 --- a/src/gettext.C +++ b/src/gettext.C @@ -1,70 +1,64 @@ -// -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. +/** + * \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 -#ifdef ENABLE_NLS +#include "gettext.h" +#include "messages.h" +#include "support/environment.h" -#include "LString.h" +#ifdef HAVE_LOCALE_H +# include +#endif + +using std::string; +using lyx::support::setEnv; -# if HAVE_GETTEXT -# include // use the header already in the system *EK* -# ifdef HAVE_LOCALE_H -# include // for LC_MESSAGES -# endif -# else -# include "../intl/libintl.h" -# endif -char const * _(char const * str) +namespace { + +Messages & getLyXMessages() { - // I'd rather have an Assert on str, we should not allow - // null pointers here. Lgb - // Assert(str); - if (str && str[0]) - return gettext(str); - else - return ""; + static Messages lyx_messages; + + return lyx_messages; } +} // anon namespace -string const _(string const & str) + +string const _(string const & str) { - if (!str.empty()) { - int const s = str.length(); - char * tmp = new char[s + 1]; - str.copy(tmp, s); - tmp[s] = '\0'; - string ret(gettext(tmp)); - delete [] tmp; - return ret; - } - else - return string(); + 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"); -# endif } -void gettext_init(string const & localedir) +#else // ENABLE_NLS + +void locale_init() { - bindtextdomain(PACKAGE, localedir.c_str()); - textdomain(PACKAGE); + setlocale(LC_NUMERIC, "C"); } - #endif