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?