]> Pileus Git - ~andy/gtk/blob - gtk/gtkintl.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / gtkintl.h
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