ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
sraf_msg.h
1 
2 /* ScummVM - Graphic Adventure Engine
3  *
4  * ScummVM is the legal property of its developers, whose names
5  * are too numerous to list here. Please refer to the COPYRIGHT
6  * file distributed with this source distribution.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22 
23 #ifndef BAGEL_SPACEBAR_SRAF_MSG_H
24 #define BAGEL_SPACEBAR_SRAF_MSG_H
25 
26 namespace Bagel {
27 namespace SpaceBar {
28 
29 // Messages for "submit offer" button on the deal summary
30 
31 #define kszOfferAccepted "Your offer has been accepted! You must now select a secure code name for this deal."
32 #define kszUnresolvedSeller "%s's terms have not yet been resolved. You must chat with this seller first."
33 #define kszMiningConflict "You have committed %s to %s and %s. Please resolve this conflict."
34 #define kszOfferNotEnough "Your offer is short by %dgZ. Please raise additional funds."
35 #define kszGungNotHappy "Gung-14 has backed out of this offer because you included %s in this offer."
36 #define kszHemNotHappy "Hem-20 refuses to enter into this deal as long as Dippik-10 is one of the backers."
37 #define kszDorkNotHappy "Dork-44 refuses to enter into this deal because the makeup of backers is not at least half female."
38 #define kszJellaNotHappy "You have committed Crop Harvesting rights to %s but Jella-37's Lumber Harvesting bid implicitly includes Crop Harvesting. Please resolve this conflict."
39 #define kszSinjinNotHappy "Sinjin-11 has backed out of this offer because you included Dork-44 on this team. He's still upset about the Zwix incident."
40 #define kszUnresolvedEnriro "The Environmentalists have not signed off on this deal yet. You must resolve this situation first."
41 #define kszFinishCodeWords "Please finish selecting your code words for this deal."
42 
43 // Messages for "Dispatch negotiating Team" button in the dispatch section
44 
45 #define kszNotEvenClose "You have not assigned anyone to your team and you have not selected anyone for your team to meet with."
46 #define kszNoNegotiators "You have not assigned anyone for your negotiation team to meet with."
47 #define kszNoTeamMembers "You have not assigned anyone to your negotiation team."
48 #define ksz3MeetingTargets "You have assigned your negotiating team to meet with %s, %s and %s, they can only meet with one at a time."
49 #define ksz2MeetingTargets "You have assigned your negotiating team to meet with %s and %s, they can only meet with one at a time."
50 
51 #define kszCantMeetQuosh "But, boss! Quosh-23 is with you!"
52 #define kszCantMeetIrk "But, boss! Irk-4 is with you!"
53 
54 #define kszCantRenegSeller "But, boss! D7 Realty has already talked this seller down!"
55 #define kszCantRenegBuyer "But, boss! D7 Realty has already talked this buyer up!"
56 #define kszCantRenegOther "But, boss! D7 Realty has already resolved the terms for this party!"
57 
58 } // namespace SpaceBar
59 } // namespace Bagel
60 
61 #endif
Definition: bagel.h:31