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.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2013-11-03 17:28:16 +01:00
|
|
|
|
2015-02-05 17:49:14 +01:00
|
|
|
#include "config.h" // for USE_GETTEXT
|
2021-11-01 13:27:46 +01:00
|
|
|
#include "porting.h"
|
2023-03-03 01:18:38 +01:00
|
|
|
#include "util/string.h"
|
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
|
|
|
|
2023-03-03 01:18:38 +01:00
|
|
|
inline std::string strgettext(const char *str)
|
2011-07-20 16:51:19 +02:00
|
|
|
{
|
2018-03-27 13:49:47 +02:00
|
|
|
// We must check here that is not an empty string to avoid trying to translate it
|
2023-03-03 01:18:38 +01:00
|
|
|
return str[0] ? gettext(str) : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string strgettext(const std::string &str)
|
|
|
|
{
|
|
|
|
return strgettext(str.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::wstring wstrgettext(const char *str)
|
|
|
|
{
|
|
|
|
return utf8_to_wide(strgettext(str));
|
2011-07-20 16:51:19 +02:00
|
|
|
}
|
2011-07-30 10:14:58 +02:00
|
|
|
|
2023-03-03 01:18:38 +01:00
|
|
|
inline std::wstring wstrgettext(const std::string &str)
|
2015-02-01 23:59:23 +01:00
|
|
|
{
|
2023-03-03 01:18:38 +01:00
|
|
|
return wstrgettext(str.c_str());
|
2013-08-03 17:57:51 +02:00
|
|
|
}
|
2021-08-19 20:13:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns translated string with format args applied
|
|
|
|
*
|
|
|
|
* @tparam Args Template parameter for format args
|
|
|
|
* @param src Translation source string
|
|
|
|
* @param args Variable format args
|
|
|
|
* @return translated string
|
|
|
|
*/
|
|
|
|
template <typename ...Args>
|
|
|
|
inline std::wstring fwgettext(const char *src, Args&&... args)
|
|
|
|
{
|
|
|
|
wchar_t buf[255];
|
2023-03-03 01:18:38 +01:00
|
|
|
swprintf(buf, sizeof(buf) / sizeof(wchar_t), wstrgettext(src).c_str(),
|
|
|
|
std::forward<Args>(args)...);
|
2021-08-19 20:13:25 +02:00
|
|
|
return std::wstring(buf);
|
|
|
|
}
|
2021-11-01 13:27:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns translated string with format args applied
|
|
|
|
*
|
|
|
|
* @tparam Args Template parameter for format args
|
|
|
|
* @param format Translation source string
|
|
|
|
* @param args Variable format args
|
|
|
|
* @return translated string.
|
|
|
|
*/
|
|
|
|
template <typename ...Args>
|
|
|
|
inline std::string fmtgettext(const char *format, Args&&... args)
|
|
|
|
{
|
|
|
|
std::string buf;
|
|
|
|
std::size_t buf_size = 256;
|
|
|
|
buf.resize(buf_size);
|
|
|
|
|
|
|
|
format = gettext(format);
|
|
|
|
|
|
|
|
int len = porting::mt_snprintf(&buf[0], buf_size, format, std::forward<Args>(args)...);
|
|
|
|
if (len <= 0) throw std::runtime_error("gettext format error: " + std::string(format));
|
|
|
|
if ((size_t)len >= buf.size()) {
|
|
|
|
buf.resize(len+1); // extra null byte
|
|
|
|
porting::mt_snprintf(&buf[0], buf.size(), format, std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
buf.resize(len); // remove null bytes
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|