영문화완료

This commit is contained in:
ChiKyun Kim
2025-09-09 17:24:19 +09:00
parent adb66451ca
commit 02028afc27
338 changed files with 2205 additions and 79829 deletions

View File

@@ -70,7 +70,7 @@ namespace ResultView.Dialog
if (this.tbInput.SelectionLength > 0)
{
//특정영역이 선택되었다
//A specific area has been selected
var head = tbInput.Text.Substring(0, tbInput.SelectionStart);
var tail = tbInput.Text.Substring(tbInput.SelectionLength + tbInput.SelectionStart);
tbInput.Text = head + tail;
@@ -121,7 +121,7 @@ namespace ResultView.Dialog
private void button2_Click(object sender, EventArgs e)
{
//앞에서 삭제
//Delete from front
if (this.tbInput.Text.Length < 1) return;
if (this.tbInput.Text.Length < 2) tbInput.Text = string.Empty;
else tbInput.Text = tbInput.Text.Substring(1);
@@ -131,7 +131,7 @@ namespace ResultView.Dialog
private void button3_Click(object sender, EventArgs e)
{
//두에서 삭제
//Delete from back
if (this.tbInput.Text.Length < 1) return;
if (this.tbInput.Text.Length < 2) tbInput.Text = string.Empty;
else tbInput.Text = tbInput.Text.Substring(0, tbInput.Text.Length - 1);