├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── README.md ├── ar.lproj └── Localizable.strings ├── ckb.lproj └── Localizable.strings ├── en.lproj └── Localizable.strings ├── es.lproj └── Localizable.strings ├── ja.lproj └── Localizable.strings ├── nl.lproj └── Localizable.strings ├── tr.lproj └── Localizable.strings └── zh.lproj └── Localizable.strings /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/README.md -------------------------------------------------------------------------------- /ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /ckb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/ckb.lproj/Localizable.strings -------------------------------------------------------------------------------- /en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /zh.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKarwan/iNKillerPlus/HEAD/zh.lproj/Localizable.strings --------------------------------------------------------------------------------