/**
  * Get information on the field translations
  *
  * @return array of fields sourceName => targetName
  * @throws \MUtil_Model_ModelException
  */
 public function getFieldsTranslations()
 {
     $fieldList = parent::getFieldsTranslations();
     // Add the key values (so organization id is present)
     $keys = array_combine(array_values($this->_targetModel->getKeys()), array_values($this->_targetModel->getKeys()));
     $fieldList = $fieldList + $keys;
     return $fieldList;
 }