If you want to contribute - make sure that the translation into your preferred language is not complete yet by looking at the Progress section.
Then check the Contributing section to know how to get started.
Code | Language | Progress | Summary | Contributors |
---|---|---|---|---|
en | English | ██████████ 100% | built in | |
ru | Russian | ██████████ 100% | built in | |
ar | Arabic | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
be | Belarusian | ██████████ 100% | fully done | HiddenDeath |
da | Danish | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
de | German | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
es | Spanish | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
fa | Persian | ████████▒▒ 80% | missing: bot_feedback_text; need to confirm the correctness | @A460N |
fi | Finnish | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
fr | French | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
hi | Hindi | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
it | Italian | ████████▒▒ 80% | missing: bot_feedback_text; need to confirm the correctness | MrJiavo |
ja | Japanese | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
kk | Kazakh | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
no | Norwegian | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
pl | Polish | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
pt | Portuguese | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
sv | Swedish | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed | |
tr | Turkish | ███████▒▒▒ 70% | some parts are untranslated; need to confirm the correctness | @ITMiroN |
uk | Ukrainian | ██████████ 100% | fully done | akimerslys, Agent47Dev |
uz | Uzbek | ████████▒▒ 80% | missing: settings, user game stats; need to confirm the correctness | @d1az1337 |
zh | Chinese | ▒▒▒▒▒▒▒▒▒▒ 0% | contributors needed |
- Fork this repository.
- Open Git Bash and clone the forked repository:
Then go into the project directory with:
git clone {your fork link}
cd INCS2bot
- Create a new repository branch and checkout to it with:
git checkout -b {branch name}
- Open the repository folder. In
l10n/data/
folder, find prefered lang file.- If there is no such file, you can create it by yourself.
Just copyen.json
and rename it with ISO 639-1 code of prefered language (e.g.de.json
).
- If there is no such file, you can create it by yourself.
- Open the file and start translating it based on string keys and original text.
- We highly recommend checking the bot functionality to have more context.
- Remember to add some tags in your language to
tags.json
. - In Git, add new files with:
Then commit the changes:
git add *
And push them to your fork.git commit -a -m "{Useful commit message here}"
git push origin {branch name}
- Submit a pull request to the original repository and wait for tests results and our feedback.