영문화완료
This commit is contained in:
@@ -53,14 +53,14 @@ namespace Project.Dialog
|
||||
private void toolStripButton1_Click(object sender, EventArgs e)
|
||||
{
|
||||
//load
|
||||
if (UTIL.MsgQ("다시 불러 올까요?") == DialogResult.Yes)
|
||||
if (UTIL.MsgQ("Do you want to reload?") == DialogResult.Yes)
|
||||
this.richTextBox1.Text = System.IO.File.ReadAllText(this.fn, System.Text.Encoding.Default);
|
||||
}
|
||||
|
||||
private void toolStripButton2_Click(object sender, EventArgs e)
|
||||
{
|
||||
//save
|
||||
if (UTIL.MsgQ("저장 할까요?") == DialogResult.Yes)
|
||||
if (UTIL.MsgQ("Do you want to save?") == DialogResult.Yes)
|
||||
System.IO.File.WriteAllText(this.fn, this.richTextBox1.Text.Trim(), System.Text.Encoding.Default);
|
||||
}
|
||||
|
||||
@@ -69,7 +69,7 @@ namespace Project.Dialog
|
||||
//right
|
||||
if (PUB.PrinterR.IsOpen)
|
||||
PUB.PrinterR.Print(this.richTextBox1.Text);
|
||||
else PUB.log.AddAT("프린터R연결 안됨");
|
||||
else PUB.log.AddAT("Printer R not connected");
|
||||
}
|
||||
|
||||
private void toolStripButton3_Click(object sender, EventArgs e)
|
||||
@@ -78,7 +78,7 @@ namespace Project.Dialog
|
||||
if (PUB.PrinterL.IsOpen)
|
||||
PUB.PrinterL.Print(this.richTextBox1.Text);
|
||||
else
|
||||
PUB.log.AddAT("프린터L 연결 안됨");
|
||||
PUB.log.AddAT("Printer L not connected");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user