diff --git a/src/views/studio/l10n.json b/src/views/studio/l10n.json index 198a5beab..b2cc54c35 100644 --- a/src/views/studio/l10n.json +++ b/src/views/studio/l10n.json @@ -71,5 +71,7 @@ "studio.reportThisStudio": "Report this studio", "studio.reportPleaseExplain": "Please explain why you feel this studio is disrespectful or inappropriate, or otherwise breaks the Scratch Community Guidelines.", - "studio.reportAreThereComments": "Are there inappropriate comments in the studio? Please report them by clicking the \"report\" button on the individual comments." + "studio.reportAreThereComments": "Are there inappropriate comments in the studio? Please report them by clicking the \"report\" button on the individual comments.", + "studio.reportThanksForLettingUsKnow": "Thanks for letting us know!", + "studio.reportYourFeedback": "Your feedback will help us make Scratch better." } diff --git a/src/views/studio/studio-report.jsx b/src/views/studio/studio-report.jsx index 2d1de8faf..b9d5f9afd 100644 --- a/src/views/studio/studio-report.jsx +++ b/src/views/studio/studio-report.jsx @@ -42,49 +42,67 @@ const StudioReport = ({ )} {isOpen && ( - - - -

-

- - - -

- -
-
+

+

+ + + ) : ( + + + +

+

+ + + +

+ +
+
+ ) )} ); @@ -92,6 +110,7 @@ const StudioReport = ({ StudioReport.propTypes = { canReport: PropTypes.bool, + description: PropTypes.string, error: PropTypes.string, field: PropTypes.string, intl: intlShape, @@ -102,7 +121,8 @@ StudioReport.propTypes = { handleClose: PropTypes.func, handleSetField: PropTypes.func, handleSubmit: PropTypes.func, - image: PropTypes.string + image: PropTypes.string, + title: PropTypes.string }; export default connect(