2004-09-20 09:46:21 -06:00
|
|
|
#ifndef I18N
|
|
|
|
#define I18N
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif /* HAVE_CONFIG_H */
|
|
|
|
|
|
|
|
#ifdef ENABLE_NLS
|
2004-09-23 09:31:00 -06:00
|
|
|
#include <libintl.h>
|
2004-09-20 09:46:21 -06:00
|
|
|
#define _(String) gettext(String)
|
|
|
|
#endif /* ENABLE_NLS */
|
|
|
|
|
|
|
|
#endif /* I18N */
|