objective-c – Swift文件的genstrings问题

前端之家收集整理的这篇文章主要介绍了objective-c – Swift文件的genstrings问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
genstrings很好地从.m文件提取可本地化的内容,
find . -name \*.m | xargs genstrings -o en.lproj

但是,不适用于.swift文件,

find . -name \*.swift | xargs genstrings -o en.lproj

解决方法

根据我的关注,genstrings工具可以很好的工作.这是我的测试:
// MyClass.swift
let message = NSLocalizedString("This is the test message.",comment: "Test")

然后,在该类的文件夹中

$genstrings *swift
$cat Localizable.strings
/* Test */
"This is the test message." = "This is the test message.";
$
原文链接:https://www.f2er.com/c/113426.html

猜你在找的C&C++相关文章