1 #ifndef __GTKINTL_H__
2 #define __GTKINTL_H__
3 
4 #include <glib/gi18n-lib.h>
5 
6 #ifdef ENABLE_NLS
7 #define P_(String) g_dgettext(GETTEXT_PACKAGE "-properties",String)
8 #else
9 #define P_(String) (String)
10 #endif
11 
12 /* not really I18N-related, but also a string marker macro */
13 #define I_(string) g_intern_static_string (string)
14 
15 #endif
16