├── .github └── workflows │ ├── .travis.yml │ └── stale.yml ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── archive ├── README.md ├── archiveFilesTotal.js ├── archive_cards_script.js ├── cards │ ├── archive_1.json │ ├── archive_10.json │ ├── archive_11.json │ ├── archive_12.json │ ├── archive_13.json │ ├── archive_14.json │ ├── archive_15.json │ ├── archive_16.json │ ├── archive_17.json │ ├── archive_18.json │ ├── archive_19.json │ ├── archive_2.json │ ├── archive_20.json │ ├── archive_21.json │ ├── archive_22.json │ ├── archive_23.json │ ├── archive_24.json │ ├── archive_25.json │ ├── archive_26.json │ ├── archive_3.json │ ├── archive_4.json │ ├── archive_5.json │ ├── archive_6.json │ ├── archive_7.json │ ├── archive_8.json │ └── archive_9.json ├── clean.js └── deprecated │ ├── migrating_archiving_to_script.md │ └── readme.md ├── assets ├── script.js └── style.css ├── favicon.png ├── index.html ├── maintainer_guide.md ├── package.json ├── prettier.config.js ├── readme-only ├── branch-name.PNG ├── branch-new.PNG ├── branch-publish.PNG ├── card-copy.PNG ├── card-paste.PNG ├── card.PNG ├── change-about.PNG ├── change-contact.PNG ├── change-name.PNG ├── change-resources.PNG ├── clone-project.PNG ├── clone-terminal.png ├── clone-your-fork.PNG ├── clone.PNG ├── commit-header.PNG ├── commit-message.PNG ├── commit.PNG ├── find-card-template.png ├── fork.png ├── index-open.PNG ├── pull-request-branches-b.PNG ├── pull-request-branches.PNG ├── pull-request-open.PNG ├── pull-request.PNG └── push.PNG ├── terminal_tutorial.md └── translations ├── README.md ├── README ├── ARABIC.md ├── BANGLA.md ├── CHINESE_TRADITIONAL.md ├── DUTCH.md ├── FRENCH.md ├── GERMAN.md ├── GREEK.md ├── HINDI.md ├── ITALIAN.md ├── JAPANESE.md ├── KOREAN.md ├── MALAYALAM.md ├── NORWEGIAN.md ├── POLISH.md ├── PORTUGUESE.md ├── RUSSIAN.md ├── SERBIAN.md ├── SPANISH.md ├── SWAHILI.md ├── TURKISH.md ├── UKRAINIAN.md └── URDU.md ├── maintainer_guide ├── maintainer_guide.ben.md ├── maintainer_guide.ell.md ├── maintainer_guide.fra.md ├── maintainer_guide.ger.md ├── maintainer_guide.hin.md ├── maintainer_guide.ind.md ├── maintainer_guide.ita.md ├── maintainer_guide.jpn.md ├── maintainer_guide.kor.md ├── maintainer_guide.mar.md ├── maintainer_guide.por.md ├── maintainer_guide.rus.md ├── maintainer_guide.spa.md ├── maintainer_guide.swa.md ├── maintainer_guide.ukr.md └── maintainer_guide.zho-tc.md └── terminal_tutorial ├── terminal_tutorial.ben.md ├── terminal_tutorial.ger.md ├── terminal_tutorial.hin.md ├── terminal_tutorial.kor.md ├── terminal_tutorial.por-br.md ├── terminal_tutorial.ukr.md └── terminal_tutorial.zho-tc.md /.github/workflows/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/.github/workflows/.travis.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | *.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/README.md -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/README.md -------------------------------------------------------------------------------- /archive/archiveFilesTotal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/archiveFilesTotal.js -------------------------------------------------------------------------------- /archive/archive_cards_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/archive_cards_script.js -------------------------------------------------------------------------------- /archive/cards/archive_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_1.json -------------------------------------------------------------------------------- /archive/cards/archive_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_10.json -------------------------------------------------------------------------------- /archive/cards/archive_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_11.json -------------------------------------------------------------------------------- /archive/cards/archive_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_12.json -------------------------------------------------------------------------------- /archive/cards/archive_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_13.json -------------------------------------------------------------------------------- /archive/cards/archive_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_14.json -------------------------------------------------------------------------------- /archive/cards/archive_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_15.json -------------------------------------------------------------------------------- /archive/cards/archive_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_16.json -------------------------------------------------------------------------------- /archive/cards/archive_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_17.json -------------------------------------------------------------------------------- /archive/cards/archive_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_18.json -------------------------------------------------------------------------------- /archive/cards/archive_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_19.json -------------------------------------------------------------------------------- /archive/cards/archive_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_2.json -------------------------------------------------------------------------------- /archive/cards/archive_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_20.json -------------------------------------------------------------------------------- /archive/cards/archive_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_21.json -------------------------------------------------------------------------------- /archive/cards/archive_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_22.json -------------------------------------------------------------------------------- /archive/cards/archive_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_23.json -------------------------------------------------------------------------------- /archive/cards/archive_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_24.json -------------------------------------------------------------------------------- /archive/cards/archive_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_25.json -------------------------------------------------------------------------------- /archive/cards/archive_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_26.json -------------------------------------------------------------------------------- /archive/cards/archive_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_3.json -------------------------------------------------------------------------------- /archive/cards/archive_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_4.json -------------------------------------------------------------------------------- /archive/cards/archive_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_5.json -------------------------------------------------------------------------------- /archive/cards/archive_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_6.json -------------------------------------------------------------------------------- /archive/cards/archive_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_7.json -------------------------------------------------------------------------------- /archive/cards/archive_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_8.json -------------------------------------------------------------------------------- /archive/cards/archive_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/cards/archive_9.json -------------------------------------------------------------------------------- /archive/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/clean.js -------------------------------------------------------------------------------- /archive/deprecated/migrating_archiving_to_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/deprecated/migrating_archiving_to_script.md -------------------------------------------------------------------------------- /archive/deprecated/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/archive/deprecated/readme.md -------------------------------------------------------------------------------- /assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/assets/script.js -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/assets/style.css -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/favicon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/index.html -------------------------------------------------------------------------------- /maintainer_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/maintainer_guide.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/prettier.config.js -------------------------------------------------------------------------------- /readme-only/branch-name.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/branch-name.PNG -------------------------------------------------------------------------------- /readme-only/branch-new.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/branch-new.PNG -------------------------------------------------------------------------------- /readme-only/branch-publish.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/branch-publish.PNG -------------------------------------------------------------------------------- /readme-only/card-copy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/card-copy.PNG -------------------------------------------------------------------------------- /readme-only/card-paste.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/card-paste.PNG -------------------------------------------------------------------------------- /readme-only/card.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/card.PNG -------------------------------------------------------------------------------- /readme-only/change-about.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/change-about.PNG -------------------------------------------------------------------------------- /readme-only/change-contact.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/change-contact.PNG -------------------------------------------------------------------------------- /readme-only/change-name.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/change-name.PNG -------------------------------------------------------------------------------- /readme-only/change-resources.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/change-resources.PNG -------------------------------------------------------------------------------- /readme-only/clone-project.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/clone-project.PNG -------------------------------------------------------------------------------- /readme-only/clone-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/clone-terminal.png -------------------------------------------------------------------------------- /readme-only/clone-your-fork.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/clone-your-fork.PNG -------------------------------------------------------------------------------- /readme-only/clone.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/clone.PNG -------------------------------------------------------------------------------- /readme-only/commit-header.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/commit-header.PNG -------------------------------------------------------------------------------- /readme-only/commit-message.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/commit-message.PNG -------------------------------------------------------------------------------- /readme-only/commit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/commit.PNG -------------------------------------------------------------------------------- /readme-only/find-card-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/find-card-template.png -------------------------------------------------------------------------------- /readme-only/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/fork.png -------------------------------------------------------------------------------- /readme-only/index-open.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/index-open.PNG -------------------------------------------------------------------------------- /readme-only/pull-request-branches-b.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/pull-request-branches-b.PNG -------------------------------------------------------------------------------- /readme-only/pull-request-branches.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/pull-request-branches.PNG -------------------------------------------------------------------------------- /readme-only/pull-request-open.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/pull-request-open.PNG -------------------------------------------------------------------------------- /readme-only/pull-request.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/pull-request.PNG -------------------------------------------------------------------------------- /readme-only/push.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/readme-only/push.PNG -------------------------------------------------------------------------------- /terminal_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/terminal_tutorial.md -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README.md -------------------------------------------------------------------------------- /translations/README/ARABIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/ARABIC.md -------------------------------------------------------------------------------- /translations/README/BANGLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/BANGLA.md -------------------------------------------------------------------------------- /translations/README/CHINESE_TRADITIONAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/CHINESE_TRADITIONAL.md -------------------------------------------------------------------------------- /translations/README/DUTCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/DUTCH.md -------------------------------------------------------------------------------- /translations/README/FRENCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/FRENCH.md -------------------------------------------------------------------------------- /translations/README/GERMAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/GERMAN.md -------------------------------------------------------------------------------- /translations/README/GREEK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/GREEK.md -------------------------------------------------------------------------------- /translations/README/HINDI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/HINDI.md -------------------------------------------------------------------------------- /translations/README/ITALIAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/ITALIAN.md -------------------------------------------------------------------------------- /translations/README/JAPANESE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/JAPANESE.md -------------------------------------------------------------------------------- /translations/README/KOREAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/KOREAN.md -------------------------------------------------------------------------------- /translations/README/MALAYALAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/MALAYALAM.md -------------------------------------------------------------------------------- /translations/README/NORWEGIAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/NORWEGIAN.md -------------------------------------------------------------------------------- /translations/README/POLISH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/POLISH.md -------------------------------------------------------------------------------- /translations/README/PORTUGUESE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/PORTUGUESE.md -------------------------------------------------------------------------------- /translations/README/RUSSIAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/RUSSIAN.md -------------------------------------------------------------------------------- /translations/README/SERBIAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/SERBIAN.md -------------------------------------------------------------------------------- /translations/README/SPANISH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/SPANISH.md -------------------------------------------------------------------------------- /translations/README/SWAHILI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/SWAHILI.md -------------------------------------------------------------------------------- /translations/README/TURKISH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/TURKISH.md -------------------------------------------------------------------------------- /translations/README/UKRAINIAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/UKRAINIAN.md -------------------------------------------------------------------------------- /translations/README/URDU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/README/URDU.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.ben.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.ben.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.ell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.ell.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.fra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.fra.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.ger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.ger.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.hin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.hin.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.ind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.ind.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.ita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.ita.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.jpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.jpn.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.kor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.kor.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.mar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.mar.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.por.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.por.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.rus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.rus.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.spa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.spa.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.swa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.swa.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.ukr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.ukr.md -------------------------------------------------------------------------------- /translations/maintainer_guide/maintainer_guide.zho-tc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/maintainer_guide/maintainer_guide.zho-tc.md -------------------------------------------------------------------------------- /translations/terminal_tutorial/terminal_tutorial.ben.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/terminal_tutorial/terminal_tutorial.ben.md -------------------------------------------------------------------------------- /translations/terminal_tutorial/terminal_tutorial.ger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/terminal_tutorial/terminal_tutorial.ger.md -------------------------------------------------------------------------------- /translations/terminal_tutorial/terminal_tutorial.hin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/terminal_tutorial/terminal_tutorial.hin.md -------------------------------------------------------------------------------- /translations/terminal_tutorial/terminal_tutorial.kor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/terminal_tutorial/terminal_tutorial.kor.md -------------------------------------------------------------------------------- /translations/terminal_tutorial/terminal_tutorial.por-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/terminal_tutorial/terminal_tutorial.por-br.md -------------------------------------------------------------------------------- /translations/terminal_tutorial/terminal_tutorial.ukr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/terminal_tutorial/terminal_tutorial.ukr.md -------------------------------------------------------------------------------- /translations/terminal_tutorial/terminal_tutorial.zho-tc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Syknapse/Contribute-To-This-Project/HEAD/translations/terminal_tutorial/terminal_tutorial.zho-tc.md --------------------------------------------------------------------------------