I create an external module for a program that need externals ad .bundle files. I create my Xcode project and set the name of target to MyExternal In info setting I set:
Bundle name -> $(PRODUCT_NAME)
Bundle display name -> $(PRODUCT_NAME)
Application has localized display name -> YES
Then I add InfoPlist strings for Italian and English language and I set for Italian language this:
"CFBundleName" = "Prova";
"CFBundleDisplayName" = "Prova";
Building the project the name of the created bundle remain MyExternal.bundle
I try the same step for an App and I see that doing the same setting the app name are localized in Italian language correctly.
It is not possible to localize a name of a .bundle file?
Is there a way to obtain a localization of the name of a .bundle file?