Hello,
I found the Casper-M3 Theme on GitHub and wanted to localize it.
My problem now is that when I try to translate Zero posts and singular and plural of Posts inside tag.hbs the helpers are displayed on my blog.
This is how it’s displayed:
Here’s a snippet how I tried to solve this:
<div class="post-card-content">
<div class="post-card-content-link">
<header class="post-card-header">
<h2 class="post-card-title">{{name}}</h2>
</header>
<div class="post-card-excerpt">
{{#if description}}
{{description}}
{{else}}
{{t 'A collection of'}} {{plural ../pagination.total empty='{{t "Zero posts"}}' singular='% {{t "post_singular"}}' plural='% {{t "post_plural"}}'}}
{{/if}}
</div>
</div>
</div>
I’m not a developer and just want to localize it.
Thank you for your help.