영문화완료
This commit is contained in:
@@ -111,7 +111,7 @@ namespace Project.Dialog
|
||||
//검색일자 검색
|
||||
if (dtED.Value < dtSD.Value)
|
||||
{
|
||||
UTIL.MsgE("검색종료일자가 시작일자보다 작습니다");
|
||||
UTIL.MsgE("End date is earlier than start date");
|
||||
dtSD.Value = dtED.Value;
|
||||
dtSD.Focus();
|
||||
return;
|
||||
@@ -233,7 +233,7 @@ namespace Project.Dialog
|
||||
|
||||
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 check the file?") == DialogResult.Yes)
|
||||
UTIL.RunExplorer(sd.FileName);
|
||||
}
|
||||
catch (Exception ex)
|
||||
@@ -282,7 +282,7 @@ namespace Project.Dialog
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
var str = tbFind.Text.Trim();
|
||||
var f = new AR.Dialog.fTouchKeyFull("검색어 입력", str);
|
||||
var f = new AR.Dialog.fTouchKeyFull("Enter search term", str);
|
||||
if (f.ShowDialog() != DialogResult.OK) return;
|
||||
tbFind.Text = f.tbInput.Text.Trim();
|
||||
FindData();
|
||||
|
||||
Reference in New Issue
Block a user