fixed the spelling of label

an acronymed some variables txt -> text lbl -> label
This commit is contained in:
larsbrubaker 2014-04-15 10:11:56 -07:00
parent 8d07751dc7
commit 49c8a045a5
25 changed files with 188 additions and 188 deletions

View file

@ -17,9 +17,9 @@ namespace MatterHackers.MatterControl
public PrinterChooser(string selectedMake = null)
{
string defaultManufacturerLbl = LocalizedString.Get ("Select Make");
string defaultManufacturerLblFull = string.Format ("- {0} -", defaultManufacturerLbl);
ManufacturerDropList = new StyledDropDownList(defaultManufacturerLblFull);
string defaultManufacturerLabel = LocalizedString.Get("Select Make");
string defaultManufacturerLabelFull = string.Format("- {0} -", defaultManufacturerLabel);
ManufacturerDropList = new StyledDropDownList(defaultManufacturerLabelFull);
bool addOther = false;
string pathToWhitelist = Path.Combine(ApplicationDataStorage.Instance.ApplicationStaticDataPath, "OEMSettings", "PrinterSettingsWhitelist.txt");
string[] folderWhitelist = File.ReadAllLines(pathToWhitelist);
@ -82,9 +82,9 @@ namespace MatterHackers.MatterControl
public ModelChooser(string manufacturer)
{
string defaultModelDropDownLbl = LocalizedString.Get("Select Model");
string defaultModelDropDownLblFull = string.Format("- {0} -", defaultModelDropDownLbl);
ModelDropList = new StyledDropDownList(defaultModelDropDownLblFull);
string defaultModelDropDownLabel = LocalizedString.Get("Select Model");
string defaultModelDropDownLabelFull = string.Format("- {0} -", defaultModelDropDownLabel);
ModelDropList = new StyledDropDownList(defaultModelDropDownLabelFull);
string pathToModels = Path.Combine(ApplicationDataStorage.Instance.ApplicationStaticDataPath, "PrinterSettings", manufacturer);
if (Directory.Exists(pathToModels))
{