Skip to content

Commit

Permalink
UI update for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
HikariCalyx committed Mar 12, 2024
1 parent cd23612 commit 2d4a424
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions WzComparerR2/FrmPatcher.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions WzComparerR2/FrmPatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,16 +108,16 @@ private void buttonXCheck_Click(object sender, EventArgs e)
item.GetFileLength();
if (item.FileLength > 0)
{
MessageBoxEx.Show(string.Format("Size: {0:N0} bytes. Last updated: {1:M-d-yyyy HH:mm:ss}", item.FileLength, item.LastModified));
MessageBoxEx.Show(string.Format("サイズ: {0:N0} バイト\n\r最終更新日: {1:yyyy年M月d日 HH:mm:ss}", item.FileLength, item.LastModified));
}
else
{
MessageBoxEx.Show("This file does not exist.");
MessageBoxEx.Show("このファイルは存在しません。");
}
}
catch (Exception ex)
{
MessageBoxEx.Show("Error: " + ex.Message);
MessageBoxEx.Show("エラー:" + ex.Message);
}
}

Expand Down Expand Up @@ -261,7 +261,7 @@ private void ExecutePatch(string patchFile, string msFolder, bool prePatch)
if (prePatch)
{
//advTreePatchFiles.Enabled = true;
AppendStateText("After selecting a patch file, you may click on the Patch button to start.\r\n");
AppendStateText("パッチファイルを選択した後、[パッチ] ボタンをクリックして開始します。\r\n");
waiting = true;
waitHandle.WaitOne();
//advTreePatchFiles.Enabled = false;
Expand Down

0 comments on commit 2d4a424

Please sign in to comment.