mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
Fixed number formatting in Publish menu
no refs. - number formatting (ie. thousands indicators) were missing in a couple of places in the Publish menu
This commit is contained in:
parent
a4ff3e1900
commit
7e3e4bd36b
2 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@
|
|||
{{#if post.emailOnly}}
|
||||
Your email has been sent.
|
||||
{{else if (and post.isPost @postCount)}}
|
||||
That’s {{gh-pluralize @postCount "post"}} published, keep going!
|
||||
That’s {{format-number @postCount}} {{gh-pluralize @postCount "post" without-count=true}} published, keep going!
|
||||
{{else}}
|
||||
Your {{post.displayName}} has been published.
|
||||
{{/if}}
|
||||
|
@ -45,7 +45,7 @@
|
|||
<strong>
|
||||
{{if (eq @recipientType "all") "all"}}
|
||||
|
||||
{{countFetcher.count}}
|
||||
{{format-number countFetcher.count}}
|
||||
|
||||
{{!-- @recipientType = free/paid/all/specific --}}
|
||||
{{if (not-eq @recipientType "all") @recipientType}}
|
||||
|
|
|
@ -98,7 +98,7 @@
|
|||
{{svg-jar "member"}}
|
||||
<div class="gh-publish-setting-trigger">
|
||||
Already sent to
|
||||
{{@publishOptions.post.email.emailCount}}
|
||||
{{format-number @publishOptions.post.email.emailCount}}
|
||||
{{if (not-eq @recipientType "all") @recipientType}} {{!-- free/paid/specific --}}
|
||||
{{gh-pluralize @publishOptions.post.email.emailCount "subscriber" without-count=true}}
|
||||
{{#unless @publishOptions.onlyDefaultNewsletter}}
|
||||
|
|
Loading…
Add table
Reference in a new issue