Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / camel-i18n.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  *  Authors: Jeffrey Stedfast <fejj@ximian.com>
4  *
5  *  Copyright 2002 Ximian, Inc. (www.ximian.com)
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU Lesser General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  */
22
23 #ifndef CAMEL_DISABLE_DEPRECATED
24
25 #ifndef __CAMEL_I18N_H__
26 #define __CAMEL_I18N_H__
27
28 #include <glib.h>
29
30 #ifdef ENABLE_NLS
31 #    include <libintl.h>
32 #    ifdef CAMEL_EXPLICIT_TRANSLATION_DOMAIN
33 #        undef _
34 #        define _(String) dgettext (CAMEL_EXPLICIT_TRANSLATION_DOMAIN, String)
35 #    else 
36 #        define _(String) gettext (String)
37 #    endif
38 #    ifdef gettext_noop
39 #        define N_(String) gettext_noop (String)
40 #    else
41 #        define N_(String) (String)
42 #    endif
43 #else
44 /* Stubs that do something close enough.  */
45 #    define textdomain(String) (String)
46 #    define gettext(String) (String)
47 #    define dgettext(Domain,Message) (Message)
48 #    define dcgettext(Domain,Message,Type) (Message)
49 #    define bindtextdomain(Domain,Directory) (Domain)
50 #    define _(String) (String)
51 #    define N_(String) (String)
52 #endif
53
54 #endif /* __CAMEL_I18N_H__ */
55
56 #endif /* CAMEL_DISABLE_DEPRECATED */