영문화완료

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

@@ -45,7 +45,7 @@ namespace Project
}
var reason = string.Join(",", lst);
PUB.log.Add("MOT", $"모터정지사유({e.axis}):{reason}:bit={bitstatus}");
PUB.log.Add("MOT", $"Motor stop reason ({e.axis}): {reason}: bit={bitstatus}");
}
@@ -61,7 +61,7 @@ namespace Project
}
else if (e.NewStatus == arDev.MOT.HOME_RESULT.HOME_SUCCESS)
{
PUB.log.AddI(string.Format("홈 검색이 완료되었습니다 축:{0}", e.Axis));
PUB.log.AddI(string.Format("Home search completed for axis: {0}", e.Axis));
}
}
}
@@ -71,7 +71,7 @@ namespace Project
{
if (e.IsError)
{
if (e.Message.IndexOf("동일위치") != -1 || e.Message.IndexOf("inposition") != -1)
if (e.Message.IndexOf("same position") != -1 || e.Message.IndexOf("inposition") != -1)
{ // Pub.log.AddAT("MOT:" + e.Message);
}
else PUB.log.AddE("MOT:" + e.Message);