영문화완료

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

@@ -359,7 +359,7 @@ namespace Project.Dialog
{
var drv = this.bs.Current as DataRowView;
if (drv == null) return;
var dlg = UTIL.MsgQ("현재 선택된 자료를 삭제하시겠습니까?");
var dlg = UTIL.MsgQ("Do you want to delete the currently selected data?");
if (dlg != System.Windows.Forms.DialogResult.Yes) return;
bs.RemoveCurrent();
this.ds1.MCModel.AcceptChanges();
@@ -408,9 +408,9 @@ namespace Project.Dialog
PUB.Result.mModel.ReadValue(dr.Title, this.ds1.MCModel);
if (PUB.Result.mModel.isSet)
{
PUB.log.AddAT("모션모델선택완료 : " + PUB.Result.mModel.Title);
PUB.log.AddAT("Motion model selection completed: " + PUB.Result.mModel.Title);
}
else UTIL.MsgE("적용 실패\n\n대상 모델 명이 없습니다");
else UTIL.MsgE("Apply failed\n\nTarget model name not found");
}
private void button4_Click(object sender, EventArgs e)
@@ -418,7 +418,7 @@ namespace Project.Dialog
var drv = this.bs.Current as DataRowView;
if (drv == null) return;
var dr = drv.Row as DataSet1.MCModelRow;
var dlg = UTIL.MsgQ(string.Format("다음 모델 정보를 복사하시겠습니까?\n\n모델명 : {0}", dr.Title));
var dlg = UTIL.MsgQ(string.Format("Do you want to copy the following model information?\n\nModel name: {0}", dr.Title));
if (dlg != System.Windows.Forms.DialogResult.Yes) return;
var newdr = this.ds1.MCModel.NewMCModelRow();
@@ -440,7 +440,7 @@ namespace Project.Dialog
{
if (PUB.mot.HasHomeSetOff)
{
UTIL.MsgE("모션의 홈이 완료되지 않았습니다\n메인화면에서 '장치초기화'를 진행 하세요");
UTIL.MsgE("Motion homing not completed\nPlease run 'Device Initialization' from the main screen");
return;
}
//현재값으로 모터를 이동
@@ -480,7 +480,7 @@ namespace Project.Dialog
{
if (PUB.mot.HasHomeSetOff)
{
UTIL.MsgE("모션의 홈이 완료되지 않았습니다\n메인화면에서 '장치초기화'를 진행 하세요");
UTIL.MsgE("Motion homing not completed\nPlease run 'Device Initialization' from the main screen");
return;
}
@@ -537,7 +537,7 @@ namespace Project.Dialog
private void toolStripButton1_Click(object sender, EventArgs e)
{
var dlg = UTIL.MsgQ("모든 이동좌표의 속도를 일괄 변경하시겠습니까?");
var dlg = UTIL.MsgQ("Do you want to batch change the speed of all movement coordinates?");
if (dlg != System.Windows.Forms.DialogResult.Yes) return;
var value = PUB.ChangeValuePopup(100.0, "일괄 속도 변경");
@@ -554,7 +554,7 @@ namespace Project.Dialog
private void toolStripButton2_Click_2(object sender, EventArgs e)
{
var dlg = UTIL.MsgQ("모든 이동좌표의 가(감)속도를 일괄 변경하시겠습니까?");
var dlg = UTIL.MsgQ("Do you want to batch change the acceleration/deceleration of all movement coordinates?");
if (dlg != System.Windows.Forms.DialogResult.Yes) return;
var value = PUB.ChangeValuePopup(100.0, "일괄 가(감)속도 변경");
@@ -571,7 +571,7 @@ namespace Project.Dialog
private void toolStripButton3_Click_1(object sender, EventArgs e)
{
var dlg = UTIL.MsgQ("모든 이동좌표의 감속도를 일괄 변경하시겠습니까?");
var dlg = UTIL.MsgQ("Do you want to batch change the deceleration of all movement coordinates?");
if (dlg != System.Windows.Forms.DialogResult.Yes) return;
var value = PUB.ChangeValuePopup(0, "일괄 감속도 변경");
@@ -737,11 +737,11 @@ namespace Project.Dialog
{
if (tn.Nodes.Count < 1)
{
UTIL.MsgE("하위 항목이 없습니다");
UTIL.MsgE("No sub items found");
return;
}
var dlg = UTIL.MsgQ($"{tn.Nodes.Count}건의 자료를 모두 추가 할까요?");
var dlg = UTIL.MsgQ($"Do you want to add all {tn.Nodes.Count} data items?");
if (dlg != DialogResult.Yes) return;
var ucnt = 0;
foreach (TreeNode node in tn.Nodes)
@@ -753,7 +753,7 @@ namespace Project.Dialog
ucnt += 1;
}
}
UTIL.MsgI($"{ucnt}건의 아이템이 추가 되었습니다");
UTIL.MsgI($"{ucnt} items have been added");
//현재목록을 리스트로 만들고 업데이트한.ㄷ
var drv = this.bsPos.Current as DataRowView;
var dr = drv.Row as DataSet1.MCModelRow;
@@ -785,7 +785,7 @@ namespace Project.Dialog
dr.EndEdit();
}
else UTIL.MsgE("이미 존재하는 항목 입니다.");
else UTIL.MsgE("This item already exists.");
}