iOS 多语言 Localizable.strings2Excel 使用笔记

使用方法

  • 0.先把 Localizable.strings2Excel 拷贝到电脑

  • 1.安装pyexcelerator组件

切换到pyexcelerator-0.6.4.1目录,执行sudo python setup.py install 安装

注意:

Localizable.string文件内的内容,必须是下面这样(就是等号左右两边都有一个空格)

"PLAY" = "运行";
  • 2.使用脚本(先cd到 Localizable.strings2Excel-master 文件夹内)

Localizable.strings转换成xls文件

python Localizable.py -f xxx/xxx.strings -t xxx/xxx.xls

xls文件转换成Localizable.strings文件

python LocalizableBack.py -f xxx/xxx.xls -t xxx/xxx.strings

Localizable.strings转换成strings.xml文件

python LocalizableToStringXml.py -f xxx/xxx.strings -t xxx/xxx.xml


地址:

https://github.com/CatchZeng/Localizable.strings2Excel

你可能感兴趣的:(iOS 多语言 Localizable.strings2Excel 使用笔记)