I am trying out weblate self hosting package (MaxOs Docker, to test it out) to manage my translations for an iOS and Android app. I see that pluralisation is possible, but I haven't found a way to add these to a project.
When clicking on start new translation I don't see an option to change the translation into a pluralised form. So how do I add a translations and have the option to change this?
When exporting the translations as android xml file I am looking for something like this.
<resources>
<plurals name="plural_name">
<item quantity="zero">zero plural</item>
<item quantity="other">other plural</item>
</plurals>
</resources>
On a side note I am also looking for a way to have one key set to share between the android and iOS component. It seems like I have to define all keys and translations twice. I thought I read in the docs that is could be merged, but not clear as how to do this.