Change constants to variable, for translation and for consistency.

This commit is contained in:
Tim Young 2018-09-21 12:43:40 -05:00
parent ea710bd92f
commit b971a729cb
1 changed files with 8 additions and 4 deletions

View File

@ -53,6 +53,10 @@ namespace EduNetworkBuilder
int EditableCount = -1;
bool processing = false;
string FilterString = "";
string TestString = "Test";
string NoTestString = "No Test";
string PassedString = "Passed";
string FailedString = "Failed;";
/// <summary>
/// Instantiate a ListBoxWindow for use in choosing a network to load
@ -148,10 +152,10 @@ namespace EduNetworkBuilder
newCB = AddCheckBox(count, str);
count++;
}
newCB = AddCheckBox(count++, "Test");
newCB = AddCheckBox(count++, "No Test");
newCB = AddCheckBox(count++, "Passed");
newCB = AddCheckBox(count++, "Failed");
newCB = AddCheckBox(count++, TestString);
newCB = AddCheckBox(count++, NoTestString);
newCB = AddCheckBox(count++, PassedString);
newCB = AddCheckBox(count++, FailedString);
panelCheckboxes.ResumeLayout();
btnOK.Text = NB.Translate("_Load");