Files
gtk/ottie/ottieintl.h
Benjamin Otte d97469fca9 Ottie: Add
2020-12-27 20:08:53 +01:00

16 lines
330 B
C

#ifndef __OTTIE_INTL_H__
#define __OTTIE_INTL_H__
#include <glib/gi18n-lib.h>
#ifdef ENABLE_NLS
#define P_(String) g_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