mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
2ef41dc852
no refs. - fixed pluralisation in members upgrade message - added decimal point to limit and total numbers in members upgrade message
21 lines
825 B
Handlebars
21 lines
825 B
Handlebars
|
|
<header class="modal-header" data-test-modal="delete-user">
|
|
<h1>Upgrade to enable newsletter delivery</h1>
|
|
</header>
|
|
<button class="close" title="Close" {{on "click" this.closeModal}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
Your current plan allows you to have up to <strong>{{gh-pluralize upgradeMessage.limit "member"}}</strong>, but you currently have <strong>{{gh-pluralize upgradeMessage.total "member"}}</strong>.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button {{on "click" this.closeModal}} class="gh-btn" data-test-button="cancel-upgrade">
|
|
<span>Cancel</span>
|
|
</button>
|
|
|
|
<button {{on "click" (action "upgrade")}} class="gh-btn gh-btn-green" data-test-button="upgrade-plan">
|
|
<span>Upgrade</span>
|
|
</button>
|
|
</div> |