def _alert_confirmation(self):
     alert = ConfirmationAlert()
     alert.remove_button(Gtk.ResponseType.CANCEL)
     alert.props.title = (_('Download Error'))
     alert.props.msg = (_('There was a problem with the download'))
     alert.connect('response', self._alert_response)
     self.add_alert(alert)