cleaning up translation strings

This commit is contained in:
Lars Brubaker 2021-12-20 12:19:32 -08:00
parent bc6e160493
commit e0a594abb2
10 changed files with 349 additions and 13 deletions

View file

@ -221,10 +221,10 @@ 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 + "°C\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()
+ "This will improve the accuracy of print leveling".Localize() + " "
+ "and ensure that no filament is stuck to your nozzle.".Localize() + "\n"
+ "\n"
+ "Warning! The tip of the nozzle will be HOT!".Localize() + "\n"
@ -233,13 +233,13 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
else if (targetBedTemp > 0)
{
// only heating the bed
heatingInstructions = "Waiting for the bed to heat to ".Localize() + targetBedTemp + "°C.\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 + "°C.\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"