/**
  * Fill table row
  */
 protected function fillRow($a_set)
 {
     global $lng, $ilCtrl;
     $ilCtrl->setParameter($this->parent_obj, "templ_id", $a_set["id"]);
     $this->tpl->setVariable("VAL_ID", $a_set["id"]);
     // begin-patch lok
     $this->tpl->setVariable("VAL_TITLE", ilSettingsTemplate::translate($a_set["title"]));
     $this->tpl->setVariable("VAL_DESCRIPTION", ilSettingsTemplate::translate($a_set["description"]));
     // end-patch lok
     $this->tpl->setVariable("TXT_EDIT", $lng->txt("edit"));
     $this->tpl->setVariable("HREF_EDIT", $ilCtrl->getLinkTarget($this->parent_obj, "editSettingsTemplate"));
     $ilCtrl->setParameter($this->parent_obj, "templ_id", "");
 }