changed kicker/replicate message

master
beholder 2012-03-22 11:36:32 +01:00
parent 1ec6ba2fc5
commit 7acac77711
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ public class MultiKickerChoicePanel extends JPanel implements ActionListener {
setOpaque(false); setOpaque(false);
final String message = "Choose how many times to pay the " + final String message = "Choose how many times to pay the " +
(replicate ? "replicate " : "kicker ") + cost.getText() + "."; (replicate ? "replicate " : "kicker ") +
"cost of " + cost.getText() + ".";
final TextLabel textLabel=new TextLabel(GameController.getMessageWithSource(source,message),GameViewer.TEXT_WIDTH,true); final TextLabel textLabel=new TextLabel(GameController.getMessageWithSource(source,message),GameViewer.TEXT_WIDTH,true);
add(textLabel,BorderLayout.CENTER); add(textLabel,BorderLayout.CENTER);