영문화완료
This commit is contained in:
@@ -35,7 +35,7 @@ namespace Project
|
||||
var chgs = this.dataSet1.ErrorDescription.GetChanges();
|
||||
if (chgs != null && chgs.Rows.Count > 0)
|
||||
{
|
||||
if (UTIL.MsgQ("변경된 사항이 있습니다. 지금 닫으면 해당 내용이 손실됩니다. 화면을 닫을까요?") != DialogResult.Yes)
|
||||
if (UTIL.MsgQ("There are unsaved changes. If you close now, these changes will be lost. Do you want to close the window?") != DialogResult.Yes)
|
||||
{
|
||||
e.Cancel = true;
|
||||
return;
|
||||
@@ -192,7 +192,7 @@ namespace Project
|
||||
PUB.mdm.dataSet.AcceptChanges();
|
||||
PUB.mdm.SaveModelE();
|
||||
|
||||
UTIL.MsgI("저장 완료");
|
||||
UTIL.MsgI("Save completed");
|
||||
|
||||
//DialogResult = DialogResult.OK;
|
||||
}
|
||||
@@ -205,7 +205,7 @@ namespace Project
|
||||
private void exportCSVToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
var sd = new SaveFileDialog();
|
||||
sd.Filter = "탭으로 분리된 텍스트 파일(*.txt)|*.txt";
|
||||
sd.Filter = "Tab-separated text file(*.txt)|*.txt";
|
||||
if (sd.ShowDialog() != DialogResult.OK) return;
|
||||
|
||||
var sb = new System.Text.StringBuilder();
|
||||
|
||||
Reference in New Issue
Block a user