├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.md │ └── question.md ├── issue_template.md └── workflows │ └── stale.yml ├── README.md ├── Settings └── DeathMessages │ ├── Locale_CN.yml │ ├── Locale_EN.yml │ ├── Locale_ES.yml │ └── Locale_FR.yml ├── Translations ├── Locale_BR.yml ├── Locale_CN.yml ├── Locale_CZ.yml ├── Locale_DE.yml ├── Locale_EN.yml ├── Locale_ES.yml ├── Locale_FR.yml ├── Locale_IT.yml ├── Locale_JA.yml ├── Locale_KO.yml ├── Locale_LT.yml ├── Locale_NO.yml ├── Locale_PL.yml ├── Locale_RU.yml ├── Locale_SK.yml ├── Locale_SL.yml ├── Locale_TR.yml ├── Locale_UA.yml └── Locale_ZH.yml └── dataFiles └── CustomColors.yml /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/README.md -------------------------------------------------------------------------------- /Settings/DeathMessages/Locale_CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Settings/DeathMessages/Locale_CN.yml -------------------------------------------------------------------------------- /Settings/DeathMessages/Locale_EN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Settings/DeathMessages/Locale_EN.yml -------------------------------------------------------------------------------- /Settings/DeathMessages/Locale_ES.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Settings/DeathMessages/Locale_ES.yml -------------------------------------------------------------------------------- /Settings/DeathMessages/Locale_FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Settings/DeathMessages/Locale_FR.yml -------------------------------------------------------------------------------- /Translations/Locale_BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_BR.yml -------------------------------------------------------------------------------- /Translations/Locale_CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_CN.yml -------------------------------------------------------------------------------- /Translations/Locale_CZ.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_CZ.yml -------------------------------------------------------------------------------- /Translations/Locale_DE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_DE.yml -------------------------------------------------------------------------------- /Translations/Locale_EN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_EN.yml -------------------------------------------------------------------------------- /Translations/Locale_ES.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_ES.yml -------------------------------------------------------------------------------- /Translations/Locale_FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_FR.yml -------------------------------------------------------------------------------- /Translations/Locale_IT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_IT.yml -------------------------------------------------------------------------------- /Translations/Locale_JA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_JA.yml -------------------------------------------------------------------------------- /Translations/Locale_KO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_KO.yml -------------------------------------------------------------------------------- /Translations/Locale_LT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_LT.yml -------------------------------------------------------------------------------- /Translations/Locale_NO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_NO.yml -------------------------------------------------------------------------------- /Translations/Locale_PL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_PL.yml -------------------------------------------------------------------------------- /Translations/Locale_RU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_RU.yml -------------------------------------------------------------------------------- /Translations/Locale_SK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_SK.yml -------------------------------------------------------------------------------- /Translations/Locale_SL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_SL.yml -------------------------------------------------------------------------------- /Translations/Locale_TR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_TR.yml -------------------------------------------------------------------------------- /Translations/Locale_UA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_UA.yml -------------------------------------------------------------------------------- /Translations/Locale_ZH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/Translations/Locale_ZH.yml -------------------------------------------------------------------------------- /dataFiles/CustomColors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zrips/CMI/HEAD/dataFiles/CustomColors.yml --------------------------------------------------------------------------------