1 /*
2  * glade-gtk.h
3  *
4  * Copyright (C) 2004 - 2011 Tristan Van Berkom.
5  *
6  * Author:
7  *   Tristan Van Berkom <tvb@gnome.org>
8  *
9  * This library is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as
11  * published by the Free Software Foundation; either version 2.1 of
12  * the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22  *
23  */
24 
25 #ifndef __GLADE_GTK_H__
26 #define __GLADE_GTK_H__
27 
28 #include <glib/gi18n-lib.h>
29 
30 #include <gladeui/glade-widget-adaptor.h>
31 
32 /* --------------------------------- Constants ------------------------------ */
33 
34 #define MNEMONIC_INSENSITIVE_MSG   _("This property does not apply unless Use Underline is set.")
35 #define NOT_SELECTED_MSG           _("Property not selected")
36 #define RESPID_INSENSITIVE_MSG     _("This property is only for use in dialog action buttons")
37 #define ACTION_APPEARANCE_MSG      _("This property is set to be controlled by an Action")
38 
39 #define ONLY_THIS_GOES_IN_THAT_MSG _("Only objects of type %s can be added to objects of type %s.")
40 
41 #define ACTION_ACCEL_INSENSITIVE_MSG _("The accelerator can only be set when inside an Action Group.")
42 
43 #define GLADE_TAG_ATTRIBUTES        "attributes"
44 #define GLADE_TAG_ATTRIBUTE         "attribute"
45 
46 #endif /* __GLADE_GTK_H__ */
47