How do I change the Development language in Xcode before internationalizing my app?(在国际化我的应用程序之前,如何更改 Xcode 中的开发语言?)
问题描述
我正在接管一个完全用法语编写的应用程序.字符串在代码中用法语硬编码,情节提要中的所有消息都是法语.但是 Info.plist 中的初始开发区域留给了英语.所以我将 CFBundleDevelopmentRegion 更改为 fr 以便它与所使用的真实语言相匹配.但是 XCode 一直告诉我我的开发语言是英语:
我该如何纠正?目标是能够激活基本国际化并让它使用法语作为基本语言而不是英语.
以下过程对我有用,但它包括手动编辑 project.pbxproj 文件:
- 退出 XCode
- 使用您喜欢的文本编辑器打开
project.pbxproj文件 - 更新以下部分(
developmentRegion附近):
旧:
developmentRegion = English;hasScannedForEncodings = 0;已知区域 = (恩,根据,);新:
developmentRegion = fr;hasScannedForEncodings = 0;已知区域 = (FR,根据,);我创建了一个
I'm taking over an app that was written entirely in French. Strings are hardcoded in French in the code, and all the messages in the storyboard are in French. But the initial development region in Info.plist was left to English. So I changed CFBundleDevelopmentRegion to fr so that it matches the real language that was used. But XCode keeps telling me that my Development language is English:
How can I correct that? The goal is to be able to activate Base Internationalization and have it use French as the Base language instead of English.
The following procedure worked for me, but it includes manually editing project.pbxproj file:
- Quit XCode
- Open the
project.pbxprojfile 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.
这篇关于在国际化我的应用程序之前,如何更改 Xcode 中的开发语言?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在国际化我的应用程序之前,如何更改 Xcode 中的开发语言?
基础教程推荐
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
