mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
e2b65dec0c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6864 a592a061-630c-0410-9148-cb99ea01b6c8
66 lines
987 B
C
66 lines
987 B
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#include <config.h>
|
|
|
|
#include "messages.h"
|
|
#include "LString.h"
|
|
#include "support/LAssert.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
#ifdef HAVE_LOCALE_H
|
|
# include <locale.h>
|
|
#endif
|
|
|
|
namespace {
|
|
|
|
Messages & getLyXMessages()
|
|
{
|
|
static Messages lyx_messages;
|
|
|
|
return lyx_messages;
|
|
}
|
|
|
|
} // anon namespace
|
|
|
|
|
|
char const * _(char const * str)
|
|
{
|
|
return getLyXMessages().get(str).c_str();
|
|
}
|
|
|
|
|
|
string const _(string const & str)
|
|
{
|
|
return getLyXMessages().get(str);
|
|
}
|
|
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
void locale_init()
|
|
{
|
|
# 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
|