-
Notifications
You must be signed in to change notification settings - Fork 83
Open
Labels
Description
For android strings.xml it is possible to use plurals:
https://developer.android.com/guide/topics/resources/string-resource#Plurals
But when exporting to CSV this item is missing.
Example:
<plurals name="plural_name"> <item quantity=["zero" | "one" | "two" | "few" | "many" | "other"] >text_string</item> </plurals>
And result won't have item with 'plural_name'
It will make sense to also translate plurals.
Any ideas how to fix or workaround this issue?