I want to scan my Android project for all hardcoded Strings so I can localize the project, putting the Strings in strings.xml. I see an option in Eclipse to \'Externalize String
I was searching for this myself. There is a nice way of doing this:
Right click on "src" directory -> Source -> Externalize Strings
This will find all Non-Externalize Strings and let you Externalize them.
Hope this will help :)
Edit:
This is not same as the Android -> Extract Android String.
But it can help you find all the Non-Externalize strings. Then, on each string you will have to perform:
Ctrl + 1 -> Android -> Extract Android String.