영문화완료

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

@@ -82,7 +82,7 @@ namespace ResultView
}
else
{
Pub.log.AddAT("기본 ZPL파일이 없어 설정파일의 내용을 사용합니다");
Pub.log.AddAT("Default ZPL file not found, using settings file content");
if (Pub.setting.PrinterForm7)
{
PrinterL.baseZPL = Properties.Settings.Default.ZPL7;
@@ -109,7 +109,7 @@ namespace ResultView
//검색일자 검색
if (dtED.Value < dtSD.Value)
{
Util.MsgE("검색종료일자가 시작일자보다 작습니다");
Util.MsgE("Search end date is earlier than start date");
dtSD.Value = dtED.Value;
dtSD.Focus();
return;
@@ -231,7 +231,7 @@ namespace ResultView
xls.save(sd.FileName);
Pub.log.Add("Export Data : " + sd.FileName);
if (Util.MsgQ("다음 파일이 생성되었습니다.\n\n" + sd.FileName + "\n\n파일을 확인하시겠습니까?") == DialogResult.Yes)
if (Util.MsgQ("The following file has been created.\n\n" + sd.FileName + "\n\nWould you like to view the file?") == DialogResult.Yes)
Util.RunExplorer(sd.FileName);
}
catch (Exception ex)
@@ -313,7 +313,7 @@ namespace ResultView
private void button1_Click(object sender, EventArgs e)
{
var str = tbFind.Text.Trim();
var f = new Dialog.fTouchKeyFull("검색어 입력", str);
var f = new Dialog.fTouchKeyFull("Enter Search Term", str);
if (f.ShowDialog() != DialogResult.OK) return;
tbFind.Text = f.tbInput.Text.Trim();
FindData();