2017-09-07 23:18:33 +02:00
|
|
|
import React from "react";
|
|
|
|
import { Modal } from "modal/modal";
|
|
|
|
|
|
|
|
class ModalFileTimeout extends React.PureComponent {
|
|
|
|
render() {
|
|
|
|
const { metadata: { title } } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
isOpen={true}
|
|
|
|
contentLabel={__("Download failed")}
|
|
|
|
onConfirmed={closeModal}
|
|
|
|
>
|
2017-11-24 15:31:05 +01:00
|
|
|
{__("LBRY was unable to download the stream")} <strong>{title}</strong>.
|
2017-09-07 23:18:33 +02:00
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ModalFileTimeout;
|