mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-28 21:33:24 +03: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
@ -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…
Reference in New Issue
Block a user