영문화완료

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

@@ -14,28 +14,28 @@ namespace Project
if (PUB.sm.Step == eSMStep.RUN)
{
//아무것도 하지 않는다
PUB.log.Add("동작중에는 START 버튼이 사용되지 않습니다");
PUB.log.Add("START button is not available during operation");
}
else if (PUB.sm.Step == eSMStep.IDLE) //일반대기상태
{
if (DIO.isVacOKL() > 0)
{
DIO.SetBuzzer(true);
PUB.popup.setMessage("PICKER ITEM DETECT\nPICKER 에서 아이템이 감지되었습니다\n[작업취소] 를 눌러서 아이템을 DROP 한 후 제거해주세요.");
PUB.popup.setMessage("PICKER ITEM DETECT\nItem detected in PICKER\nPress [Cancel Work] to DROP item and remove it.");
return;
}
else if (DIO.getCartSize(1) == eCartSize.None)
{
DIO.SetBuzzer(true);
PUB.popup.setMessage("로더에 카트가 장착되지 않았습니다");
PUB.popup.setMessage("Cart is not installed in loader");
return;
}
else if (DIO.GetIOInput(eDIName.PORTC_LIM_DN) == true && DIO.GetIOInput(eDIName.PORTC_DET_UP) == true)
{
//하단리밋과, 자재감지가 동시에 들어오면 overload 이다
DIO.SetBuzzer(true);
PUB.popup.setMessage("로더에 너무 많은 릴이 적재 되어 있습니다\n" +
"하단 리밋 센서와 상단 릴 감지 센서가 동시에 확인 됩니다");
PUB.popup.setMessage("Too many reels are loaded in the loader\n" +
"Bottom limit sensor and top reel detection sensor are both active");
return;
}
//else if (Util_DO.getCartSize(0) == eCartSize.None && Util_DO.getCartSize(2) == eCartSize.None)
@@ -68,14 +68,14 @@ namespace Project
//팝업메세지가 사라지도록 한다
PUB.popup.needClose = true;
PUB.sm.SetNewStep(eSMStep.RUN);
PUB.log.Add("[사용자 일시정지] 해제 => 작업이 계속됩니다");
PUB.log.Add("[User pause] released => Work continues");
}
else
{
//string msg = "SYSTEM {0}\n[RESET] 버튼을 누른 후 다시 시도하세요";
//msg = string.Format(msg, PUB.sm.Step);
//PUB.popup.setMessage(msg);
PUB.log.AddE($"[RESET] 버튼을 누른 후 다시 시도하세요");
PUB.log.AddE($"Press [RESET] button and try again");
}
}
}