영문화완료

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

@@ -80,7 +80,7 @@ namespace Project.Dialog
if (int.TryParse(qty, out int vqty) == false)
{
UTIL.MsgE("수량은 숫자로 입력하세요");
UTIL.MsgE("Please enter quantity as a number");
tbQty.SelectAll();
tbQty.Focus();
return;
@@ -103,13 +103,13 @@ namespace Project.Dialog
if (Printer.Print(zpl) == false)
{
//인쇄실패시 처리하지 않음
UTIL.MsgE("인쇄 실패로 인해 더이상 진행하지 않습니다");
UTIL.MsgE("Cannot proceed further due to printing failure");
break;
}
else
{
if (i == 0) //첫장만 로깅
PUB.log.Add("사용자 프린트 완료" + string.Join("|", new string[] { sid, lot, spy, qty, rid, mfg, pan }));
PUB.log.Add("User print completed" + string.Join("|", new string[] { sid, lot, spy, qty, rid, mfg, pan }));
}
System.Threading.Thread.Sleep(100);
}
@@ -183,7 +183,7 @@ namespace Project.Dialog
private void tbSID_Click(object sender, EventArgs e)
{
var tb = sender as TextBox;
var rlt = AR.UTIL.InputBox("값을 입력하세요", tb.Text, AR.UTIL.eInputbox.TouchFullSingleLine);
var rlt = AR.UTIL.InputBox("Please enter a value", tb.Text, AR.UTIL.eInputbox.TouchFullSingleLine);
if (rlt.Item1) tb.Text = rlt.Item2;
}
@@ -204,13 +204,13 @@ namespace Project.Dialog
var buf = tbBarcodeInput.Text.Trim().Split(';');
if (buf.Length != 7)
{
UTIL.MsgE("바코드 데이터가 7개가 아닙니다");
UTIL.MsgE("Barcode data does not contain 7 elements");
tbBarcodeInput.SelectAll();
return;
}
if (int.TryParse(buf[3], out var code) == false)
{
UTIL.MsgE("4번데이터(수량)가 숫자가 아닙니다\nAmkor STD 바코드만 허용 됩니다");
UTIL.MsgE("The 4th data (quantity) is not a number\nOnly Amkor STD barcodes are allowed");
return;
}
tbSID.Text = buf[0];