private void FillLabels()
 {
     labelCount.Text = Schedules.GetDuplicateBlockoutCount().ToString();
     if (labelCount.Text == "0")
     {
         labelInstructions.Text = "";
     }
     else
     {
         labelInstructions.Text = Lan.g(this, "Click the Clear button to fix the duplicates.");
     }
 }