영문화완료
This commit is contained in:
@@ -117,7 +117,7 @@ namespace Project
|
||||
{
|
||||
var o = (eSMStep)e.Old;
|
||||
var n = (eSMStep)e.New;
|
||||
PUB.log.AddI($"스텝전환({o} >> {n})");
|
||||
PUB.log.AddI($"Step transition({o} >> {n})");
|
||||
|
||||
//230313
|
||||
EEMStatus.AddStatusSQL(n);
|
||||
|
||||
@@ -80,7 +80,7 @@ namespace Project
|
||||
var runMethod = obj.GetMethod(runMethodName);
|
||||
if (runMethod == null)
|
||||
{
|
||||
PUB.log.AddE($"다음 명령이 구현되지 않았습니다 {methodName}/{runMethodName}");
|
||||
PUB.log.AddE($"The following command is not implemented {methodName}/{runMethodName}");
|
||||
PUB.Result.SetResultMessage(eResult.DEVELOP, eECode.NOFUNCTION, eNextStep.ERROR, methodName, runMethodName);
|
||||
}
|
||||
else
|
||||
@@ -101,7 +101,7 @@ namespace Project
|
||||
var rlt = (bool)runMethod.Invoke(this, param);
|
||||
if (rlt == true)
|
||||
{
|
||||
PUB.log.AddI("사용자스텝(자동) 실행완료 대기상태전환");
|
||||
PUB.log.AddI("User step(automatic) execution completed, switching to idle state");
|
||||
PUB.sm.SetNewStep(eSMStep.IDLE, true);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace Project
|
||||
var diPin = DIO.Pin.input.Where(t=>t.terminalno == e.ArrIDX).FirstOrDefault();
|
||||
if(diPin == null)
|
||||
{
|
||||
PUB.log.AddE($"DI INDEX:{e.ArrIDX} 에 해당하는 터미널 대상이 없습니다");
|
||||
PUB.log.AddE($"No terminal target found for DI INDEX:{e.ArrIDX}");
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -33,7 +33,7 @@ namespace Project
|
||||
var doPin = DIO.Pin.output.Where(t => t.terminalno == e.ArrIDX).FirstOrDefault();
|
||||
if (doPin == null)
|
||||
{
|
||||
PUB.log.AddE($"DO INDEX:{e.ArrIDX} 에 해당하는 터미널 대상이 없습니다");
|
||||
PUB.log.AddE($"No terminal target found for DO INDEX:{e.ArrIDX}");
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -108,7 +108,7 @@ namespace Project
|
||||
if (port == 3) SETTING.Counter.CountPrintR += value;
|
||||
else
|
||||
{
|
||||
PUB.log.AddAT(string.Format("[{0}] 미지정 포트이므로 수량 증가 불가", seq));
|
||||
PUB.log.AddAT(string.Format("[{0}] Cannot increase quantity as it is an unspecified port", seq));
|
||||
}
|
||||
|
||||
//Pub.log.AddI("수량정보가 저장 되었습니다");
|
||||
|
||||
@@ -62,9 +62,9 @@ namespace Project
|
||||
|
||||
PUB.Result.ResultCode = eResult.EMERGENCY;
|
||||
PUB.Result.ResultMessage = string.Format("EMERGENCY\n" +
|
||||
"비상정지 버튼({0})이 눌렸습니다\n" +
|
||||
"모든 모션이 강제 정지 합니다\n" +
|
||||
"비상 정지 버튼을 확인 한 후 시스템을 초기화 하세요", EmgButtonState);
|
||||
"Emergency stop button ({0}) has been pressed\n" +
|
||||
"All motions are forced to stop\n" +
|
||||
"Please check the emergency stop button and initialize the system", EmgButtonState);
|
||||
|
||||
PUB.log.AddI("SPS:Reserve Emergency Step");
|
||||
PUB.sm.SetNewStep(eSMStep.EMERGENCY);
|
||||
|
||||
@@ -40,7 +40,7 @@ namespace Project
|
||||
|
||||
if (pats.Any() == false)
|
||||
{
|
||||
PUB.log.AddAT($"등록된 패턴이 없습니다(SYM={barcodeSymbol})");
|
||||
PUB.log.AddAT($"No registered pattern(SYM={barcodeSymbol})");
|
||||
return new Tuple<int, List<string>>(0, new List<string>());
|
||||
}
|
||||
|
||||
@@ -50,19 +50,19 @@ namespace Project
|
||||
{
|
||||
if (vm.BCD_DM == false && barcodeSymbol == "2")
|
||||
{
|
||||
PUB.log.AddAT($"모델(DM)에서 비활성:{bcd}");
|
||||
PUB.log.AddAT($"Inactive in model(DM):{bcd}");
|
||||
IgnoreBarcode = true;
|
||||
return new Tuple<int, List<string>>(0, new List<string>());
|
||||
}
|
||||
else if (vm.BCD_1D == false && (barcodeSymbol == "6" || barcodeSymbol == "11"))
|
||||
{
|
||||
PUB.log.AddAT($"모델(1D)에서 비활성:{bcd}");
|
||||
PUB.log.AddAT($"Inactive in model(1D):{bcd}");
|
||||
IgnoreBarcode = true;
|
||||
return new Tuple<int, List<string>>(0, new List<string>());
|
||||
}
|
||||
else if (vm.BCD_QR == false && (barcodeSymbol == "1"))
|
||||
{
|
||||
PUB.log.AddAT($"모델(QR)에서 비활성:{bcd}");
|
||||
PUB.log.AddAT($"Inactive in model(QR):{bcd}");
|
||||
IgnoreBarcode = true;
|
||||
return new Tuple<int, List<string>>(0, new List<string>());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user