I have a json file but I want to convert it to a .strings file for internationalization in iOS.
So, I want to go from:
{"a": {"one": "b"},
"c" : {"title": "cool", "challenge": {"win": "score", "lose":"don't score"}}
}
Into something like:
"a.one" = "b"
"c.title" = "cool"
"c.challenge.win" = "score"
"c.challenge.lose" = "don't score"
Thought I would see if this is something built in, seems like it may be a common function.
Thanks.