This commit is contained in:
Moon 2021-01-06 22:42:26 -08:00 committed by GitHub
parent 00289ddb91
commit ef4d8a0339
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class GivingFeedbackNotes {
// Otherwise, create our new note.
$note = new Note();
$note->set_title( __( 'Give feedback', 'woocommerce-admin' ) );
$note->set_title( __( 'You\'re invited to share your experience', 'woocommerce-admin' ) );
$note->set_content( __( 'Now that youve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.', 'woocommerce-admin' ) );
$note->set_content_data( (object) array() );
$note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL );
@ -46,7 +46,7 @@ class GivingFeedbackNotes {
$note->add_action(
'share-feedback',
__( 'Share feedback', 'woocommerce-admin' ),
'https://automattic.survey.fm/new-onboarding-survey'
'https://automattic.survey.fm/store-setup-survey'
);
return $note;
}