williamr@2
|
1 |
/* GLIB - Library of useful routines for C programming
|
williamr@2
|
2 |
* Copyright (C) 1995-1997, 2002 Peter Mattis, Red Hat, Inc.
|
williamr@2
|
3 |
*
|
williamr@2
|
4 |
* This library is free software; you can redistribute it and/or
|
williamr@2
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
williamr@2
|
6 |
* License as published by the Free Software Foundation; either
|
williamr@2
|
7 |
* version 2 of the License, or (at your option) any later version.
|
williamr@2
|
8 |
*
|
williamr@2
|
9 |
* This library is distributed in the hope that it will be useful,
|
williamr@2
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
williamr@2
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
williamr@2
|
12 |
* Lesser General Public License for more details.
|
williamr@2
|
13 |
*
|
williamr@2
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
williamr@2
|
15 |
* License along with this library; if not, write to the
|
williamr@2
|
16 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
williamr@2
|
17 |
* Boston, MA 02111-1307, USA.
|
williamr@2
|
18 |
*/
|
williamr@2
|
19 |
#ifndef __G_I18N_H__
|
williamr@2
|
20 |
#define __G_I18N_H__
|
williamr@2
|
21 |
|
williamr@2
|
22 |
#include <glib/gstrfuncs.h>
|
williamr@2
|
23 |
#include <libintl.h>
|
williamr@2
|
24 |
|
williamr@2
|
25 |
#define _(String) gettext (String)
|
williamr@2
|
26 |
#define Q_(String) g_strip_context ((String), gettext (String))
|
williamr@2
|
27 |
#ifdef gettext_noop
|
williamr@2
|
28 |
#define N_(String) gettext_noop (String)
|
williamr@2
|
29 |
#else
|
williamr@2
|
30 |
#define N_(String) (String)
|
williamr@2
|
31 |
#endif
|
williamr@2
|
32 |
|
williamr@2
|
33 |
#endif /* __G_I18N_H__ */
|
williamr@2
|
34 |
|
williamr@2
|
35 |
|