i18n.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __I18N_H__
00020 #define __I18N_H__
00021
00022 #include "config.h"
00023
00024 #if defined(ENABLE_NLS)
00025 #if defined(HAVE_GETTEXT)
00026 #include <libintl.h>
00027 #else
00028 #include "intl/libintl.h"
00029 #endif
00030 #define _(str) gettext(str)
00031 #else
00032 #define _(str) str
00033 #endif
00034
00035 #ifndef gettext_noop
00036 #define gettext_noop(str) str
00037 #endif
00038 #ifndef N_
00039 #define N_(str) str
00040 #endif
00041
00042 #endif
This file is part of the documentation for kpilot Library Version 3.2.1.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Sat Mar 6 17:18:08 2004 by
doxygen 1.3.6-20040222 written by
Dimitri van Heesch, © 1997-2003