# File lib/hammer_cli_import/base.rb, line 264
    def get_translated_id(entity_type, entity_id)
      if @pm[entity_type] && @pm[entity_type][entity_id]
        return @pm[entity_type][entity_id]
      end
      raise MissingObjectError, 'Unable to import, first import ' + to_singular(entity_type) \
        + ' with id ' + entity_id.inspect
    end