ios - genstrings only finding 5 out of about 100 instances of NSLocalizedString -
I have about 100 instances where I use the NSLchronized String to spread through multiple files in multiple directories.
I tried to use this command to create a .strings file from a top level directory:
find-name \ *. M | Xargs genstrings -o en.lproj but this caused an error:
could not connect to the output directory en.lproj So I just took it off:
find -name \ *. M | Xargs genstrings This generated a Localizable.strings file, but its content has raised NSLocalizedString events with only 2 files - which may not be coincidentally in the same directory.
Why command will work only on one directory and then it will be shut down I'm running a command from the high level directory h and these source files were found in m, so got the command h / m, but h There are peer directories for M / A, such as AH / B, which contain M files containing NSLchronized string instances.
Why any issue might be a problem?
I think that the folds in the genstrings in which they have spaces have worked for me: / P>
find -name "* .m" -print 0 | Xargs-0 genstrings -o "OUTPUT_FOLDER"
Comments
Post a Comment