NSLocalizedString 问题

发布于 2024-10-05 00:33:37 字数 752 浏览 3 评论 0原文

我有:

-(IBAction)about {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"About", @"Title of AlertView")
                                                    message:@"App name \n© My  name \n2010"
                                                   delegate:self
                                          cancelButtonTitle:NSLocalizedString(@"Back", @"Cancel Button Title")
                                          otherButtonTitles:nil];
    [alert show];
    [alert release];
}

在 Localized.strings 中:

/* Title of AlertView */
"About" = "Über";
/* Cancel Button Title */
"Back" = "Zurück";

我的问题:当语言是德语时,它是德语,但是当我将语言更改为英语时,警报视图仍然是德语

有什么问题吗?

I've got:

-(IBAction)about {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"About", @"Title of AlertView")
                                                    message:@"App name \n© My  name \n2010"
                                                   delegate:self
                                          cancelButtonTitle:NSLocalizedString(@"Back", @"Cancel Button Title")
                                          otherButtonTitles:nil];
    [alert show];
    [alert release];
}

And in the Localizable.strings :

/* Title of AlertView */
"About" = "Über";
/* Cancel Button Title */
"Back" = "Zurück";

My problem: When the language is german it's german but when I change the language to english the alert view is still german

What's wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

感情洁癖 2024-10-12 00:33:37

如果你使用 xCode 4 你将会面临这样的问题。尝试后续步骤:

  1. 从设备中删除应用程序
  2. 选择项目树的根节点以获取项目的属性
  3. 选择“构建阶段”选项卡
  4. 单击“添加构建阶段”并选择“复制文件”
  5. 在“复制文件”视图中选择“资源”
  6. 添加 Localized.strings文件
  7. 对项目
  8. “构建并运行”执行“清理”

If you use xCode 4 you will face with such problem. Try next steps:

  1. Remove application from device
  2. Select root node of project tree to get project's properties
  3. Select "Build Phases" tab
  4. Click "Add build phase" and select "Copy files"
  5. Select "Resources" in "Copy files" view
  6. Add Localizable.strings file
  7. Perform "Clean" for the project
  8. "Build and Run"
蓝戈者 2024-10-12 00:33:37

使 Localized.strings 文件可本地化(单击它,按 cmd+i 并按“使文件可本地化”按钮)并向其添加德语和英语本地化。然后将德语本地化写入该文件的德语版本,并保留英语版本,如下所示:

/* Title of AlertView */
"About" = "About";
/* Cancel Button Title */
"Back" = "Back";

Make the Localizable.strings file localizable (click on it, press cmd+i and push the "Make file localizable" button) and add German and English localizations to it. Then write the German localization to the German version of the file and leave the English version like this:

/* Title of AlertView */
"About" = "About";
/* Cancel Button Title */
"Back" = "Back";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文