]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/meshtex/GenericPluginUIMessages.h
Merge branch 'NateEag-master-patch-12920' into 'master'
[xonotic/netradiant.git] / contrib / meshtex / GenericPluginUIMessages.h
1 /**
2  * @file GenericPluginUIMessages.h
3  * String constants for messages shown in dialogs.
4  * @ingroup generic-ui
5  */
6
7 /*
8  * Copyright 2012 Joel Baxter
9  *
10  * This file is part of MeshTex.
11  *
12  * MeshTex is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * MeshTex is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with MeshTex.  If not, see <http://www.gnu.org/licenses/>.
24  */
25
26 #if !defined(INCLUDED_GENERICPLUGINUIMESSAGES_H)
27 #define INCLUDED_GENERICPLUGINUIMESSAGES_H
28
29 /// @name Window titles
30 //@{
31 #define DIALOG_ERROR_TITLE "Error"
32 #define DIALOG_WARNING_TITLE "Warning"
33 //@}
34
35 /// @name Window content
36 //@{
37 #define DIALOG_INTERNAL_ERROR "Internal error in plugin code."
38 //@}
39
40 /// @name Button labels
41 //@{
42 #define DIALOG_CANCEL_BUTTON "Cancel"
43 #define DIALOG_APPLY_BUTTON "Apply"
44 #define DIALOG_OK_BUTTON "OK"
45 //@}
46
47 #endif // #if !defined(INCLUDED_GENERICPLUGINUIMESSAGES_H)