Difference between revisions of "ApplePlatformsDevFocus"
From Lost In Wonderlands
(Created page with "= Apple iOS Dev elopement Focus = '''NeXT Steps''' ''here everything has yet to be done !'' ''coming soon'' : '''''Everything You Always Wanted to Know on developement...") |
|||
Line 34: | Line 34: | ||
find ./ -name "*.m" -print0 | xargs -0 genstrings -o en.lproj | find ./ -name "*.m" -print0 | xargs -0 genstrings -o en.lproj | ||
+ | another tool exists to settle issues with swift : | ||
+ | [https://github.com/kayak/SwiftGenStrings SwiftGenStrings] | ||
== Articles== | == Articles== |
Revision as of 12:18, 30 December 2019
Contents
Apple iOS Dev elopement Focus
NeXT Steps
here everything has yet to be done !
coming soon :
Everything You Always Wanted to Know on developement focuses... (But Were Afraid to Ask)
a collection of links of interest
See also
Focus on
Localization
using genstrings
for objective c files find . -name \*.m | xargs genstrings -o en.lproj
for swift files find . -name \*.swift | xargs genstrings -o en.lproj
across several folders find ./ -name "*.m" -print0 | xargs -0 genstrings -o en.lproj
another tool exists to settle issues with swift : SwiftGenStrings