/** ***************************************************************************** */
  private void loadProperties(String id) {
    prop_file = loadIfPossible(id);
    loadIfPossible(id + "." + BOARD_ARCH);

    if (id.equals("System") || id.equals("Board"))
      return; // these need to be inited before we can use them

    String s = BoardSetup.getSetup().getLanguage().toString().toLowerCase();
    loadIfPossible(id + "." + s);
    loadIfPossible(id + "." + s + "." + BOARD_ARCH);

    String cnm = BoardSetup.getSetup().getCourseName();
    if (cnm != null) {
      loadIfPossible(id + "." + cnm);
    }
    String anm = BoardSetup.getSetup().getCourseAssignment();
    if (anm != null) {
      loadIfPossible(id + "." + cnm + "." + anm);
      loadIfPossible(id + "." + cnm + "@" + anm);
    }
  }