deactivationSurvey
7 years ago
emails
7 years ago
form
7 years ago
newsletter
7 years ago
settings
7 years ago
subscribers
7 years ago
blank.html
8 years ago
forms.html
7 years ago
help.html
7 years ago
index.html
8 years ago
index.php
9 years ago
invalidkey.html
8 years ago
layout.html
7 years ago
limit.html
7 years ago
mp2migration.html
7 years ago
newsletters.html
7 years ago
premium.html
7 years ago
segments.html
7 years ago
settings.html
7 years ago
update.html
7 years ago
welcome_wizard.html
7 years ago
welcome_wizard.html
47 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <script> |
| 5 | var mailpoet_logo_url = '<%= cdn_url('welcome-wizard/mailpoet-logo.20190109-1400.png') %>'; |
| 6 | var email_course_illustration = '<%= cdn_url('welcome-wizard/wizard-email-course.20190109-1400.png') %>'; |
| 7 | var woocommerce_screenshot_url = '<%= cdn_url('welcome-wizard/woocommerce-auto-emails-tilted.20181121-1440.png') %>'; |
| 8 | var is_mp2_migration_complete = <%= json_encode(is_mp2_migration_complete) %>; |
| 9 | var is_woocommerce_active = <%= json_encode(is_woocommerce_active) %>; |
| 10 | var finish_wizard_url = '<%= finish_wizard_url %>'; |
| 11 | var sender_data = <%= json_encode(sender) %>; |
| 12 | var reply_to_data = <%= json_encode(reply_to) %>; |
| 13 | </script> |
| 14 | |
| 15 | <div id="welcome_wizard_container"></div> |
| 16 | |
| 17 | <div class="welcome_wizard_video"> |
| 18 | <iframe width="1" height="1" src="https://player.vimeo.com/video/279123953" frameborder="0"></iframe> |
| 19 | </div> |
| 20 | |
| 21 | <% endblock %> |
| 22 | |
| 23 | <% block translations %> |
| 24 | <%= localize({ |
| 25 | 'welcomeWizardLetsStartTitle': __('Welcome! Let’s get you started on the right foot.'), |
| 26 | 'welcomeWizardSenderText': __('Who is the sender of the emails you’ll be creating with MailPoet?'), |
| 27 | 'welcomeWizardSenderMigratedUserText': __('We have a few things to tell you before you begin to ensure you have a good experience.'), |
| 28 | 'welcomeWizardUsageTrackingStepTitle': __('Help MailPoet improve with usage tracking.'), |
| 29 | 'welcomeWizardWooCommerceStepTitle': __('Automate your WooCommerce emails.'), |
| 30 | 'welcomeWizardTrackingText': __('Gathering usage data allows us to make MailPoet better — the way you use MailPoet will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. [link]Read more about what we collect[/link].'), |
| 31 | 'welcomeWizardHelpingShopOwnersText': __('We’re making it easier for shop owners to send emails to their customers and make more money.'), |
| 32 | 'welcomeWizardWooCommerceEmailsText': __('Create a new email to find the WooCommerce type of emails:'), |
| 33 | 'welcomeWizardEmailCourseTitle': __('Sign up to our 4-part email course'), |
| 34 | 'welcomeWizardEmailCourseText': __('A must for every beginner (in English only)'), |
| 35 | 'seeVideoGuide': _x('See video guide', 'A label on a button'), |
| 36 | 'skip': _x('Skip', 'A label on a skip button'), |
| 37 | 'noThanksSkip': _x('No thanks. Skip.', 'A label on a skip button'), |
| 38 | 'allowAndFinish': _x('Allow & Finish', 'A label on a button'), |
| 39 | 'allowAndContinue': _x('Allow & Continue', 'A label on a button'), |
| 40 | 'senderAddress': _x('From Address', 'A form field label'), |
| 41 | 'replyToAddress': _x('Reply-to Address', 'A form field label'), |
| 42 | 'senderName': _x('From Name', 'A form field label'), |
| 43 | 'next': _x('Next', 'A label on a button'), |
| 44 | 'gotIt': _x('Got it!', 'A label on a button'), |
| 45 | }) %> |
| 46 | <% endblock %> |
| 47 |