2017-10-29 09:24:06 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2015 Dimok
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _GETTEXT_H_
|
|
|
|
#define _GETTEXT_H_
|
|
|
|
|
2018-06-20 14:44:30 +02:00
|
|
|
#include <wut_types.h>
|
|
|
|
|
2017-10-29 09:24:06 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2018-03-11 16:44:04 +01:00
|
|
|
#define tr(s) gettext(s)
|
|
|
|
#define trNOOP(s) s
|
2017-10-30 21:48:24 +01:00
|
|
|
|
2018-06-20 14:44:30 +02:00
|
|
|
BOOL gettextLoadLanguage(const char* langFile);
|
2018-03-11 16:44:04 +01:00
|
|
|
void gettextCleanUp(void);
|
|
|
|
/*
|
|
|
|
* input msg = a text in ASCII
|
|
|
|
* output = the translated msg in utf-8
|
|
|
|
*/
|
|
|
|
const char *gettext(const char *msg);
|
2017-10-29 09:24:06 +01:00
|
|
|
#define tr(s) gettext(s)
|
|
|
|
#define trNOOP(s) s
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _GETTEXT_H_ */
|