Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading a Localization.strings file from a *.ipa

Tags:

xcode

ios

ipa

I want to retrieve a Locazable.strings taken from an *.ipa file. However when I do, I get some wierd char mix with itenter image description here

How can I read it?

like image 578
MUH Mobile Inc. Avatar asked Sep 13 '12 14:09

MUH Mobile Inc.


2 Answers

My friend find out how :

plutil -convert json Localizable.strings

like image 66
MUH Mobile Inc. Avatar answered Oct 20 '22 11:10

MUH Mobile Inc.


It's in property list format.

Two methods to fix this:

  • change .strings file to .plist

  • find a text editor that can use auto recognition correctly.
    try testMate app on mac.

    xcode打开

    after:

    enter image description here

like image 5
Huang Huang Avatar answered Oct 20 '22 11:10

Huang Huang