├── .gitattributes ├── .gitignore ├── .vscode └── tasks.json ├── LICENSE ├── OpenMWExport.py ├── OpenMWExport_en.ts ├── README.md ├── compile_translations.ps1 ├── install.ps1 ├── openmw.ico └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ts text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenMWExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/OpenMWExport.py -------------------------------------------------------------------------------- /OpenMWExport_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/OpenMWExport_en.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/README.md -------------------------------------------------------------------------------- /compile_translations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/compile_translations.ps1 -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/install.ps1 -------------------------------------------------------------------------------- /openmw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/openmw.ico -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnyOldName3/ModOrganizer-to-OpenMW/HEAD/requirements.txt --------------------------------------------------------------------------------