diff --git a/src/components/crash-message/crash-message.jsx b/src/components/crash-message/crash-message.jsx index 8b749c7933842bd8d7d2aaed9b3bc49174f6ef47..d5fc45d163072d6394c5da665ee6427b6d0159a4 100644 --- a/src/components/crash-message/crash-message.jsx +++ b/src/components/crash-message/crash-message.jsx @@ -1,7 +1,6 @@ import PropTypes from 'prop-types'; import React from 'react'; import Box from '../box/box.jsx'; -import {FormattedMessage} from 'react-intl'; import styles from './crash-message.css'; import reloadIcon from './reload.svg'; @@ -14,20 +13,13 @@ const CrashMessage = props => ( src={reloadIcon} /> <h2> - <FormattedMessage - defaultMessage="Oops! Something went wrong." - description="Unhandled error title" - id="gui.crashMessage.title" - /> + Oops! Something went wrong. </h2> <p> - { /* eslint-disable max-len */ } - <FormattedMessage - defaultMessage="We are so sorry, but it looks like Scratch has crashed. This bug has been automatically reported to the Scratch Team. Please refresh your page to try again." - description="Unhandled error description" - id="gui.crashMessage.description" - /> - { /* eslint-enable max-len */ } + We are so sorry, but it looks like Scratch has crashed. This bug has been + automatically reported to the Scratch Team. Please refresh your page to try + again. + </p> <button className={styles.reloadButton}