を含む基本的な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";
ただし、ファイルで以下のコードを使用してObjective-Cで同等のことを行うとTest.m
#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";
私は何を間違っていますか?