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