i18n app/views/campaign_mailer/creation_followup.html.erb

This commit is contained in:
Eric Schultz 2021-03-23 15:54:15 -05:00 committed by Eric Schultz
parent 7c44e8af27
commit 3f82514467
2 changed files with 26 additions and 14 deletions

View file

@ -2,31 +2,28 @@
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
<% campaign_url = Format::Url.concat(root_url, @campaign.url) %>
<p>Dear <%= @creator_profile.name.blank? ? @creator_profile.user.email : @creator_profile.name %>,</p>
<p><%= t('campaign_mailer.dear_creator', creator_name: @creator_profile.name.blank? ? @creator_profile.user.email : @creator_profile.name)%></p>
<br>
<p>Congratulations on creating your campaign!</p>
<p><%= t('campaign_mailer.congrats_on_creating_campaign') %></p>
<br>
<p>You can visit it here: <strong><a href='<%= campaign_url %>'><%= campaign_url %></a></strong></p>
<p><%= t('campaign_mailer.you_can_visit_at', url: content_tag(:strong, link_to(campaign_locateable_url(@campaign)) ))%>
<br>
<p>Before you share your campaign with the world, we have a few tips that could help the success of your campaign:</p>
<p><%= t('campaign_mailer.before_sharing_tips')%></p>
<ul>
<li>Use your campaign story to explain <strong>why</strong> supporters should give and <strong>how</strong> their contributions will be used.</li>
<li>Make your campaign story more engaging with images and video.</li>
<li>Create one-time or recurring gift options (recurring gift options are a powerful way to create sustainability for your organization).</li>
<li>Get a few people in your network to make initial donations.</li>
<li>Inform people in your network before your campaign launches so that they can be prepared to share it and contribute to it.</li>
<li><%= t('campaign_mailer.why_and_how_of_campaign_story')%></li>
<li><%= t('campaign_mailer.add_image_and_videos_to_campaign')%></li>
<li><%= t('campaign_mailer.create_gift_options') %></li>
<li><%= t('campaign_mailer.get_network_for_initial_donations') %></li>
<li><%= t('campaign_mailer.get_network_prepared_for_launch') %></li>
</ul>
<p>Once your campaign is ready to go, you can check the 'Publish' box on your campaign settings.</p>
<p><%= t('campaign_mailer.check_publish_when_ready') %></p>
<br>
<p><strong>Note:</strong> You can still share an unpublished campaign, but it will not show up on your nonprofit profile page or on your campaign listing page.</p>
<br>
<p>If you need some help getting your campaign up and running, don't hesitate to contact <strong><%= Houdini.support_email %></strong>.</p>
<p><%= t('campaign_mailer.can_share_unpublished_campaign') %></p>
<%= render 'emails/sig' %>

View file

@ -0,0 +1,15 @@
# License: CC0-1.0
en:
campaign_mailer:
dear_creator: Dear %{creator_name},
congrats_on_creating_campaign: Congratulations on creating your campaign!
you_can_visit_at: 'You can visit it here: %{url}'
before_sharing_tips: 'Before you share your campaign with the world, we have a few tips that could help the success of your campaign:'
why_and_how_of_campaign_story: 'Use your campaign story to explain <strong>why</strong> supporters should give and <strong>how</strong> their contributions will be used.'
add_image_and_videos_to_campaign: Make your campaign story more engaging with images and video.
create_gift_options: Create one-time or recurring gift options (recurring gift options are a powerful way to create sustainability for your organization).
get_network_for_initial_donations: Get a few people in your network to make initial donations.
get_network_prepared_for_launch: Inform people in your network before your campaign launches so that they can be prepared to share it and contribute to it.
check_publish_when_ready: Once your campaign is ready to go, you can check the 'Publish' box on your campaign settings.
can_share_unpublished_campaign: <strong>Note:</strong> You can still share an unpublished campaign, but it will not show up on your nonprofit profile page or on your campaign listing page.