File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
resources/mekhq/resources
src/mekhq/gui/dialog/markets/personnelMarket Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ title.personnelMarket.clan=++ACCESSING CASTE ASSIGNMENT TERMINAL++
44title.personnelMarket.comStarOrWoB =++WELCOME {0}, PRAISE BLAKE++
55title.personnelMarket.mercenary =++ACCESSING MERCNET RECRUITMENT SERVICES++
66title.personnelMarket.normal =++ACCESSING PERSONNEL REQUISITIONS++
7- button.personnelMarket.hire.normal =<html><b>Recruit</b></html>
7+ button.personnelMarket.close =Close
8+ button.personnelMarket.hire.normal =Recruit
89button.personnelMarket.hire.gm =Recruit (GM)
910button.personnelMarket.advanceDays =Advance Days
1011checkbox.personnelMarket.goldenHello =Offer Golden Hello
Original file line number Diff line number Diff line change @@ -341,6 +341,10 @@ private JPanel initializeButtonPanel() {
341341 boolean isGM = campaign .isGM ();
342342
343343 JPanel buttonPanel = new JPanel ();
344+ JButton closeButton = new JButton (getTextAt (RESOURCE_BUNDLE , "button.personnelMarket.close" ));
345+ closeButton .addActionListener (e -> closeAction ());
346+ buttonPanel .add (closeButton );
347+
344348 JButton hireButton = new JButton (getTextAt (RESOURCE_BUNDLE , "button.personnelMarket.hire.normal" ));
345349 hireButton .addActionListener (e -> hireActionListener (isGM ));
346350 buttonPanel .add (hireButton );
You can’t perform that action at this time.
0 commit comments