1 | /* |
---|
2 | * Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation |
---|
3 | * All rights reserved. |
---|
4 | * |
---|
5 | * This file is part of the Gnome Library. |
---|
6 | * |
---|
7 | * The Gnome Library is free software; you can redistribute it and/or |
---|
8 | * modify it under the terms of the GNU Library General Public License as |
---|
9 | * published by the Free Software Foundation; either version 2 of the |
---|
10 | * License, or (at your option) any later version. |
---|
11 | * |
---|
12 | * The Gnome Library 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 GNU |
---|
15 | * Library General Public License for more details. |
---|
16 | * |
---|
17 | * You should have received a copy of the GNU Library General Public |
---|
18 | * License along with the Gnome Library; see the file COPYING.LIB. If not, |
---|
19 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
20 | * Boston, MA 02111-1307, USA. |
---|
21 | */ |
---|
22 | /* |
---|
23 | @NOTATION@ |
---|
24 | */ |
---|
25 | |
---|
26 | /* |
---|
27 | * Handles i18n for the Gnome libraries. Libraries need to use |
---|
28 | * dgettext in order to use a non-default translation domain. |
---|
29 | * Author: Tom Tromey <tromey@creche.cygnus.com> |
---|
30 | */ |
---|
31 | |
---|
32 | #ifndef __GNOME_I18NP_H__ |
---|
33 | #define __GNOME_I18NP_H__ 1 |
---|
34 | |
---|
35 | #ifndef GNOME_EXPLICIT_TRANSLATION_DOMAIN |
---|
36 | # define GNOME_EXPLICIT_TRANSLATION_DOMAIN GETTEXT_PACKAGE |
---|
37 | #endif |
---|
38 | #include "gnome-i18n.h" |
---|
39 | |
---|
40 | #endif /* __GNOME_I18NP_H__ */ |
---|