mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +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">
|
||||
<p>
|
||||
{% 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 %}
|
||||
{% blocktrans count days=import_limit_reset%}
|
||||
every {{ import_limit_reset }} {{days}}.
|
||||
every {{ import_limit_reset }} day.
|
||||
{% plural %}
|
||||
every {{ import_limit_reset }} days.
|
||||
{% endblocktrans %}
|
||||
</p>
|
||||
<p>{% blocktrans %}You have {{ allowed_imports }} left.{% endblocktrans %}</p>
|
||||
|
|
Loading…
Reference in a new issue