Files
piratepoet/views/help.html
2017-12-03 11:38:45 -05:00

39 lines
1.7 KiB
HTML

<% extends 'layout.html' %>
<% block content %>
<h1 class="title"><%= __('Help') %></h1>
<div id="mailpoet_help">
<script type="text/javascript">
var systemInfoData = <%= json_encode(systemInfoData) %>;
var systemStatusData = <%= json_encode(systemStatusData) %>;
</script>
<div id="help_container"></div>
</div>
<% endblock %>
<% block translations %>
<%= localize({
'tabKnowledgeBaseTitle': __('Knowledge Base'),
'tabSystemInfoTitle': __('System Info'),
'tabSystemStatusTitle': __('System Status'),
'systemStatusIntroCron': __('For the plugin to work, it must be able to establish connection with the task scheduler.'),
'systemStatusIntroCronMSS': __('For the plugin to work, it must be able to establish connection with the task scheduler and the key activation/MailPoet sending service.'),
'systemStatusCronTitle': __('Task Scheduler'),
'systemStatusMSSTitle': __('Key Activation and MailPoet Sending Service'),
'systemStatusConnectionSuccessful': __('Connection successful.'),
'systemStatusConnectionUnsuccessful': __('Connection unsuccessful.'),
'systemStatusCronConnectionUnsuccessfulInfo': __('Please consult our [link]knowledge base article[/link] for troubleshooting tips.'),
'systemStatusMSSConnectionUnsuccessfulInfo': __('Please contact our technical support for assistance.'),
'knowledgeBaseIntro': __('Click on one of these categories below to find more information:'),
'knowledgeBaseButton': __('Visit our Knowledge Base for more articles'),
'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.'),
'systemInfoDataError': __('Sorry, there was an error, please try again later.'),
}) %>
<% endblock %>