mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-27 06:26:15 +01:00
6ae887bb9b
2007-11-28 Alexander Larsson <alexl@redhat.com> * glib/glib.symbols: Add in the new symbols * glib/gurifuncs.c: Use the aliases framework * glib/glibintl.h: * glib/gutils.c: Make the alias stuff work now that glib_gettext is exported to libgio. svn path=/trunk/; revision=5973
37 lines
949 B
C
37 lines
949 B
C
#ifndef __GLIBINTL_H__
|
|
#define __GLIBINTL_H__
|
|
|
|
#ifndef SIZEOF_CHAR
|
|
#error "config.h must be included prior to glibintl.h"
|
|
#endif
|
|
|
|
G_CONST_RETURN gchar *glib_gettext (const gchar *str);
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
#include <libintl.h>
|
|
#define _(String) glib_gettext(String)
|
|
/* Split out this in the code, but keep it in the same domain for now */
|
|
#define P_(String) glib_gettext(String)
|
|
|
|
#ifdef gettext_noop
|
|
#define N_(String) gettext_noop(String)
|
|
#else
|
|
#define N_(String) (String)
|
|
#endif
|
|
#else /* NLS is disabled */
|
|
#define _(String) (String)
|
|
#define N_(String) (String)
|
|
#define P_(String) (String)
|
|
#define textdomain(String) (String)
|
|
#define gettext(String) (String)
|
|
#define dgettext(Domain,String) (String)
|
|
#define dcgettext(Domain,String,Type) (String)
|
|
#define bindtextdomain(Domain,Directory) (Domain)
|
|
#endif
|
|
|
|
/* not really I18N-related, but also a string marker macro */
|
|
#define I_(string) g_intern_static_string (string)
|
|
|
|
#endif /* __GLIBINTL_H__ */
|