mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-19 12:35:48 +00:00
Fixed Syntax of pluralisation
This commit is contained in:
parent
a12dc692ce
commit
adcf9310a0
1 changed files with 6 additions and 2 deletions
|
@ -19,10 +19,14 @@
|
||||||
<div class="notification">
|
<div class="notification">
|
||||||
<p>
|
<p>
|
||||||
{% blocktrans count books=import_size_limit%}
|
{% blocktrans count books=import_size_limit%}
|
||||||
Currently you are allowed to import {{ import_size_limit }} {{books}}
|
Currently you are allowed to import {{ import_size_limit }} book
|
||||||
|
{% plural %}
|
||||||
|
Currently you are allowed to import {{ import_size_limit }} books
|
||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
{% blocktrans count days=import_limit_reset%}
|
{% blocktrans count days=import_limit_reset%}
|
||||||
every {{ import_limit_reset }} {{days}}.
|
every {{ import_limit_reset }} day.
|
||||||
|
{% plural %}
|
||||||
|
every {{ import_limit_reset }} days.
|
||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</p>
|
</p>
|
||||||
<p>{% blocktrans %}You have {{ allowed_imports }} left.{% endblocktrans %}</p>
|
<p>{% blocktrans %}You have {{ allowed_imports }} left.{% endblocktrans %}</p>
|
||||||
|
|
Loading…
Reference in a new issue