I've a question about internationalization, but I've failed googling it, so I decided to ask it here.
I'm writing an app that contains a lot of heavy resources (images and movie clips). Also, I need to create the app in several language versions. My priority is to keep the package's size as low as possible, since I don't want the user to be forced to download a bundle which contains all possible language versions of the resources. One solution is to create N projects, each one would contain resources in the specific language. It has one main drawback - it would be much harder to maintain.
My question is: if I use Apple's way of localizing the apps (i.e. I'll have several .lproj folders), will the AppStore in the specific country download only required resources in the specific language? If no, how to achieve it without making N projects?