gnupg/include/i18n.h

56 lines
1.4 KiB
C
Raw Normal View History

1998-01-26 23:09:01 +01:00
/* i18n.h
2002-06-29 15:31:13 +02:00
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
1998-01-26 23:09:01 +01:00
*
1998-06-16 17:13:28 +02:00
* This file is part of GNUPG.
1998-01-26 23:09:01 +01:00
*
1998-06-16 17:13:28 +02:00
* GNUPG is free software; you can redistribute it and/or modify
1998-01-26 23:09:01 +01:00
* 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.
*
1998-06-16 17:13:28 +02:00
* GNUPG is distributed in the hope that it will be useful,
1998-01-26 23:09:01 +01:00
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
1998-01-26 23:09:01 +01:00
*/
2002-06-29 15:31:13 +02:00
#ifndef G10_I18N_H
#define G10_I18N_H
1998-01-26 23:09:01 +01:00
#ifdef USE_SIMPLE_GETTEXT
int set_gettext_file( const char *filename, const char *regkey );
const char *gettext( const char *msgid );
#define _(a) gettext (a)
#define N_(a) (a)
#else
#ifdef HAVE_LOCALE_H
#include <locale.h> /* suggested by Ernst Molitor */
#endif
1998-03-19 16:27:29 +01:00
#ifdef ENABLE_NLS
2002-06-29 15:31:13 +02:00
#ifndef __riscos__
#include <libintl.h>
2002-06-29 15:31:13 +02:00
#else
#include "libgettext.h"
2002-06-29 15:31:13 +02:00
#endif /* __riscos__ */
#define _(a) gettext (a)
#ifdef gettext_noop
#define N_(a) gettext_noop (a)
1998-01-26 23:09:01 +01:00
#else
#define N_(a) (a)
#endif
#else
#define _(a) (a)
#define N_(a) (a)
1998-01-26 23:09:01 +01:00
#endif
#endif /* !USE_SIMPLE_GETTEXT */
1998-01-26 23:09:01 +01:00
2002-06-29 15:31:13 +02:00
#endif /*G10_I18N_H*/