Skip to content
Snippets Groups Projects
Unverified Commit fc7febb1 authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Merge pull request #1934 from paulkaplan/revert-localize-error

Revert localization of crash message.
parents 240f1987 f6dfe8da
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