Geen omschrijving

statsNotification.txt 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <% extends 'emails/statsNotificationLayout.txt' %>
  2. <% block content %>
  3. <%= __('Your stats are in!') %>
  4. <%= subject %>
  5. <% if subscribersLimitReached %>
  6. <%= __('Congratulations, you now have more than [subscribersLimit] subscribers!')|replace({'[subscribersLimit]': subscribersLimit}) %>
  7. <% if hasValidApiKey %>
  8. <%= __('Your plan is limited to [subscribersLimit] subscribers.')|replace({'[subscribersLimit]': subscribersLimit}) %>
  9. <% else %>
  10. <%= __('Our free version is limited to [subscribersLimit] subscribers.')|replace({'[subscribersLimit]': subscribersLimit}) %>
  11. <% endif %>
  12. <%= __('You need to upgrade now to be able to continue using MailPoet.') %>
  13. <%= __('Upgrade Now') %>
  14. <%= upgradeNowLink %>
  15. <% endif %>
  16. <%= __('open rate') %>: <%= number_format_i18n(opened) %>%
  17. <%= opened_stats_text(opened) %>
  18. <%= __('click rate') %>: <%= number_format_i18n(clicked) %>%
  19. <%= clicked_stats_text(opened) %>
  20. <% if topLinkClicks > 0 %>
  21. <%= __('Most clicked link') %>
  22. <%= topLink %>
  23. <%= __('%s unique clicks')|replace({'%s': topLinkClicks}) %>
  24. <% endif %>
  25. <%= __('View all stats') %>
  26. <%= linkStats %>
  27. <% endblock %>