Skip to content
New issue

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

Added parsing plurals into the JSON #10

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

jdegroot-aa
Copy link

I've added some functionality to parse string plurals into the resulting JSON. Additionally, I've updated the apktool dependency to 2.2.2 and made source and target Java versions Java 1.8.

Example:

<plurals name="CarsQuantity>
    <item quantity="few">cars</item>
    <item quantity="many">cars</item>
    <item quantity="one">car</item>
    <item quantity="other">cars</item>
    <item quantity="two">cars</item>
    <item quantity="zero">cars</item>
</plurals>

Parses into:

"CarsQuantity" : {
    "other" : "cars",
    "zero" : "cars",
    "one" : "car",
    "two" : "cars",
    "few" : "cars",
    "many" : "cars"
  }

@jsf-clabot
Copy link

jsf-clabot commented Dec 6, 2016

CLA assistant check
All committers have signed the CLA.

…t too enthusiastic)

Fixed the build.sh copy step
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants