import { localize } from 'i18n-calypso'; const TranslatedSuccess = ( { translationUrl, translate } ) => (

{ translate( 'Thanks for contributing!' ) }

{ translationUrl && (

{ translate( 'Your translation has been submitted. You can view it on {{a}}translate.wordpress.com{{/a}}', { components: { a: , }, } ) }

) }
); export default localize( TranslatedSuccess );