summaryrefslogtreecommitdiff
path: root/gtk/gtkintl.h
blob: 3e03c69ce92703ce733a4091d123ae383bab51ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __GTKINTL_H__
#define __GTKINTL_H__

#include "config.h"
#include <glib/gi18n-lib.h>

#ifdef ENABLE_NLS
#define P_(String) dgettext(GETTEXT_PACKAGE "-properties",String)
#else 
#define P_(String) (String)
#endif

/* not really I18N-related, but also a string marker macro */
#define I_(string) g_intern_static_string (string)

#endif