LiewJunTung / Android-strings-xml-csv-converter

Convert Android translatable strings.xml into csv and back
MIT License
124 stars 32 forks source link

plurals.csv is empty #8

Closed ericntd closed 7 years ago

ericntd commented 8 years ago

There are only headers.

My plurals.xml is as follows:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!-- My account -->
    <plurals name="points">
        <item quantity="one">%d point</item>
        <item quantity="other">%d points</item>
    </plurals>

    <plurals name="more_items">
        <item quantity="one">+%d more item</item>
        <item quantity="other">+%d more items</item>
    </plurals>

    <plurals name="items">
        <item quantity="one">%d item</item>
        <item quantity="other">%d items</item>
    </plurals>

</resources>
LiewJunTung commented 7 years ago

Tested with your file, it is solved in the latest version.