Last active
August 29, 2015 14:19
-
-
Save antongaenko/f6a8fe566c8101ef0912 to your computer and use it in GitHub Desktop.
Revisions
-
antongaenko revised this gist
Jul 6, 2015 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,5 @@ // make .strings from all NSLocalizedString occuerences find ./ -name "*.m" -print0 | xargs -0 genstrings // Count words in a file for localization cost estimate cat Localizable.strings | grep ';$' | awk -F= '{ print $2 }' | wc -w -
adr-enal-in created this gist
Feb 24, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ // Count words in a file for localization cost estimate cat Localizable.strings | grep ';$' | awk -F= '{ print $2 }' | wc -w