导出
从工程中的strings 文件导出成 xcloc 文件
export_localization.sh
rm -rf Localizations
xcodebuild -exportLocalizations -workspace *.xcworkspace \
-localizationPath ./Localizations \
-exportLanguage zh-hans \
-exportLanguage zh-HK \
-exportLanguage zh-hant \
-exportLanguage en
导入
从 xcloc 导入到工程
import_localization.sh
function import_lan() {
xcodebuild -importLocalizations -workspace *.xcworkspace -localizationPath Localizations/$1.xcloc
}
import_lan en
import_lan zh-Hans
import_lan zh-Hant
import_lan zh-HK
注意事项
-exportLanguage en,zh-hans 这种方式报错
导入的时候要一个一个语言导入,不能直接指定文件夹导入所有语言
参考:
https://developer.apple.com/documentation/xcode/exporting-localizations
https://developer.apple.com/documentation/xcode/importing-localizations