Skip to content
Snippets Groups Projects
Commit f6dfe8da authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Revert localization of crash message.

It doesn't work without an intl provider, which is mounted inside the error boundary.
parent 6c7c1c36
No related branches found
No related tags found
No related merge requests found
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}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment