1998-12-14 17:39:58 +00:00
|
|
|
#ifndef __GTKINTL_H__
|
|
|
|
#define __GTKINTL_H__
|
|
|
|
|
2004-05-18 19:52:41 +00:00
|
|
|
#include <glib/gi18n-lib.h>
|
1998-12-14 17:39:58 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_NLS
|
2008-06-11 23:40:35 +00:00
|
|
|
#define P_(String) g_dgettext(GETTEXT_PACKAGE "-properties",String)
|
2004-05-18 19:52:41 +00:00
|
|
|
#else
|
2004-01-16 23:10:05 +00:00
|
|
|
#define P_(String) (String)
|
1998-12-14 17:39:58 +00:00
|
|
|
#endif
|
|
|
|
|
2005-09-01 05:11:46 +00:00
|
|
|
/* not really I18N-related, but also a string marker macro */
|
|
|
|
#define I_(string) g_intern_static_string (string)
|
|
|
|
|
1998-12-14 17:39:58 +00:00
|
|
|
#endif
|