Add minor corrections [MAILPOET-949]

This commit is contained in:
stoletniy
2017-06-30 12:47:47 +03:00
parent 7fa94a67c9
commit 688e78560e
3 changed files with 5 additions and 6 deletions

View File

@@ -22,10 +22,9 @@ if(container) {
<Router history={ history }> <Router history={ history }>
<Route path="/" component={ App }> <Route path="/" component={ App }>
<IndexRedirect to="knowledgeBase" /> <IndexRedirect to="knowledgeBase" />
{/* Listings */} {/* Pages */}
<Route path="knowledgeBase(/)**" params={{ tab: 'knowledgeBase' }} component={ KnowledgeBase } /> <Route path="knowledgeBase(/)**" params={{ tab: 'knowledgeBase' }} component={ KnowledgeBase } />
<Route path="systemInfo(/)**" params={{ tab: 'systemInfo' }} component={ SystemInfo } /> <Route path="systemInfo(/)**" params={{ tab: 'systemInfo' }} component={ SystemInfo } />
</Route> </Route>
</Router> </Router>
), container); ), container);

View File

@@ -24,7 +24,7 @@ function KnowledgeBase() {
<li><a target="_blank" href="http://beta.docs.mailpoet.com/category/123-newsletter-designer">Newsletter Designer</a></li> <li><a target="_blank" href="http://beta.docs.mailpoet.com/category/123-newsletter-designer">Newsletter Designer</a></li>
<li><a target="_blank" href="http://beta.docs.mailpoet.com/category/121-subscribers-and-lists">Subscribers and Lists</a></li> <li><a target="_blank" href="http://beta.docs.mailpoet.com/category/121-subscribers-and-lists">Subscribers and Lists</a></li>
</ul> </ul>
<a href="http://beta.docs.mailpoet.com/" className="button button-primary">{MailPoet.I18n.t('knowledgeBaseButton')}</a> <a target="_blank" href="http://beta.docs.mailpoet.com/" className="button button-primary">{MailPoet.I18n.t('knowledgeBaseButton')}</a>
</div> </div>
); );
}; };

View File

@@ -18,10 +18,10 @@
'pageTitle': __('Help'), 'pageTitle': __('Help'),
'tabKnowledgeBaseTitle': __('Knowledge Base'), 'tabKnowledgeBaseTitle': __('Knowledge Base'),
'tabSystemInfoTitle': __('System Info'), 'tabSystemInfoTitle': __('System Info'),
'knowledgeBaseIntro': __('Click on one of these categories below to find more information'), 'knowledgeBaseIntro': __('Click on one of these categories below to find more information:'),
'knowledgeBaseButton': __('Visit our Knowledge Base for more articles'), '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 on a message to us'), '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'), 'systemInfoDataError': __('Sorry, there was an error, please try again later.'),
}) %> }) %>
<% endblock %> <% endblock %>