Files
piratepoet/views/welcome_wizard.html
Pavel Dohnal bfaa91c053 Add the correct wizard vide
[MAILPOET-1504]
2018-08-27 09:28:07 +02:00

45 lines
2.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<% extends 'layout.html' %>
<% block content %>
<script>
var mailpoet_logo_url = '<%= image_url('welcome_wizard/mailpoet-logo.png') %>';
var woocommerce_screenshot_url = '<%= image_url('welcome_wizard/woocommerce-auto-emails-tilted.png') %>';
var is_mp2_migration_complete = <%= json_encode(is_mp2_migration_complete) %>;
var is_woocommerce_active = <%= json_encode(is_woocommerce_active) %>;
var finish_wizard_url = '<%= finish_wizard_url %>';
var sender_data = <%= json_encode(sender) %>;
</script>
<div id="welcome_wizard_container"></div>
<div class="welcome_wizard_video">
<iframe width="1" height="1" src="https://player.vimeo.com/video/279123953" frameborder="0"></iframe>
</div>
<% endblock %>
<% block translations %>
<%= localize({
'welcomeWizardLetsStartTitle': __('Welcome! Lets get you started on the right foot.'),
'welcomeWizardSenderText': __('Who is the sender of the emails youll be creating with MailPoet?'),
'welcomeWizardSenderMigratedUserText': __('We have a few things to tell you before you begin to ensure you have a good experience.'),
'welcomeWizardUsageTrackingStepTitle': __('Help MailPoet improve with usage tracking.'),
'welcomeWizardWooCommerceStepTitle': __('Automate your WooCommerce emails.'),
'welcomeWizardYouCanContactText': _x('You can [strong]contact[/strong] our team and search our documentation thanks to the blue icon in the bottom right corner.', 'Dont translate [strong] placeholder'),
'welcomeWizardAboutVideosText': _x('Youll find brief [strong]instructional videos[/strong] in English throughout our interface.', 'Dont translate [strong] placeholder'),
'welcomeWizardAboutCourseText': _x('Sign up to our 4-part [strong]email course[/strong]. A must for every beginner.', 'Dont translate [strong] placeholder'),
'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].'),
'welcomeWizardHelpingShopOwnersText': __('Were making it easier for shop owners to send emails to their customers and make more money.'),
'welcomeWizardWooCommerceEmailsText': __('Create a new email to find the WooCommerce type of emails:'),
'seeVideoGuide': _x('See video guide', 'A label on a button'),
'skip': _x('Skip', 'A label on a skip button'),
'noThanksSkip': _x('No thanks. Skip.', 'A label on a skip button'),
'allowAndFinish': _x('Allow & Finish', 'A label on a button'),
'allowAndContinue': _x('Allow & Continue', 'A label on a button'),
'senderAddress': _x('From Address', 'A form field label'),
'senderName': _x('From Name', 'A form field label'),
'next': _x('Next', 'A label on a button'),
'gotIt': _x('Got it!', 'A label on a button'),
}) %>
<% endblock %>