在国际化我的应用程序之前,如何更改Xcode中的开发语言? [英] How do I change the Development language in Xcode before internationalizing my app?

查看:120
本文介绍了在国际化我的应用程序之前,如何更改Xcode中的开发语言?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在接管一个完全用法语写的应用程序。字符串在代码中使用法语进行硬编码,故事板中的所有消息都使用法语。但Info.plist中的初始开发区域是英语。所以我将CFBundleDevelopmentRegion更改为fr,以便它与使用的真实语言相匹配。但XCode一直告诉我,我的开发语言是英语:





如何更正?目标是能够激活基础国际化,并使用法语作为基础语言而不是英语。

解决方案

以下程序适用于我,但它包括手动编辑 project.pbxproj 文件:


  1. 退出XCode

  2. 使用您喜欢的文本编辑器打开 project.pbxproj 文件

  3. 更新以下部分( developmentRegion 附近):

OLD:

  developmentRegion = English; 
hasScannedForEncodings = 0;
knownRegions =(
en,
Base,
);

新:

  developmentRegion = fr; 
hasScannedForEncodings = 0;
knownRegions =(
fr,
Base,
);

我创建了一个


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:

  1. Quit XCode
  2. Open the project.pbxproj file with your favorite text editor
  3. 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中的开发语言?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆