2
votes

I have followed the answers to some SO question to localize my app's name.

InfoPlist.strings (Base):

CFBundleDisplayName = "Name In English";
CFBundleName = "Name In English";

InfoPlist.strings (Arabic (Saudi Arabia)):

CFBundleDisplayName = "Name In Arabic";
CFBundleName = "Name In Arabic";

I have also tried adding quotation marks around CFBundleDisplayName and CFBundleName

InfoPlist.strings file is located at the root directory of my app.next to Info.plist file, but after localized, it was moved to Base.lproj dir and ar-SA.lproj dir.

However, my app is not using the localized name under its icon in the iPhone's home screen.

1
Did you remove bundle display name itself from project settings? Syntax without quotes is correctAzat
Do you mean from the Info.plist file?malhobayyeb
yes I do. it shouldn't be thereAzat

1 Answers

4
votes