영문화완료

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

@@ -34,7 +34,7 @@ namespace Project.Dialog
//// = new Dialog.fBlurPanel();
//fb.Show();
}
this.Text = $"작업 시작({PUB.Result.vModel.Title})";
this.Text = $"Job Start ({PUB.Result.vModel.Title})";
PUB.flag.set(eVarBool.FG_SCR_JOBSELECT, true, "selectjbo");
PUB.dio.IOValueChanged += Dio_IOValueChanged;
@@ -42,12 +42,12 @@ namespace Project.Dialog
//var visionoff = PUB.Result.vModel.DisableCamera || (SETTING.Data.Enable_Unloader_QRValidation == false);
List<string> offlist = new List<string>();
if (SETTING.Data.SystemBypass || PUB.Result.vModel.DisableCamera || SETTING.Data.Enable_Unloader_QRValidation == false)
offlist.Add("카메라");
offlist.Add("Camera");
if (SETTING.Data.SystemBypass || PUB.Result.vModel.DisablePrinter || (SETTING.Data.Disable_PrinterL && SETTING.Data.Disable_PrinterR))
offlist.Add("프린터");
offlist.Add("Printer");
if (offlist.Any())
{
var msg = "(" + string.Join("/", offlist) + ") 사용이 OFF 되었습니다";
var msg = "(" + string.Join("/", offlist) + ") usage is turned OFF";
lbMsgCamoff.Text = msg;
}
@@ -87,7 +87,7 @@ namespace Project.Dialog
ta.Fill(this.dataSet11.K4EE_Component_Reel_PreSet, "R1");
//작업형태를 다시 시작해준다. - 210329
if (PUB.Result.JobType2.isEmpty()) PUB.Result.JobType2 = "모델정보";
if (PUB.Result.JobType2.isEmpty()) PUB.Result.JobType2 = "Model Info";
Func_SelectJobType("M");
}
@@ -136,12 +136,12 @@ namespace Project.Dialog
if (this.ModeData.isEmpty() || this.ModeData == "--")
{
UTIL.MsgE("작업 방식이 선택되지 않았습니다");
UTIL.MsgE("Work method is not selected");
return;
}
if (this.ModeData == "--")
{
UTIL.MsgE("사용할 수 없는 작업방법 입니다");
UTIL.MsgE("Unusable work method");
return;
}
if (GrpSidConvData.Enabled)
@@ -150,12 +150,12 @@ namespace Project.Dialog
var v = CheckDataIn(GrpSidConvData);
if (v.Item1 < 1)
{
UTIL.MsgE("서버기록 항목 중 대상항목이 지정되지 않았습니다");
UTIL.MsgE("Target item is not specified among server record items");
return;
}
if (v.Item2 < 1)
{
UTIL.MsgE("서버기록 항목 중 검색항목이 지정되지 않았습니다");
UTIL.MsgE("Search item is not specified among server record items");
return;
}
}
@@ -165,12 +165,12 @@ namespace Project.Dialog
var v = CheckDataIn(grpapplyjob);
if (v.Item1 < 1)
{
UTIL.MsgE("당일작업 항목 중 대상항목이 지정되지 않았습니다");
UTIL.MsgE("Target item is not specified among daily work items");
return;
}
if (v.Item2 < 1)
{
UTIL.MsgE("당일작업 항목 중 검색항목이 지정되지 않았습니다");
UTIL.MsgE("Search item is not specified among daily work items");
return;
}
}
@@ -180,12 +180,12 @@ namespace Project.Dialog
var v = CheckDataIn(grpApplySidinfo);
if (v.Item1 < 1)
{
UTIL.MsgE("SID정보 항목 중 대상항목이 지정되지 않았습니다");
UTIL.MsgE("Target item is not specified among SID information items");
return;
}
if (v.Item2 < 1)
{
UTIL.MsgE("SID정보 항목 중 검색항목이 지정되지 않았습니다");
UTIL.MsgE("Search item is not specified among SID information items");
return;
}
}
@@ -218,11 +218,11 @@ namespace Project.Dialog
PUB.Result.DTSidConvert.AcceptChanges();
PUB.Result.DTSidConvertEmptyList.Clear();
PUB.Result.DTSidConvertMultiList.Clear();
PUB.log.Add($"sid변환테이블 {PUB.Result.DTSidConvert.Rows.Count}건 확인");
PUB.log.Add($"sid conversion table {PUB.Result.DTSidConvert.Rows.Count} cases confirmed");
}
catch (Exception ex)
{
UTIL.MsgE("SID변환정보 확인실패\n" + ex.Message);
UTIL.MsgE("SID conversion information check failed\n" + ex.Message);
return;
}
}
@@ -360,7 +360,7 @@ namespace Project.Dialog
{
if (mode.Equals("--"))
{
UTIL.MsgE("사용할 수 없는 버튼 입니다");
UTIL.MsgE("Unusable button");
return;
}
ModeData = mode;
@@ -450,17 +450,17 @@ namespace Project.Dialog
var tagstr = bt.Tag.ToString();
if (tagstr == "M") //모델기본
{
UTIL.MsgI("이 모델은 기본모델입니다 [작업모델] 화면에서 업데이트 하세요");
UTIL.MsgI("This model is a default model. Please update it on the [Work Model] screen");
}
else
{
var dlg = UTIL.MsgQ($"{txt} 항목 옵션을 현재 값으로 변경 할까요??");
var dlg = UTIL.MsgQ($"Do you want to change the {txt} item option to the current value??");
if (dlg != DialogResult.Yes) return;
var dr = this.dataSet11.K4EE_Component_Reel_PreSet.Where(t => t.Title == txt).FirstOrDefault();
if (dr == null)
{
UTIL.MsgE("프리셋 정보를 찾을 수 없어 신규로 생성합니다");
UTIL.MsgE("Preset information not found, creating new preset");
return;
}
dr.MC = "R1";// AR.SETTING.Data.McName;
@@ -499,7 +499,7 @@ namespace Project.Dialog
var ta = new DataSet1TableAdapters.K4EE_Component_Reel_PreSetTableAdapter();
var rlt = ta.Update(this.dataSet11.K4EE_Component_Reel_PreSet) == 1;
if (rlt == false) UTIL.MsgE("변경 실패");
if (rlt == false) UTIL.MsgE("Change failed");
}