New translations

// FREEBIE
This commit is contained in:
Michael Kirk 2016-09-12 16:54:26 -04:00
parent 0a64022748
commit d8be0b5d22
40 changed files with 28 additions and 1 deletions

View File

@ -38,7 +38,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>2.5.0.9</string>
<string>2.5.0.10</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LOGS_EMAIL</key>

View File

@ -0,0 +1,27 @@
#!/usr/bin/env bash
set -x
function usage() {
cat <<EOS
Extracts string from target file to new.strings
$0 <filename.m>
e.g.
$0 path/to/my/ClassName.m
EOS
}
TARGET=$1
if [[ -z $TARGET ]]
then
echo "Can't proceed without target"
usage
exit 1
fi
OUTPUT_DIR=new_strings
mkdir -p "${OUTPUT_DIR}"
genstrings -o "${OUTPUT_DIR}" "${TARGET}"