Last active
November 6, 2015 03:09
-
-
Save vinnybad/9436d1186b23e3cdcf2f to your computer and use it in GitHub Desktop.
Generate .strings files for a particular language (overwrites existing strings file)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# find all .m files and pump it through genstrings, outputting it to en.lproj/Localizable.strings | |
find . -name '*.m' | xargs genstrings -o en.lproj |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment