mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
ff51072d50
Tue Jan 16 23:20:38 2001 Owen Taylor <otaylor@redhat.com> * gutils.c glibintl.h: Optimize for size rather than speed by making _() always call _glib_gettext() instead of conditionally calling gettext() or _glib_gettext_init. glib only uses translated strings in slow error handling code anyways. * glibintl.h: g'ify types. * Makefile.am: include glibintl.h in _SOURCES
29 lines
619 B
C
29 lines
619 B
C
#ifndef __GLIBINTL_H__
|
|
#define __GLIBINTL_H__
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
gchar *_glib_gettext (const gchar *str);
|
|
|
|
#include <libintl.h>
|
|
#define _(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 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__ */
|