Run yarn i18n, copy some messages from en.json back into source files

This commit is contained in:
Alex Gleason
2023-10-11 15:15:50 -05:00
parent b5f92b10f9
commit f6251a221a
29 changed files with 49 additions and 127 deletions

View File

@ -49,7 +49,7 @@ const PollFooter: React.FC<IPollFooter> = ({ poll, showResults, selected }): JSX
<Stack space={4} data-testid='poll-footer'>
{(!showResults && poll.multiple) && (
<Button onClick={handleVote} theme='primary' block>
<FormattedMessage id='poll.vote' defaultMessage='Vote' />
<FormattedMessage id='poll.vote' defaultMessage='Submit Vote' />
</Button>
)}