Skip to content

Commit

Permalink
Exp計算パネルにラベル追加、バージョン番号を上げ忘れていたのを修正、ローカライズ上のミスを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
hizum authored and hizum committed Sep 12, 2020
1 parent 0ee8686 commit 937fb6e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/languages/List_ja_JP.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MSGSwitchToPotential:\u8B5C\u9762\u5225\u30DD\u30C6\u30F3\u30B7\u30E3\u30EB\u3092\u8A08\u7B97\u3059\u308B
MSGSwitchToStep:\u30B9\u30C6\u30C3\u30D7\u5024\u30DD\u30C6\u30F3\u30B7\u30E3\u30EB\u3092\u8A08\u7B97\u3059\u308B
MSGSwitchToStep:\u30B9\u30C6\u30C3\u30D7\u5024\u3092\u8A08\u7B97\u3059\u308B
MSGSwitchToExp:\u7D4C\u9A13\u5024\u3092\u8A08\u7B97\u3059\u308B
MSGSwitchToPerformance:\u30D1\u30D5\u30A9\u30FC\u30DE\u30F3\u30B9\u30EC\u30FC\u30C8\u3092\u8A08\u7B97\u3059\u308B
MSGSwitchToChartConstant:\u8B5C\u9762\u5B9A\u6570\u3092\u8A08\u7B97\u3059\u308B
Expand Down
42 changes: 26 additions & 16 deletions src/main/ArcaeaCalculationTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ArcaeaCalculationTools extends JFrame {
* Serial Wrote at 20200/06/17
*/
private static final long serialVersionUID = 1796950740947109175L;
private static final String VERSION = "Ver. 0.1.0-Alpha";
private static final String VERSION = "Ver. 0.1.2-Alpha";
public static final String[] PACK_NAME = {
"MemoryArchive",
"Arcaea",
Expand Down Expand Up @@ -155,9 +155,7 @@ public class ArcaeaCalculationTools extends JFrame {
private final JLabel PotentialYourScoreLabel = new JLabel(Messages.MSGShowScore.toString());
private final JLabel PotentialChartPotentialResultShowLabel = new JLabel();
private final JLabel PotentialGradeResultsShowLabel = new JLabel();
private final JLabel label = new JLabel("収録パック");
private final JLabel label_1 = new JLabel("楽曲名");
private final JLabel label_2 = new JLabel("譜面別難易度");
private final JLabel StepsPackLabel = new JLabel("収録パック");

/**
* Launch the application.
Expand Down Expand Up @@ -454,18 +452,30 @@ public void actionPerformed(ActionEvent e) {
Steps.add(StepsLabel);
StepsLabel.setMaximumSize(new Dimension(60, 20));
StepsLabel.setFont(new Font("UD デジタル 教科書体 NP-B", Font.PLAIN, 20));
label.setFont(new Font("Dialog", Font.PLAIN, 18));
label.setBounds(182, 189, 105, 21);

Steps.add(label);
label_1.setFont(new Font("Dialog", Font.PLAIN, 18));
label_1.setBounds(468, 181, 105, 21);

Steps.add(label_1);
label_2.setFont(new Font("Dialog", Font.PLAIN, 18));
label_2.setBounds(859, 187, 150, 21);

Steps.add(label_2);
StepsPackLabel.setFont(new Font("UD デジタル 教科書体 NP-B", Font.PLAIN, 20));
StepsPackLabel.setBounds(165, 180, 100, 24);

Steps.add(StepsPackLabel);

JLabel StepsTitleLable = new JLabel("楽曲名");
StepsTitleLable.setFont(new Font("UD デジタル 教科書体 NP-B", Font.PLAIN, 20));
StepsTitleLable.setBounds(413, 180, 60, 24);
Steps.add(StepsTitleLable);

JLabel StepsScoreLabel = new JLabel("スコア");
StepsScoreLabel.setFont(new Font("UD デジタル 教科書体 NP-B", Font.PLAIN, 20));
StepsScoreLabel.setBounds(613, 180, 60, 24);
Steps.add(StepsScoreLabel);

JLabel StepsLvLabel = new JLabel("レベル");
StepsLvLabel.setFont(new Font("UD デジタル 教科書体 NP-B", Font.PLAIN, 20));
StepsLvLabel.setBounds(1058, 180, 60, 24);
Steps.add(StepsLvLabel);

JLabel StepsParterLabel = new JLabel("パートナー名");
StepsParterLabel.setFont(new Font("UD デジタル 教科書体 NP-B", Font.PLAIN, 20));
StepsParterLabel.setBounds(797, 180, 120, 24);
Steps.add(StepsParterLabel);
Exp.setName("Exp");

contentPane.add(Exp, Exp.getName());
Expand Down

0 comments on commit 937fb6e

Please sign in to comment.