is it possible to check if a translated value is used in my project.
For example, I want to check automatically if e.g.
/*
Localizable.strings
*/
"THOUSAND"="Thousand";
"VALUE"="value"
...
is used somewhere in my project (in the following macro: NSLocalizedString(@"THOUSAND",@"");)?
I can do this by search value after value, but let's say there are 1000 values? So automatically do that would save much time :-D
BR & THX, mybecks