diff --git a/src/main/java/views/MainPanel.java b/src/main/java/views/MainPanel.java index 93fc672..c780527 100644 --- a/src/main/java/views/MainPanel.java +++ b/src/main/java/views/MainPanel.java @@ -88,33 +88,33 @@ iAttack.shiftTurn(); var bot = new BotIntelligence(); - JOptionPane.showMessageDialog(null,"Bot`s Turn."); + JOptionPane.showMessageDialog(null,"Botのターンです。"); var selectText = ""; var atk =0; if(!iAttack.isDeckLess()){ //デッキにカードが存在するとき paintDrawCard(iAttack);//デッキから引いたカードを描画する - selectText = "Bot drew."; + selectText = "Botはカードをドローしました。"; }else{ atk= bot.selectAttacker(iAttack); opponentHandButtons.get(atk).setEnabledSelection(true); - selectText = "Bot selected. "; + selectText = "Botはアタックに使用するカードを選びました。"; } JOptionPane.showMessageDialog(null,selectText); var targetText = ""; var tar = bot.selectTarget(iAttack); myHandButtons.get(tar).setEnabledSelection(true); - JOptionPane.showMessageDialog(null,"Bot targeted this."); + JOptionPane.showMessageDialog(null,"Botはこのカードを対象にしました。"); var dec = bot.declareNumber(iAttack, tar); - JOptionPane.showMessageDialog(null,"Bot declared "+ dec +"."); + JOptionPane.showMessageDialog(null,"Botは\""+ dec +"\"を宣言しました。"); iAttack.Attack(dec, atk, tar); boolean isSucceed=iAttack.isSucceedLatestAttack(); - String resultMessage="Bot`s Attack Was "; - resultMessage+=isSucceed?"Succeed.":"Failed."; + String resultMessage="Botのアタックは "; + resultMessage+=isSucceed?"成功しました。":"失敗しました。"; JOptionPane.showMessageDialog(null,resultMessage); myHandButtons.get(tar).setEnabledSelection(false); @@ -183,7 +183,7 @@ if(!iAttack.isDeckLess())return;//デッキがあるときは何も反応しないように for(var my:myHandButtons)my.setEnabledSelection(false); cardButton.setEnabledSelection(true); - var option = JOptionPane.showConfirmDialog(null, "Attack with This Card?", "confirmation", 2); + var option = JOptionPane.showConfirmDialog(null, "このカードを使ってアタックをしますか?", "confirmation", 2); if (option == JOptionPane.YES_OPTION){ @@ -211,7 +211,7 @@ public void actionPerformed(ActionEvent e) { if(!iAttack.isDeckLess())isDecidedAttacker=true; if(!isDecidedAttacker){ - JOptionPane.showMessageDialog(null, "Select Attacker from Your Hands. ", "Warn", + JOptionPane.showMessageDialog(null, "あなたの手札からアタックに使用するカードを選んでください. ", "Warn", JOptionPane.WARNING_MESSAGE); return; } @@ -219,7 +219,7 @@ cardButton.setEnabledSelection(true); //相手のカードを選択したときに確認用ダイアログを出す - var option = JOptionPane.showConfirmDialog(null, "Select This Card?", "confirmation", 2); + var option = JOptionPane.showConfirmDialog(null, "このカードを選びますか?", "confirmation", 2); if (option == JOptionPane.YES_OPTION) { target = opponentHands.size()-index;//画面上,相手の手札も自分の手札と同じように左から右へ並べられているため,それを補正するために反転させている var t = index; @@ -228,7 +228,7 @@ for (var i = 0; i < optionsToChoose.length; i++) optionsToChoose[i] = String.valueOf(i); var getDeclaredNumber = (String) JOptionPane.showInputDialog( null, - "What number is this card?", + "このカードの数字を宣言してください。", "Declare Number", JOptionPane.QUESTION_MESSAGE, null, @@ -242,8 +242,8 @@ boolean isSucceed=iAttack.isSucceedLatestAttack(); - String resultMessage="Your Attack Was "; - resultMessage+=isSucceed?"Succeed.":"Failed."; + String resultMessage="あなたのアタックは"; + resultMessage+=isSucceed?"成功しました。":"失敗しました。"; JOptionPane.showMessageDialog(null,resultMessage); }else{ setStep(Step.SelectOpponentHands); @@ -275,19 +275,19 @@ public void playerBehave(IAttack iAttack){ isDecidedAttacker=false; - JOptionPane.showMessageDialog(null,"Your Turn."); + JOptionPane.showMessageDialog(null,"あなたのターンです。"); var selectText = ""; var atk =0; if(!iAttack.isDeckLess()){ //デッキにカードが存在するとき - selectText = "You drew \""+ iAttack.getTopCard().getKey()+"\"."; + selectText = "あなたは数字\""+ iAttack.getTopCard().getKey()+"\"のカードをドローしました。"; }else{ - selectText = "Select Card used in Your Attack from Your Hands."; + selectText = "アタックに使用するカードを手札から選んでください。"; } paintDrawCard(iAttack); JOptionPane.showMessageDialog(null,selectText); - if(!iAttack.isDeckLess())JOptionPane.showMessageDialog(null,"Select Card from Opponent`s Hands."); + if(!iAttack.isDeckLess())JOptionPane.showMessageDialog(null,"アタックする対象を相手の手札から選んでください。"); } @@ -348,9 +348,9 @@ validate(); repaint(); if(iAttack.isALose()){ - JOptionPane.showMessageDialog(null,"Bot Win."); + JOptionPane.showMessageDialog(null,"Botが勝利しました。"); }else if(iAttack.isBLose()){ - JOptionPane.showMessageDialog(null,"You Win."); + JOptionPane.showMessageDialog(null,"あなたが勝利しました。"); } }