영문화완료

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

@@ -39,7 +39,7 @@ namespace Project.Class
if (int.TryParse(_sid, out sidNum) && sidNum.ToString().Length == 9)
SID = sidNum.ToString();
else
throw new Exception("SID가 숫자가 아니거나 9자리 숫자가 아닙니다.");
throw new Exception("SID is not a number or not a 9-digit number.");
venderLot = _lot;
mfg = _mfgdate;
@@ -52,7 +52,7 @@ namespace Project.Class
{
var spData = qrbarcodestr.Split(';');
if (spData.Length < 6)
throw new Exception("Barcode Length가 적습니다.");
throw new Exception("Barcode length is insufficient.");
SID = spData[0];
venderLot = spData[1];
@@ -63,7 +63,7 @@ namespace Project.Class
if (int.TryParse(spData[3], out _qty))
qty = _qty;
else
throw new Exception("수량란에 숫자 정보가 아닙니다.");
throw new Exception("Quantity field does not contain numeric information.");
id = spData[4];
mfg = spData[5];