Browse CVS Repository
Contents of /gticker/gticker/intl.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1.1.1 -
( show annotations)
( download)
( as text)
(vendor branch)
Mon Aug 15 06:50:48 2005 UTC
(18 years, 7 months ago)
by bluedwarf
Branch: MAIN, bluedwarf
CVS Tags: start, HEAD
Changes since 1.1: +0 -0 lines
File MIME type: text/x-chdr
Initial import of gticker
| 1 |
#ifndef __INTL_H__ |
| 2 |
#define __INTL_H__ |
| 3 |
|
| 4 |
#define ENABLE_NLS |
| 5 |
|
| 6 |
#ifdef ENABLE_NLS |
| 7 |
# include <libintl.h> |
| 8 |
# define _(String) dgettext(PACKAGE,String) |
| 9 |
# ifdef gettext_noop |
| 10 |
# define N_(String) gettext_noop(String) |
| 11 |
# else |
| 12 |
# define N_(String) (String) |
| 13 |
# endif /* gettext_noop */ |
| 14 |
#else |
| 15 |
# define _(String) (String) |
| 16 |
# define N_(String) (String) |
| 17 |
# define textdomain(String) (String) |
| 18 |
# define gettext(String) (String) |
| 19 |
# define dgettext(Domain,String) (String) |
| 20 |
# define dcgettext(Domain,String,Type) (String) |
| 21 |
# define bindtextdomain(Domain,Directory) (Domain) |
| 22 |
#endif /* ENABLE_NLS */ |
| 23 |
|
| 24 |
#endif /* __INTL_H__ */ |
|