I've loaded an BSBundle
for a localisation something like this:
NSURL *const bundleURL = [[NSBundle mainBundle]
URLForResource:localizationName
withExtension:@"lproj"];
NSBundle *const bundle = [NSBundle bundleWithURL:bundleURL];
… how can I (elsewhere) get back localizationName
from bundle
by sending a message to it?