What is the best way to find all user facing text in an iOS app for localization?

53 Views Asked by At

I have an older objective-C iOS project with thousands of strings, both user facing and internal, that is not localized.

My main challenge is to identify user facing text that are string literals in code without NSLocalizedString wrapper.

I cannot just find and replace all string literals in code, as some (hundreds) of them are not user facing text.

Is there a way to find all the user facing strings, and wrap them with NSLocalizedString so that I can localize my app?

0

There are 0 best solutions below