2008-03-15 10:53:10 -07:00
|
|
|
/*
|
|
|
|
This file is part of Warzone 2100.
|
2010-07-26 16:36:29 -07:00
|
|
|
Copyright (C) 2005-2010 Warzone 2100 Project
|
2008-03-15 10:53:10 -07:00
|
|
|
|
|
|
|
Warzone 2100 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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Warzone 2100 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 Warzone 2100; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
#ifndef _i18n_h
|
|
|
|
#define _i18n_h
|
|
|
|
|
|
|
|
/* Check the header files have been included from frame.h if they
|
|
|
|
* are used outside of the framework library.
|
|
|
|
*/
|
|
|
|
#if !defined(_frame_h) && !defined(FRAME_LIB_INCLUDE)
|
|
|
|
# error Framework header files MUST be included from frame.h ONLY.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include "gettext.h"
|
|
|
|
|
2010-01-18 11:10:17 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif //__cplusplus
|
|
|
|
|
2008-04-20 09:38:27 -07:00
|
|
|
// Enable NLS for our parsers when it's enabled for us
|
|
|
|
#define YYENABLE_NLS ENABLE_NLS
|
|
|
|
|
2008-03-15 10:53:10 -07:00
|
|
|
|
2008-03-23 12:29:41 -07:00
|
|
|
// MSVC doesn't have it, and gettext's wonderful design needs it.
|
2008-03-23 13:16:13 -07:00
|
|
|
#if !defined(LC_MESSAGES)
|
2008-03-23 12:29:41 -07:00
|
|
|
# define LC_MESSAGES 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-03-15 10:53:10 -07:00
|
|
|
#define _(String) gettext(String)
|
|
|
|
#define N_(String) gettext_noop(String)
|
|
|
|
|
|
|
|
// Context sensitive strings
|
|
|
|
#define P_(Context, String) pgettext(Context, String)
|
|
|
|
// Non literal context sensitive strings
|
|
|
|
#define PE_(Context, String) pgettext_expr(Context, String)
|
|
|
|
// Make xgettext recognize the context
|
|
|
|
#define NP_(Context, String) gettext_noop(String)
|
|
|
|
|
|
|
|
extern WZ_DECL_CONST const char* getLanguage(void);
|
2008-03-23 12:22:09 -07:00
|
|
|
extern WZ_DECL_CONST const char* getLanguageName(void);
|
2010-02-14 13:13:20 -08:00
|
|
|
extern bool setLanguage(const char *name);
|
2008-03-23 12:22:09 -07:00
|
|
|
extern void setNextLanguage(void);
|
2008-03-15 10:53:10 -07:00
|
|
|
extern void initI18n(void);
|
|
|
|
|
2010-01-18 11:10:17 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif //__cplusplus
|
|
|
|
|
2008-03-15 10:53:10 -07:00
|
|
|
#endif // _i18n_h
|