Add localization, revise existing
This commit is contained in:
parent
6442f6485d
commit
e02293706e
1 changed files with 2 additions and 3 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue