-
Notifications
You must be signed in to change notification settings - Fork 154
Open
Labels
Description
A feature request, we would love it twine supported plural forms. Something like:
[delete_things]
en:one = Delete this object?
en:other = Delete these objects?
Android has support for plural forms in its string resources:
<plurals
name="plural_name">
<item
quantity=["zero" | "one" | "two" | "few" | "many" | "other"]
>text_string</item>
</plurals>
iOS could use Smartling
gettext also has support for plural forms
anton-plebanovich and luongvo