diff --git a/js/components/whitelabel/prize/simple_prize/components/ascribe_modal/prize_advance_round_modal.js b/js/components/whitelabel/prize/simple_prize/components/ascribe_modal/prize_advance_round_modal.js new file mode 100644 index 00000000..ea9e3ec5 --- /dev/null +++ b/js/components/whitelabel/prize/simple_prize/components/ascribe_modal/prize_advance_round_modal.js @@ -0,0 +1,53 @@ +'use strict' + +import React from 'react'; + +import { getLangText } from '../../../../../../utils/lang_utils'; + +const PrizeAdvanceRoundModal = React.createClass({ + propTypes: { + handleSuccess: React.PropTypes.func, + handleCancel: React.PropTypes.func + }, + + render() { + const { handleCancel, handleSuccess } = this.props; + + return ( +
+ {getLangText('Are you sure you want to advance to the next round of judging?')} +
++ {getLangText('Advancing will keep only the currently selected pieces for review in the next round. ' + + 'Ratings associated with each piece will be reset and all currently active jury members will be deactivated as well.')} +
+ {/* Remove once api is up */} ++ {getLangText('Note: Advancing to the next round will only be available after submissions end on Dec. 27th.')} +
+