Merge pull request #1133 from techee/readme_rst
[geany-mirror.git] / src / support.h
blob7fde66f66ed15c920421c223f96232c10c8b1dc3
1 /*
2 * support.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2006-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2006-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program 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
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 /**
23 * @file support.h
24 * Defines internationalization macros.
25 * @see GLib's @c gi18n-lib.h.
26 **/
28 #ifndef GEANY_SUPPORT_H
29 #define GEANY_SUPPORT_H 1
31 #include <glib.h>
33 G_BEGIN_DECLS
35 #ifdef GETTEXT_PACKAGE
36 # include <glib/gi18n-lib.h>
37 #else
38 # define GETTEXT_PACKAGE NULL
39 # define textdomain(String) (String)
40 # define bind_textdomain_codeset(Domain,Codeset) (Codeset)
41 # define bindtextdomain(Domain,Dir) (Dir)
42 # define ngettext(String,PluralString,Number) (((Number) == 1) ? (String) : (PluralString))
43 # define _(String) String
44 # define N_(String) String
45 # define C_(Context,String) (String)
46 #endif
48 G_END_DECLS
50 #endif /* GEANY_SUPPORT_H */