├── .github └── workflows │ ├── publish.yml │ └── sync_tx.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── __init__.py ├── locale └── en-us │ └── Run.voc ├── scripts ├── prepare_translations.py └── sync_translations.py ├── setup.py └── translations └── en-us └── vocabs.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/sync_tx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/.github/workflows/sync_tx.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/__init__.py -------------------------------------------------------------------------------- /locale/en-us/Run.voc: -------------------------------------------------------------------------------- 1 | run 2 | execute -------------------------------------------------------------------------------- /scripts/prepare_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/scripts/prepare_translations.py -------------------------------------------------------------------------------- /scripts/sync_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/scripts/sync_translations.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/setup.py -------------------------------------------------------------------------------- /translations/en-us/vocabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forslund/cmd_skill/HEAD/translations/en-us/vocabs.json --------------------------------------------------------------------------------