├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── logo_1_3.svg ├── pytest.ini ├── requirements.txt ├── setup.cfg ├── setup.py ├── strsync-runner.py ├── strsync ├── __init__.py ├── __main__.py ├── lc_ios9.tsv ├── strlocale.py ├── strparser.py ├── strparser_intentdefinition.py ├── strsync.py └── strtrans.py ├── structure.png ├── structure.svg ├── test-requirements.txt ├── tests ├── __init__.py └── test_strsync.py ├── usage_sample.gif └── utils ├── README.md ├── genl10n.String.swift ├── genl10n.py ├── gentxtl10n.py └── genusrl10n.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/README.rst -------------------------------------------------------------------------------- /logo_1_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/logo_1_3.svg -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/setup.py -------------------------------------------------------------------------------- /strsync-runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/strsync-runner.py -------------------------------------------------------------------------------- /strsync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strsync/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/strsync/__main__.py -------------------------------------------------------------------------------- /strsync/lc_ios9.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/strsync/lc_ios9.tsv -------------------------------------------------------------------------------- /strsync/strlocale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/strsync/strlocale.py -------------------------------------------------------------------------------- /strsync/strparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/strsync/strparser.py -------------------------------------------------------------------------------- /strsync/strparser_intentdefinition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/strsync/strparser_intentdefinition.py -------------------------------------------------------------------------------- /strsync/strsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/strsync/strsync.py -------------------------------------------------------------------------------- /strsync/strtrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/strsync/strtrans.py -------------------------------------------------------------------------------- /structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/structure.png -------------------------------------------------------------------------------- /structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/structure.svg -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | requests>=2.13.0 3 | future==0.14.3 4 | coveralls==1.1 5 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_strsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/tests/test_strsync.py -------------------------------------------------------------------------------- /usage_sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/usage_sample.gif -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/genl10n.String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/utils/genl10n.String.swift -------------------------------------------------------------------------------- /utils/genl10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/utils/genl10n.py -------------------------------------------------------------------------------- /utils/gentxtl10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/utils/gentxtl10n.py -------------------------------------------------------------------------------- /utils/genusrl10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metasmile/strsync/HEAD/utils/genusrl10n.py --------------------------------------------------------------------------------