在Swift

时间:2015-08-14 19:56:18

标签: ios objective-c swift genstrings

我有一个基本的Swift文件Test.swift,其中包含

import Foundation
import UIKit

class Test: NSObject {
    let a: String
    let b: String

    override init() {
        a = NSLocalizedString("key 1", tableName: nil,
            bundle: NSBundle.mainBundle(), value: "value 1", comment: "comment 1")
        b = NSLocalizedString("key 2", comment: "comment 2")
    }
}

当我在此文件上运行genstrings时,我收到意外警告

$ genstrings -u Test.swift
Bad entry in file Test.swift (line = 9): Argument is not a literal string.

并且生成的Localizable.strings文件缺少"key 1"

的条目
$ cat Localizable.strings 
??/* comment 2 */
"key 2" = "key 2";

但是,当我使用文件Test.m中的以下代码在Objective-C中执行等效操作时

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

@interface Test: NSObject

@property (nonatomic, strong) NSString *a;
@property (nonatomic, strong) NSString *b;

@end

@implementation Test

- (id)init {
    self = [super init];
    if (self) {
        self.a = NSLocalizedStringWithDefaultValue(@"key 1", nil, [NSBundle mainBundle], @"value 1", @"comment 1");
        self.b = NSLocalizedString(@"key 2", @"comment 2");
    }
    return self;
}

@end

genstrings命令按预期工作,我得到"key 1"的条目。

$ genstrings -u Test.m 
$ cat Localizable.strings 
??/* comment 1 */
"key 1" = "value 1";

/* comment 2 */
"key 2" = "key 2";

我做错了什么?

2 个答案:

答案 0 :(得分:24)

显然苹果已经不再支持genstrings。而是使用:

xcrun extractLocStrings

作为你的命令。例如,要为项目创建Localizable.strings:

find ./ -name "*.m" -print0 | xargs -0 xcrun extractLocStrings -o en.lproj

和Swift:

find ./ -name "*.swift" -print0 | xargs -0 xcrun extractLocStrings -o en.lproj

请注意,如果您要导出到.xliff文件,则根本不再需要运行genstrings作为xCode

编辑器&gt;导出本地化

命令将在幕后处理你的字符串&#39;。

更新: 我在xCode 7.3.1上,在我的系统上,xtractLocStrings是二进制文件。

$ file /Applications/Xcode.app//Contents/Developer/usr/bin/extractLocStrings
    /Applications/Xcode.app//Contents/Developer/usr/bin/extractLocStrings: Mach-O 64-bit executable x86_64

这是我的测试:

let _ = NSLocalizedString("1st", comment: "1st string")
let _ = NSLocalizedString("Second", tableName: "Localized", bundle: NSBundle.mainBundle(), value: "2nd", comment: "2nd string”)

以下是结果:

Localizable.strings:
/* 1st string */
"1st" = "1st”;

Localized.strings:
/* 2nd string */
"Second" = "2nd”;

答案 1 :(得分:13)

这是Xcode 6.4和Xcode 7 beta中的genstrings的错误 报告https://openradar.appspot.com/22133811

  

在Swift文件中,genstrings Chokes On NSLocalizedString调用更多   比两个参数

     

摘要:对Swift文件运行genstrings时,如果有的话   任何NSLocalizedString调用使用的不仅仅是琐碎的情况   &#34;值&#34;和&#34;评论&#34;参数,genstrings错误输出。 ...