diff --git a/ghost/admin/app/components/editor-labs/modals/update-flow.hbs b/ghost/admin/app/components/editor-labs/modals/update-flow.hbs index 74a00f9b58..14ae6a0f78 100644 --- a/ghost/admin/app/components/editor-labs/modals/update-flow.hbs +++ b/ghost/admin/app/components/editor-labs/modals/update-flow.hbs @@ -19,12 +19,17 @@

- Your + Your {{post.displayName}} {{if post.isScheduled "will be" "was"}} - {{#if (or post.isSent (and post.isPublished post.email) (and post.isScheduled post.emailRecipientFilter (not post.email)))}} + {{#if + (or post.isSent + (and post.isPublished post.email) + (and post.isScheduled post.emailRecipientFilter (not post.email)) + ) + }} {{#if post.emailOnly}} sent to {{else}} @@ -33,25 +38,39 @@ {{#if post.isScheduled}} {{#let (members-count-fetcher query=(hash filter=post.fullRecipientFilter)) as |countFetcher|}} - {{gh-pluralize countFetcher.count "member"}} + {{#if this.showNewsletterName}} + {{gh-pluralize countFetcher.count "subscriber"}} of {{post.newsletter.name}} + {{else}} + {{gh-pluralize countFetcher.count "member"}} + {{/if}} {{/let}} {{else}} - {{pluralize post.email.emailCount "member"}} + {{#if this.showNewsletterName}} + {{gh-pluralize post.email.emailCount "subscriber"}} of {{post.newsletter.name}} + {{else}} + {{gh-pluralize post.email.emailCount "member"}} + {{/if}} {{/if}} {{else}} published on your site {{/if}} + {{#let (moment-site-tz post.publishedAtUTC) as |publishedAt|}} on - {{moment-format publishedAt "D MMM YYYY"}} - at - {{moment-format publishedAt "HH:mm"}}. + {{moment-format publishedAt "D MMM YYYY"}} + at + {{moment-format publishedAt "HH:mm"}}. {{/let}} {{#if post.isScheduled}} {{#if (and post.isScheduled post.email)}} This post was previously emailed to - {{pluralize post.email.emailCount "member"}} on + + {{#if this.showNewsletterName}} + {{pluralize post.email.emailCount "subscriber"}} of {{post.newsletter.name}} on + {{else}} + {{pluralize post.email.emailCount "member"}} on + {{/if}} {{#let (moment-site-tz post.email.createdAtUTC) as |sentAt|}} {{moment-format sentAt "D MMM YYYY"}} @@ -59,6 +78,7 @@ {{moment-format sentAt "HH:mm"}}. {{/let}} {{/if}} +

Need to make a change?