mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 19:30:10 +00:00
e9bab05794
2005-06-22 Matthias Clasen <mclasen@redhat.com> * gdk-pixbuf-i18n.h: Use glib-i18n.h
14 lines
239 B
C
14 lines
239 B
C
#ifndef __GDKPIXBUFINTL_H__
|
|
#define __GDKPIXBUFINTL_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
|
|
|
|
#endif
|