00001 /** 00002 * \file eri18n.h 00003 * \brief ereader gtk library - Internationalization and localization 00004 */ 00005 00006 /* 00007 * This file is part of libergtk. 00008 * 00009 * libergtk is free software: you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation, either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * libergtk is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00021 */ 00022 00023 /** 00024 * Copyright (C) 2008 iRex Technologies B.V. 00025 * All rights reserved. 00026 */ 00027 00028 #include "config.h" 00029 #define GETTEXT_PACKAGE PACKAGE 00030 #include <glib/gi18n-lib.h> 00031 00032 /* We don't care about property translations */ 00033 #define P_(String) (String) 00034 00035 /* not really I18N-related, but also a string marker macro */ 00036 #define I_(string) g_intern_static_string (string)