williamr@2: /* GLIB - Library of useful routines for C programming williamr@2: * Copyright (C) 1995-1997, 2002 Peter Mattis, Red Hat, Inc. williamr@2: * williamr@2: * This library is free software; you can redistribute it and/or williamr@2: * modify it under the terms of the GNU Lesser General Public williamr@2: * License as published by the Free Software Foundation; either williamr@2: * version 2 of the License, or (at your option) any later version. williamr@2: * williamr@2: * This library is distributed in the hope that it will be useful, williamr@2: * but WITHOUT ANY WARRANTY; without even the implied warranty of williamr@2: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU williamr@2: * Lesser General Public License for more details. williamr@2: * williamr@2: * You should have received a copy of the GNU Lesser General Public williamr@2: * License along with this library; if not, write to the williamr@2: * Free Software Foundation, Inc., 59 Temple Place - Suite 330, williamr@2: * Boston, MA 02111-1307, USA. williamr@2: */ williamr@2: #ifndef __G_I18N_LIB_H__ williamr@2: #define __G_I18N_LIB_H__ williamr@2: williamr@2: #include <glib/gstrfuncs.h> williamr@2: williamr@2: #include <libintl.h> williamr@2: williamr@2: #ifndef GETTEXT_PACKAGE williamr@2: #error You must define GETTEXT_PACKAGE before including gi18n-lib.h. williamr@2: #endif williamr@2: williamr@2: #define _(String) dgettext (GETTEXT_PACKAGE, String) williamr@2: #define Q_(String) g_strip_context ((String), dgettext (GETTEXT_PACKAGE, String)) williamr@2: #ifdef gettext_noop williamr@2: #define N_(String) gettext_noop (String) williamr@2: #else williamr@2: #define N_(String) (String) williamr@2: #endif williamr@2: williamr@2: #endif /* __G_I18N_LIB_H__ */ williamr@2: williamr@2: