We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correct pluralization of terms for non-english languages.
The profile view uses str_plural() to pluralize terms. This only works for english nouns. German nouns get pluralized the wrong way.
Switch to trans_choice() to provide localized pluralizations.
trans_choice()
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
874386c
@jonas-koeritz Thanks for creating this issue. View now updated, for v0.18 release, to use trans_choice. Lang files will need to be updated.
Relevant strings can be found under the keys: entities.x_books, entities.x_chapters, entities.x_pages.
entities.x_books
entities.x_chapters
entities.x_pages
No branches or pull requests
For Bug Reports
Expected Behavior
Correct pluralization of terms for non-english languages.
Actual Behavior
The profile view uses str_plural() to pluralize terms. This only works for english nouns. German nouns get pluralized the wrong way.
Proposed fix
Switch to
trans_choice()
to provide localized pluralizations.The text was updated successfully, but these errors were encountered: