├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── LocalizableTool.iml ├── README.md ├── python ├── Localizable Tool.py ├── Log.py ├── Strings2Xls.py ├── Strings2Xml.py ├── StringsFileUtil.py ├── Xls2Strings.py ├── Xls2Xml.py ├── XlsFileUtil.py ├── Xml2Xls.py └── XmlFileUtil.py ├── screenshot └── 1.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/LICENSE -------------------------------------------------------------------------------- /LocalizableTool.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/LocalizableTool.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/README.md -------------------------------------------------------------------------------- /python/Localizable Tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/Localizable Tool.py -------------------------------------------------------------------------------- /python/Log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/Log.py -------------------------------------------------------------------------------- /python/Strings2Xls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/Strings2Xls.py -------------------------------------------------------------------------------- /python/Strings2Xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/Strings2Xml.py -------------------------------------------------------------------------------- /python/StringsFileUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/StringsFileUtil.py -------------------------------------------------------------------------------- /python/Xls2Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/Xls2Strings.py -------------------------------------------------------------------------------- /python/Xls2Xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/Xls2Xml.py -------------------------------------------------------------------------------- /python/XlsFileUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/XlsFileUtil.py -------------------------------------------------------------------------------- /python/Xml2Xls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/Xml2Xls.py -------------------------------------------------------------------------------- /python/XmlFileUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/python/XmlFileUtil.py -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParfoisMeng/LocalizableTool/HEAD/setup.py --------------------------------------------------------------------------------