2 * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 * This file is part of GNUPG.
6 * GNUPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GNUPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #ifdef USE_SIMPLE_GETTEXT
24 int set_gettext_file( const char *filename, const char *regkey );
25 const char *gettext( const char *msgid );
27 #define _(a) gettext (a)
32 #include <locale.h> /* suggested by Ernst Molitor */
39 #include "libgettext.h"
40 #endif /* __riscos__ */
41 #define _(a) gettext (a)
43 #define N_(a) gettext_noop (a)
51 #endif /* !USE_SIMPLE_GETTEXT */