Ei kuvausta

help.html 4.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <% extends 'layout.html' %>
  2. <% block content %>
  3. <div id="mailpoet_help">
  4. <script type="text/javascript">
  5. var systemInfoData = <%= json_encode(systemInfoData) %>;
  6. var systemStatusData = <%= json_encode(systemStatusData) %>;
  7. </script>
  8. <div id="help_container"></div>
  9. </div>
  10. <% endblock %>
  11. <% block translations %>
  12. <%= localize({
  13. 'tabKnowledgeBaseTitle': __('Knowledge Base'),
  14. 'tabSystemInfoTitle': __('System Info'),
  15. 'tabSystemStatusTitle': __('System Status'),
  16. 'tabYourPrivacyTitle': __('Your Privacy'),
  17. 'systemStatusIntroCron': __('For the plugin to work, it must be able to establish connection with the task scheduler.'),
  18. 'systemStatusIntroCronMSS': __('For the plugin to work, it must be able to establish connection with the task scheduler and the key activation/MailPoet sending service.'),
  19. 'systemStatusCronTitle': __('Task Scheduler'),
  20. 'systemStatusMSSTitle': __('Key Activation and MailPoet Sending Service'),
  21. 'systemStatusConnectionSuccessful': __('Connection successful.'),
  22. 'systemStatusConnectionUnsuccessful': __('Connection unsuccessful.'),
  23. 'systemStatusCronConnectionUnsuccessfulInfo': __('Please consult our [link]knowledge base article[/link] for troubleshooting tips.'),
  24. 'systemStatusMSSConnectionUnsuccessfulInfo': __('Please contact our technical support for assistance.'),
  25. 'knowledgeBaseIntro': __('Click on one of these categories below to find more information:'),
  26. 'knowledgeBaseButton': __('Visit our Knowledge Base for more articles'),
  27. 'systemInfoIntro': __('The information below is useful when you need to get in touch with our support. Just copy all the text below and paste it into a message to us.'),
  28. 'systemInfoDataError': __('Sorry, there was an error, please try again later.'),
  29. 'systemStatusCronStatusTitle': __('Cron'),
  30. 'systemStatusQueueTitle': __('Sending Queue'),
  31. 'yourPrivacyContent1': __('MailPoet respects your privacy. We don’t track any information about your website or yourself without your explicit consent.'),
  32. 'yourPrivacyContent2': __('Third-party services used within the plugin may track information such as your email & IP address.'),
  33. 'yourPrivacyContent3': __('If you send with MailPoet, we track data that is used to ensure that the service works correctly.'),
  34. 'yourPrivacyButton': __('Read our Privacy Notice'),
  35. 'lastUpdated': _x('Last updated', 'A label in a status table e.g. Last updated: 2018-10-18 18:50'),
  36. 'lastRunStarted': _x('Last run started', 'A label in a status table e.g. Last run started: 2018-10-18 18:50'),
  37. 'lastRunCompleted': _x('Last run completed', 'A label in a status table e.g. Last run completed: 2018-10-18 18:50'),
  38. 'lastSeenError': _x('Last seen error', 'A label in a status table e.g. Last seen error: Process timeout'),
  39. 'lastSeenErrorDate': _x('Last seen error date', 'A label in a status table e.g. Last seen error date: 2018-10-18 18:50'),
  40. 'unknown': _x('unknown', 'An unknown state is a status table e.g. Last run started: unknown'),
  41. 'accessible': _x('Accessible', 'A label in a status table e.g. Accessible: yes'),
  42. 'status': __('Status'),
  43. 'yes': __('yes'),
  44. 'no': __('no'),
  45. 'none': _x('none', 'An empty state is a status table e.g. Error: none'),
  46. 'running': _x('running', 'A state of a process.'),
  47. 'paused': _x('paused', 'A state of a process.'),
  48. 'cronWaiting': _x('waiting for the next run', 'A state of a process.'),
  49. 'startedAt': _x('Started at', 'A label in a status table e.g. Started at: 2018-10-18 18:50'),
  50. 'sentEmails': _x('Sent emails', 'A label in a status table e.g. Sent emails: 50'),
  51. 'retryAttempt': _x('Retry attempt', 'A label in a status table e.g. Retry attempt: 2'),
  52. 'retryAt': _x('Retry at', 'A label in a status table e.g. Retry at: 2018-10-18 18:50'),
  53. 'error': _x('Error', 'A label in a status table e.g. Error: missing data'),
  54. 'totalCompletedTasks': __('Total completed tasks'),
  55. 'totalScheduledTasks': __('Total scheduled tasks'),
  56. 'totalRunningTasks': __('Total running tasks'),
  57. 'totalPausedTasks': __('Total paused tasks'),
  58. 'scheduledTasks': __('Scheduled tasks'),
  59. 'runningTasks': __('Running tasks'),
  60. 'completedTasks': __('Completed tasks'),
  61. 'type': _x('Type', 'Table column heading for task type.'),
  62. 'email': __('Email'),
  63. 'priority': _x('Priority', 'Table column heading for task priority (number).' ),
  64. 'scheduledAt': __('Scheduled At'),
  65. 'updatedAt': __('Updated At'),
  66. 'nothingToShow': __('Nothing to show.'),
  67. 'preview': _x('Preview', 'Text of a link to email preview page.'),
  68. }) %>
  69. <% endblock %>