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
mp2migration.html
70 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | |
| 5 | <div class="wrap mailpoet-about-wrap"> |
| 6 | <h1><%= __('Welcome to MailPoet version 3!') %> <%= settings.version %></h1> |
| 7 | |
| 8 | <p class="about-text"><%= __('Before we start, we will first migrate your data automatically from your previous MailPoet to the new one.') %></p> |
| 9 | |
| 10 | <h3><%= __('What will be kept in MailPoet 3') %></h3> |
| 11 | <ul class="default-list"> |
| 12 | <li><strong><%= __('Subscribers and lists') %> <img draggable="false" class="emoji" alt="✔" src="https://s.w.org/images/core/emoji/2.2.1/svg/2714.svg"></strong></li> |
| 13 | <li><strong><%= __('Forms') %> <img draggable="false" class="emoji" alt="✔" src="https://s.w.org/images/core/emoji/2.2.1/svg/2714.svg"></strong></li> |
| 14 | <li><strong><%= __('Settings') %> <img draggable="false" class="emoji" alt="✔" src="https://s.w.org/images/core/emoji/2.2.1/svg/2714.svg"></strong></li> |
| 15 | <li><%= __('Archive of sent newsletters (will not be migrated)') %></li> |
| 16 | <li><%= __('Statistics (will not be migrated)') %></li> |
| 17 | </ul> |
| 18 | <div style="position: absolute; top: .2em; right: 0;"></div> |
| 19 | <hr /> |
| 20 | |
| 21 | <div> |
| 22 | <br /> |
| 23 | <div id="import-actions"> |
| 24 | <input type="submit" name="import" id="import" class="button button-primary" value="<%= __('Start upgrade') %>" /> |
| 25 | <input type="submit" name="stop-import" id="stop-import" class="button button-secondary" value="<%= __('Pause') %>" style="display: none"/> |
| 26 | <small> <a id="skip-import" href="#"><%= __("No thanks, I'll skip and start from scratch.") %></a></small> |
| 27 | <br /> |
| 28 | <br /> |
| 29 | </div> |
| 30 | |
| 31 | <div id="progressbar" class="mailpoet_progress mailpoet_progress_complete" style="display: none"> |
| 32 | <span id="progresslabel" class="mailpoet_progress_label">0%</span> |
| 33 | </div> |
| 34 | |
| 35 | <div id="upgrade-completed" style="display: none"> |
| 36 | <h3><%= __('Upgrade completed!') %></h3> |
| 37 | <input type="button" name="goto-welcome" id="goto-welcome" class="button button-primary" value="<%= __('Go to MailPoet') %>" /> |
| 38 | </div> |
| 39 | |
| 40 | <br /> |
| 41 | <div id="logger-container" style="display: none"> |
| 42 | <small><strong><%= __('Log...') %></strong></small> |
| 43 | <div id="logger"></div> |
| 44 | </div> |
| 45 | |
| 46 | </div> |
| 47 | |
| 48 | </div> |
| 49 | <% endblock %> |
| 50 | |
| 51 | <% block after_javascript %> |
| 52 | <%= javascript( |
| 53 | 'mp2migrator.js' |
| 54 | )%> |
| 55 | <script type="text/javascript"> |
| 56 | var mailpoet_mp2_migrator = { |
| 57 | log_file_url: '<%= log_file_url %>', |
| 58 | progress_url: '<%= progress_url %>' |
| 59 | }; |
| 60 | </script> |
| 61 | <% endblock %> |
| 62 | |
| 63 | <% block translations %> |
| 64 | <%= localize({ |
| 65 | 'import_complete' : __('IMPORT COMPLETE'), |
| 66 | 'importing' : __('Importing…'), |
| 67 | 'import_stopped_by_user' : __('IMPORT STOPPED BY USER'), |
| 68 | }) %> |
| 69 | <% endblock %> |
| 70 |