I'm new to localized string resources and seem unable to properly use CFBundleCopyLocalizedString.
As this seems to be a very common reason for troubles, I have double checked the format of the *.string resource file using plutil and the file itself seems to be ok.
I therefore guess that I'm just not properly locating the *.strings resource file and would need some help on how to trace this.
I load the string resources using something like:
CFBundleCopyLocalizedString(CFBundleGetMainBundle(), CFSTR("TEST"), CFSTR(""), CFSTR("Localizable"));"
I actually don't care about localization (for the moment) so I've put my resource file (Localizable.strings) to a directory Contents/Resources/English.lproj.
Is this correct or do I somehow need to specify where the string resources have been put?
Can I somehow find out where CFBundleCopyLocalizedString is looking for the string resources?
Can I somehow hard-code where to look for the string resurces?
Any help is appreciated!