From de27593bcd20ead8bb93c5ccfb00335d25059d15 Mon Sep 17 00:00:00 2001 From: John Lewin Date: Mon, 6 Aug 2018 15:28:56 -0700 Subject: [PATCH] Add space between concatenated localization strings - Issue MatterHackers/MCCentral#3938 need a space between 'leveling' and 'and' --- ConfigurationPage/PrintLeveling/PrintLevelingWizard.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConfigurationPage/PrintLeveling/PrintLevelingWizard.cs b/ConfigurationPage/PrintLeveling/PrintLevelingWizard.cs index 87aeb7bf1..fdb0138c6 100644 --- a/ConfigurationPage/PrintLeveling/PrintLevelingWizard.cs +++ b/ConfigurationPage/PrintLeveling/PrintLevelingWizard.cs @@ -123,7 +123,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling heatingInstructions = "Waiting for the bed to heat to ".Localize() + targetBedTemp +"\n" + "and the hotend to heat to ".Localize() + targetHotendTemp + ".\n" + "\n" - + "This will improve the accuracy of print leveling".Localize() + + "This will improve the accuracy of print leveling ".Localize() + "and ensure no filament is stuck to the tip of the extruder.".Localize() + "\n" + "\n" + "Warning! The tip of the nozzle will be HOT!".Localize() + "\n"