I want to retrieve a Locazable.strings taken from an *.ipa file. However when I do, I get some wierd char mix with it
How can I read it?
I want to retrieve a Locazable.strings taken from an *.ipa file. However when I do, I get some wierd char mix with it
How can I read it?
My friend find out how :
plutil -convert json Localizable.strings
It's in property list format.
Two methods to fix this:
Swift 3
let path = Bundle.main.path(forResource: "Localizable", ofType: "strings", inDirectory: nil, forLocalization: "en")
let dic = NSDictionary(contentsOfFile: path!)
debugPrint(dic)
pull your localizable.strings file in a Xcode project and run above code, and then, you can get the dic in your Xcode console or you can store it in a text.