update email templates (#2615)

This commit is contained in:
Tessa Thornton
2019-10-03 13:03:03 -04:00
committed by Wyatt Johnson
parent 4a1492e88d
commit dd45f46b19
4 changed files with 6 additions and 12 deletions
+3 -6
View File
@@ -90,22 +90,19 @@ email-footer-notification =
email-subject-notificationOnReply = Someone has replied to your comment on { $organizationName }
email-template-notificationOnReply =
{ $organizationName } - <a data-l10n-name="storyLink">{ $storyTitle }</a><br /><br />
{ $authorUsername } has replied to your comment: <a data-l10n-name="commentPermalink">View comment</a>
{ $authorUsername } has replied to <a data-l10n-name="commentPermalink">the comment</a> you posted on <a data-l10n-name="storyLink">{ $storyTitle }</a>
## On Featured
email-subject-notificationOnFeatured = One of your comments was featured on { $organizationName }
email-template-notificationOnFeatured =
{ $organizationName } - <a data-l10n-name="storyLink">{ $storyTitle }</a><br /><br />
A member of our team has selected this comment to be featured for other readers: <a data-l10n-name="commentPermalink">View comment</a>
A member of our team has featured <a data-l10n-name="commentPermalink">the comment</a> you posted on <a data-l10n-name="storyLink">{ $storyTitle }</a>
## On Staff Reply
email-subject-notificationOnStaffReply = Someone at { $organizationName } has replied to your comment
email-template-notificationOnStaffReply =
{ $organizationName } - <a data-l10n-name="storyLink">{ $storyTitle }</a><br /><br/>
{ $authorUsername } works for { $organizationName } and has replied to your comment: <a data-l10n-name="commentPermalink">View comment</a>
{ $authorUsername } of { $organizationName } has replied to <a data-l10n-name="commentPermalink">the comment</a> you posted on <a data-l10n-name="storyLink">{ $storyTitle }</a>
## On Comment Approved
@@ -1,4 +1,3 @@
<div data-l10n-id="email-template-notificationOnFeatured" data-l10n-args="{{ context | dump }}">
{{ context.organizationName }} - <a data-l10n-name="storyLink" href="{{ context.storyURL }}">{{ context.storyTitle }}</a><br /><br/>
A member of our team has selected this comment to be featured for other readers: <a data-l10n-name="commentPermalink" href="{{ context.commentPermalink }}">View comment</a>
A member of our team has featured <a data-l10n-name="commentPermalink" href="{{ context.commentPermalink }}">the comment </a> you posted on <a data-l10n-name="storyLink" href="{{ context.storyURL }}">{{ context.storyTitle }}</a>
</div>
@@ -1,4 +1,3 @@
<div data-l10n-id="email-template-notificationOnReply" data-l10n-args="{{ context | dump }}">
{{ context.organizationName }} - <a data-l10n-name="storyLink" href="{{ context.storyURL }}">{{ context.storyTitle }}</a><br /><br/>
{{ context.authorUsername }} has replied to your comment: <a data-l10n-name="commentPermalink" href="{{ context.commentPermalink }}">View comment</a>
{{ context.authorUsername }} has replied to <a data-l10n-name="commentPermalink" href="{{ context.commentPermalink }}">the comment</a> you posted on <a data-l10n-name="storyLink" href="{{ context.storyURL }}">{{ context.storyTitle }}</a>
</div>
@@ -1,4 +1,3 @@
<div data-l10n-id="email-template-notificationOnStaffReply" data-l10n-args="{{ context | dump }}">
{{ context.organizationName }} - <a data-l10n-name="storyLink" href="{{ context.storyURL }}">{{ context.storyTitle }}</a><br /><br/>
{{ context.authorUsername }} works for {{ context.organizationName }} and has replied to your comment: <a data-l10n-name="commentPermalink" href="{{ context.commentPermalink }}">View comment</a>
{{ context.authorUsername }} of {{ context.organizationName }} has replied to <a data-l10n-name="commentPermalink" href="{{ context.commentPermalink }}">the comment</a> you posted on <a data-l10n-name="storyLink" href="{{ context.storyURL }}">{{ context.storyTitle }}</a>
</div>