add °C to temps
This commit is contained in:
parent
8e8fdf8ae3
commit
def9826726
4 changed files with 8 additions and 8 deletions
|
|
@ -983,10 +983,10 @@ namespace MatterHackers.MatterControl
|
|||
return "Homing".Localize();
|
||||
|
||||
case DetailedPrintingState.HeatingBed:
|
||||
return "Waiting for Bed to Heat to".Localize() + $" {this.Connection.TargetBedTemperature}°";
|
||||
return "Waiting for Bed to Heat to".Localize() + $" {this.Connection.TargetBedTemperature}°C";
|
||||
|
||||
case DetailedPrintingState.HeatingExtruder:
|
||||
return "Waiting for Extruder to Heat to".Localize() + $" {this.Connection.GetTargetHotendTemperature(0)}°";
|
||||
return "Waiting for Extruder to Heat to".Localize() + $" {this.Connection.GetTargetHotendTemperature(0)}°C";
|
||||
|
||||
case DetailedPrintingState.Printing:
|
||||
default:
|
||||
|
|
|
|||
|
|
@ -263,7 +263,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
yield return new WaitForTempPage(
|
||||
this,
|
||||
"Waiting For Printer To Heat".Localize(),
|
||||
"Waiting for the hotend to heat to ".Localize() + targetHotendTemp + ".\n"
|
||||
"Waiting for the hotend to heat to ".Localize() + targetHotendTemp + "°C.\n"
|
||||
+ "This will ensure that filament is able to flow through the nozzle.".Localize() + "\n"
|
||||
+ "\n"
|
||||
+ "Warning! The tip of the nozzle will be HOT!".Localize() + "\n"
|
||||
|
|
|
|||
|
|
@ -193,8 +193,8 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
if (targetBedTemp > 0 && targetHotendTemp > 0)
|
||||
{
|
||||
// heating both the bed and the hotend
|
||||
heatingInstructions = "Waiting for the bed to heat to ".Localize() + targetBedTemp + "\n"
|
||||
+ "and the hotend to heat to ".Localize() + targetHotendTemp + ".\n"
|
||||
heatingInstructions = "Waiting for the bed to heat to ".Localize() + targetBedTemp + "°C\n"
|
||||
+ "and the hotend to heat to ".Localize() + targetHotendTemp + "°C.\n"
|
||||
+ "\n"
|
||||
+ "This will improve the accuracy of print leveling ".Localize()
|
||||
+ "and ensure that no filament is stuck to your nozzle.".Localize() + "\n"
|
||||
|
|
@ -205,13 +205,13 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
else if (targetBedTemp > 0)
|
||||
{
|
||||
// only heating the bed
|
||||
heatingInstructions = "Waiting for the bed to heat to ".Localize() + targetBedTemp + ".\n"
|
||||
heatingInstructions = "Waiting for the bed to heat to ".Localize() + targetBedTemp + "°C.\n"
|
||||
+ "This will improve the accuracy of print leveling.".Localize();
|
||||
}
|
||||
else // targetHotendTemp > 0
|
||||
{
|
||||
// only heating the hotend
|
||||
heatingInstructions += "Waiting for the hotend to heat to ".Localize() + targetHotendTemp + ".\n"
|
||||
heatingInstructions += "Waiting for the hotend to heat to ".Localize() + targetHotendTemp + "°C.\n"
|
||||
+ "This will ensure that no filament is stuck to your nozzle.".Localize() + "\n"
|
||||
+ "\n"
|
||||
+ "Warning! The tip of the nozzle will be HOT!".Localize() + "\n"
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
|
|||
yield return new WaitForTempPage(
|
||||
this,
|
||||
"Waiting For Printer To Heat".Localize(),
|
||||
"Waiting for the hotend to heat to ".Localize() + targetHotendTemp + ".\n"
|
||||
"Waiting for the hotend to heat to ".Localize() + targetHotendTemp + "°C.\n"
|
||||
+ "This will ensure that no filament is stuck to your nozzle.".Localize() + "\n"
|
||||
+ "\n"
|
||||
+ "Warning! The tip of the nozzle will be HOT!".Localize() + "\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue