Moved all the easy static localized strings to non-static strings

This commit is contained in:
Lars Brubaker 2017-03-01 13:48:49 -08:00
parent 9bd15f936f
commit 4d96a26cd0
10 changed files with 30 additions and 29 deletions

View file

@ -80,10 +80,10 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
public delegate Vector2 GetSizeFunction();
private static string slicingErrorMessage = "Slicing Error.\nPlease review your slice settings.".Localize();
private static string pressGenerateMessage = "Press 'generate' to view layers".Localize();
private static string fileNotFoundMessage = "File not found on disk.".Localize();
private static string fileTooBigToLoad = "GCode file too big to preview ({0}).".Localize();
private string slicingErrorMessage = "Slicing Error.\nPlease review your slice settings.".Localize();
private string pressGenerateMessage = "Press 'generate' to view layers".Localize();
private string fileNotFoundMessage = "File not found on disk.".Localize();
private string fileTooBigToLoad = "GCode file too big to preview ({0}).".Localize();
private Vector2 bedCenter;
private Vector3 viewerVolume;