1 /* This file is part of statist 2 ** 3 ** It is distributed under the GNU General Public License v>=2. 4 ** See the file COPYING for details. 5 ** 6 ** (c) 1997 Dirk Melcher 7 ** (c) Bernhard Reiter http://www.usf.Uni-Osnabrueck.DE/~breiter 8 ** 9 ***************************************************************/ 10 11 /* gettext.h for STATIST */ 12 13 #ifndef STATIST_GETTEXT_HEADER 14 #define STATIST_GETTEXT_HEADER 15 16 #ifdef NO_GETTEXT 17 #define _(english) (english) 18 #else 19 #include <libintl.h> 20 #include <locale.h> 21 #define _(string) gettext (string) 22 #endif /* NO_GETTEXT */ 23 24 #define N_(english) (english) 25 26 27 #endif /* STATIST_GETTEXT_HEADER */