2013-11-03 17:28:16 +01:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2011-07-30 11:44:45 +02:00
|
|
|
#ifndef GETTEXT_HEADER
|
2013-11-03 17:28:16 +01:00
|
|
|
#define GETTEXT_HEADER
|
|
|
|
|
2015-02-05 17:49:14 +01:00
|
|
|
#include "config.h" // for USE_GETTEXT
|
2011-07-24 19:13:30 +02:00
|
|
|
|
2011-07-24 13:58:51 +02:00
|
|
|
#if USE_GETTEXT
|
2015-03-07 06:09:27 +01:00
|
|
|
#include <libintl.h>
|
2011-07-21 07:53:13 +02:00
|
|
|
#else
|
2016-08-21 02:40:23 +02:00
|
|
|
// In certain environments, some standard headers like <iomanip>
|
|
|
|
// and <locale> include libintl.h. If libintl.h is included after
|
|
|
|
// we define our gettext macro below, this causes a syntax error
|
|
|
|
// at the declaration of the gettext function in libintl.h.
|
|
|
|
// Fix this by including such a header before defining the macro.
|
|
|
|
// See issue #4446.
|
|
|
|
// Note that we can't include libintl.h directly since we're in
|
|
|
|
// the USE_GETTEXT=0 case and can't assume that gettext is installed.
|
|
|
|
#include <locale>
|
|
|
|
|
2015-03-07 06:09:27 +01:00
|
|
|
#define gettext(String) String
|
2011-07-23 22:36:11 +02:00
|
|
|
#endif
|
2011-07-21 07:53:13 +02:00
|
|
|
|
2011-07-20 16:51:19 +02:00
|
|
|
#define _(String) gettext(String)
|
2015-03-07 06:09:27 +01:00
|
|
|
#define gettext_noop(String) (String)
|
|
|
|
#define N_(String) gettext_noop((String))
|
2011-07-20 16:51:19 +02:00
|
|
|
|
2015-03-07 06:09:27 +01:00
|
|
|
void init_gettext(const char *path, const std::string &configured_language,
|
2015-10-24 19:31:42 +02:00
|
|
|
int argc, char *argv[]);
|
2011-07-23 16:38:37 +02:00
|
|
|
|
2015-07-07 05:55:07 +02:00
|
|
|
extern wchar_t *utf8_to_wide_c(const char *str);
|
2014-04-06 10:39:32 +02:00
|
|
|
|
2015-02-01 23:59:23 +01:00
|
|
|
// You must free the returned string!
|
2015-03-07 06:09:27 +01:00
|
|
|
// The returned string is allocated using new
|
2015-02-01 23:59:23 +01:00
|
|
|
inline const wchar_t *wgettext(const char *str)
|
2011-07-20 16:51:19 +02:00
|
|
|
{
|
2015-07-07 05:55:07 +02:00
|
|
|
return utf8_to_wide_c(gettext(str));
|
2011-07-20 16:51:19 +02:00
|
|
|
}
|
2011-07-30 10:14:58 +02:00
|
|
|
|
2015-02-01 23:59:23 +01:00
|
|
|
inline std::string strgettext(const std::string &text)
|
|
|
|
{
|
|
|
|
return gettext(text.c_str());
|
2013-08-03 17:57:51 +02:00
|
|
|
}
|
2013-11-03 17:28:16 +01:00
|
|
|
|
2011-07-30 11:44:45 +02:00
|
|
|
#endif
|