12Nov/110
XCode localization Reminder.
Just a quick reminder for myself for creating localization files in the terminal for xcode projects.
cd to project directory.
find . -name \*.m | xargs genstrings -o en.lproj
The above will find all .m files in all subdirectories and extract the NSLocalizedString().




