🎨 fix wording and capitalisation on empty stories screen (#787)

closes https://github.com/TryGhost/Ghost/issues/8689
- remove titlecase and switch `posts` to `stories`
This commit is contained in:
Kevin Ansfield 2017-07-20 12:14:53 +01:00 committed by Aileen Nowak
parent 9237e06493
commit 783d9fa0a3

View File

@ -93,11 +93,11 @@
<li class="no-posts-box">
<div class="no-posts">
{{#if showingAll}}
<h3>You Haven't Written Any Posts Yet!</h3>
{{#link-to "editor.new"}}<button type="button" class="gh-btn gh-btn-green gh-btn-lg"><span>Write a new Post</span></button>{{/link-to}}
<h3>You haven't written any stories yet!</h3>
{{#link-to "editor.new"}}<button type="button" class="gh-btn gh-btn-green gh-btn-lg"><span>Write a new Story</span></button>{{/link-to}}
{{else}}
<h3>No posts match the current filter</h3>
{{#link-to "posts.index" (query-params type=null author=null tag=null)}}<button type="button" class="gh-btn gh-btn-lg"><span>Show all posts</span></button>{{/link-to}}
<h3>No stories match the current filter</h3>
{{#link-to "posts.index" (query-params type=null author=null tag=null)}}<button type="button" class="gh-btn gh-btn-lg"><span>Show all stories</span></button>{{/link-to}}
{{/if}}
</div>
</li>