mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-02 17:26:17 +01:00
b8796462fb
Mon Jan 15 21:12:49 2001 Owen Taylor <otaylor@redhat.com> * configure.in acconfig.h glibintl.h gutils.c po/{Makefile.in.in,POTFILES.in,po2tbl.in}: Add gettext support. * glib-gettext.m4 acinclude.m4: Clean up the GTK+ gettext macros some more and put them in this file, though they also need to be included in acinclude.m4 due to the brokeness of aclocal. * gspawn.c gspawn-win32.c gutf8.c gconvert.c gfileutils.c gshell.c: Remove dummy _() #defines, include glibintl.m4.
34 lines
787 B
C
34 lines
787 B
C
#ifndef __GLIBINTL_H__
|
|
#define __GLIBINTL_H__
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
extern int _glib_gettext_initialized;
|
|
|
|
char *_glib_gettext_init (const char *str);
|
|
|
|
#include<libintl.h>
|
|
#define _(String) \
|
|
(_glib_gettext_initialized ? \
|
|
dgettext(GETTEXT_PACKAGE,String) : \
|
|
_glib_gettext_init(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 textdomain(String) (String)
|
|
#define gettext(String) (String)
|
|
#define dgettext(Domain,String) (String)
|
|
#define dcgettext(Domain,String,Type) (String)
|
|
#define bindtextdomain(Domain,Directory) (Domain)
|
|
#endif
|
|
|
|
#endif /* __GLIBINTL_H__ */
|