The following procedure worked for me, but it includes manually editing project.pbxproj
file:
- Quit XCode
- Open the
project.pbxproj
file with your favorite text editor
- Update the following section (near
developmentRegion
):
OLD:
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
NEW:
developmentRegion = fr;
hasScannedForEncodings = 0;
knownRegions = (
fr,
Base,
);
I've created a GitHub repository with a sample project that was initially created with English as default Development Language, and then updated by the procedure above to use French as Development Language.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…