00001 /* sbuild-i18n - gettext internationalisation macros 00002 * 00003 * Copyright © 2005 Roger Leigh <rleigh@debian.org> 00004 * 00005 * schroot is free software; you can redistribute it and/or modify it 00006 * under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; either version 2 of the License, or 00008 * (at your option) any later version. 00009 * 00010 * schroot is distributed in the hope that it will be useful, but 00011 * WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00018 * MA 02111-1307 USA 00019 * 00020 *********************************************************************/ 00021 00022 #ifndef SBUILD_I18N_H 00023 #define SBUILD_I18N_H 00024 00025 #include <libintl.h> 00026 00027 #define _(String) gettext (String) 00028 #ifdef gettext_noop 00029 #define N_(String) gettext_noop (String) 00030 #else 00031 #define N_(String) (String) 00032 #endif 00033 00034 #endif /* SBUILD_I18N_H */ 00035 00036 /* 00037 * Local Variables: 00038 * mode:C++ 00039 * End: 00040 */