Fix language of confirm message box.

This commit is contained in:
Kevin Pope 2014-11-04 20:59:35 -08:00
parent 2ce24de08c
commit 4d38ba8ef5

View file

@ -101,7 +101,7 @@ namespace MatterHackers.MatterControl
{
case MessageType.YES_NO:
{
Title = "MatterControl - " + "Input Required".Localize();
Title = "MatterControl - " + "Please Confirm".Localize();
Button yesButton = textImageButtonFactory.Generate(yesOk, centerText: true);
if (yesOk == "")
{
@ -115,7 +115,7 @@ namespace MatterHackers.MatterControl
yesButton.Cursor = Cursors.Hand;
buttonRow.AddChild(yesButton);
buttonRow.AddChild(new HorizontalSpacer());
//buttonRow.AddChild(new HorizontalSpacer());
Button noButton = textImageButtonFactory.Generate(no, centerText: true);
if (no == "")