영문화완료

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

@@ -28,7 +28,7 @@ namespace Project.Dialog
uc.numericUpDown1.BackColor = Color.LightGray;
this.flowLayoutPanel1.Controls.Add(uc);
}
this.Text = "엑셀 가져오기(" + title + ")";
this.Text = "Excel Import(" + title + ")";
}
private void NumericUpDown1_ValueChanged(object sender, EventArgs e)
@@ -95,12 +95,12 @@ namespace Project.Dialog
if (sn < 1)
{
MessageBox.Show("시작 줄 번호는 0보다 커야 합니다");
MessageBox.Show("Start row number must be greater than 0");
return;
}
if (en < sn)
{
MessageBox.Show("종료 줄 번호는 시작 번호보다 커야 합니다");
MessageBox.Show("End row number must be greater than start number");
return;
}
@@ -124,7 +124,7 @@ namespace Project.Dialog
}
}
this.listView1.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
lbMsg.Text = $"미리보기는 최대 {previewcnt}개 까지 표시 됩니다";
lbMsg.Text = $"Preview displays up to {previewcnt} items";
}
private void numericUpDown2_ValueChanged(object sender, EventArgs e)
@@ -181,7 +181,7 @@ namespace Project.Dialog
private void tbUpdate_Click(object sender, EventArgs e)
{
//자료등록메세지
var dlg = MessageBox.Show(string.Format("{0}건의 자료를 등록 할까요?", this.numericUpDown2.Value), "확인", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
var dlg = MessageBox.Show(string.Format("Do you want to register {0} records?", this.numericUpDown2.Value), "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (dlg == DialogResult.Yes)
{
//먼저 컬럼 목록을 가져온다
@@ -193,7 +193,7 @@ namespace Project.Dialog
if (no == 0) continue;
if (collist.Where(t => t.Value == no).Any())
{
MessageBox.Show(string.Format("{0}번 열을 이미 지정된 열 입니다", no));
MessageBox.Show(string.Format("Column {0} is already assigned", no));
return;
}
collist.Add(col, no);
@@ -201,7 +201,7 @@ namespace Project.Dialog
if (collist.Count < 1)
{
MessageBox.Show("지정된 열이 없습니다");
MessageBox.Show("No columns have been assigned");
return;
}
@@ -228,7 +228,7 @@ namespace Project.Dialog
for (int i = sn; i <= en; i++)
{
this.prb1.Value = i;
this.lbMsg.Text = string.Format("{0}/{1} 추가:{2},SKIP:{3},중복추가:{4}", i, en, cntI, cntSkip, cntD);
this.lbMsg.Text = string.Format("{0}/{1} Added:{2},SKIP:{3},Duplicate:{4}", i, en, cntI, cntSkip, cntD);
if (i % 10 == 0) Application.DoEvents();
Dictionary<string, string> datalist = new Dictionary<string, string>();
@@ -430,9 +430,9 @@ namespace Project.Dialog
}
this.listView1.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
lbMsg.Text = string.Format("다음의 수량 만큼 자료가 변경 되었습니다\n" +
"추가:{0},중복추가:{1},SKIP:{2}\n" +
"메인 화면에서 '저장'을 클릭해야 최종 적용 됩니다", cntI, cntD, cntSkip);
lbMsg.Text = string.Format("The following amounts of data have been changed\n" +
"Added:{0},Duplicate:{1},SKIP:{2}\n" +
"Click 'Save' on the main screen to apply changes", cntI, cntD, cntSkip);
MessageBox.Show(lbMsg.Text);
if (cntI > 0 || cntD > 0) DialogResult = DialogResult.OK;
}