Add localization, revise existing

This commit is contained in:
John Lewin 2016-03-22 07:39:14 -07:00
parent 6442f6485d
commit e02293706e

View file

@ -690,14 +690,13 @@ namespace MatterHackers.MatterControl.PrinterCommunication
return "Disconnecting".Localize();
case CommunicationStates.AttemptingToConnect:
string connectingMessageTxt = "Connecting".Localize();
return "{0}...".FormatWith(connectingMessageTxt);
return "Connecting".Localize() + "...";
case CommunicationStates.ConnectionLost:
return "Connection Lost".Localize();
case CommunicationStates.FailedToConnect:
return "Unable to Connect";
return "Unable to Connect".Localize();
case CommunicationStates.Connected:
return "Connected".Localize();