trans = ParseTranslationContent(
- DefaultConfigResource.ResourceManager.GetString("Translation_" + lang.Replace('-', '_'), System.Globalization.CultureInfo.InvariantCulture)!
- .Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.None)
- );
- string fileName = AppDomain.CurrentDomain.BaseDirectory + Path.DirectorySeparatorChar + translationFilePath + Path.DirectorySeparatorChar + lang + ".ini";
- if (File.Exists(fileName))
- {
- string backupFilePath = Path.ChangeExtension(fileName, ".backup.ini");
- try
- {
- File.Copy(fileName, backupFilePath, true);
- File.Delete(fileName);
- }
- catch (Exception ex)
- {
- ConsoleIO.WriteLineFormatted(Translations.TryGet("config.backup.fail", backupFilePath));
- ConsoleIO.WriteLine(ex.Message);
- return;
- }
- }
- StringBuilder sb = new();
- int total = 0, translated = 0;
- int total_char = 0, translated_char = 0;
- for (int i = 0; i < transEn.Length; ++i)
- {
- string line = transEn[i].Trim();
- int index = transEn[i].IndexOf('=');
- if (line.Length < 3 || !char.IsLetterOrDigit(line[0]) || index == -1 || line.Length <= (index + 1))
- {
- sb.Append(line);
- }
- else
- {
- int en_value_len = line.Length - index;
- string key = line[..index];
- sb.Append(key).Append('=');
- if (trans.TryGetValue(key, out string? value))
- {
- sb.Append(value.Replace("\n", "\\n"));
- ++translated;
- translated_char += en_value_len;
- }
- ++total;
- total_char += en_value_len;
- }
- sb.AppendLine();
- }
- File.WriteAllText(fileName, sb.ToString(), Encoding.Unicode);
- ConsoleIO.WriteLine(string.Format("Language {0}: Translated {1} of {2}, {3:0.00}%", lang, translated, total, 100.0 * translated_char / total_char));
- }
- }
-
- #region Console writing method wrapper
-
- ///
- /// Translate the key and write the result to the standard output, without newline character
- ///
- /// Translation key
- public static void Write(string key)
- {
- ConsoleIO.WriteLine(Get(key));
- }
-
- ///
- /// Translate the key and write a Minecraft-Like formatted string to the standard output, using §c color codes
- /// See minecraft.gamepedia.com/Classic_server_protocol#Color_Codes for more info
- ///
- /// Translation key
- /// If false, space are printed instead of newlines
- ///
- /// If false, no timestamp is prepended.
- /// If true, "hh-mm-ss" timestamp will be prepended.
- /// If unspecified, value is retrieved from EnableTimestamps.
- ///
- public static void WriteLineFormatted(string key, bool acceptnewlines = true, bool? displayTimestamp = null)
- {
- ConsoleIO.WriteLineFormatted(Get(key), acceptnewlines, displayTimestamp);
- }
-
- ///
- /// Translate the key, format the result and write it to the standard output with a trailing newline. Support string formatting
- ///
- /// Translation key
- ///
- public static void WriteLine(string key, params object[] args)
- {
- if (args.Length > 0)
- ConsoleIO.WriteLine(string.Format(Get(key), args));
- else ConsoleIO.WriteLine(Get(key));
- }
-
- ///
- /// Translate the key and write the result with a prefixed log line. Prefix is set in LogPrefix.
- ///
- /// Translation key
- /// Allow line breaks
- public static void WriteLogLine(string key, bool acceptnewlines = true)
- {
- ConsoleIO.WriteLogLine(Get(key), acceptnewlines);
- }
-
- #endregion
- }
-}
\ No newline at end of file
diff --git a/MinecraftClient/config/ChatBots/MineCube.cs b/MinecraftClient/config/ChatBots/MineCube.cs
index d53c84ab..43f1e20d 100644
--- a/MinecraftClient/config/ChatBots/MineCube.cs
+++ b/MinecraftClient/config/ChatBots/MineCube.cs
@@ -18,7 +18,7 @@ class MineCube : ChatBot
{
if (!GetTerrainEnabled())
{
- LogToConsole(Translations.Get("extra.terrainandmovement_required"));
+ LogToConsole(Translations.extra_terrainandmovement_required);
UnloadBot();
return;
}
diff --git a/README-nl.md b/README-nl.md
deleted file mode 100644
index 60b96309..00000000
--- a/README-nl.md
+++ /dev/null
@@ -1,54 +0,0 @@
-Minecraft Console Client
-========================
-
-[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
-
-Minecraft Console Client (MCC) is een simpele app waarmee je Minecraft servers kan joinen, command sturen en berichten ontvangen op een snelle en makkelijke manier zonder Minecraft echt hoeven te openen. Het biedt ook verschillende geautomatiseerde functies die je kan aanzetten voor administratie en andere dingen.
-
-## Download 🔽
-
-Verkrijg [hier](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) de laatste ontwikkelde binaire versie.
-De exe file is een .NET binary die ook werkt op Mac en Linux.
-
-## Hoe Te Gebruiken 📚
-
-Bekijk [hier](MinecraftClient/config/) een voorbeeld van de configuratie bestand, deze bevat uitleg om het te gebruiken. Daarnaats kan je de [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) lezen.
-
-## Hulp Krijgen 🙋
-
-Bekijk de [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) en de bestaande [discussies](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Misschien is je vraag daar al beantwoord. Als dat niet zo is open dan een [nieuwe discussie](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) en stel je vraag. Als je een bug vind, rapporteer dat bij de [problemen](https://github.com/MCCTeam/Minecraft-Console-Client/issues) sectie.
-
-## Steentje bijdragen ❤️
-
-We zijn een kleine community, dus we hebben hulp nodig bij het implementeren van verbeteringen voor de nieuwe Minecraft-versies, het oplossen van bugs en het uitbreiden van het project. We zijn altijd op zoek naar gemotiveerde mensen om een steentje bij te dragen. Als je het gevoel hebt dat jij de persoon bent die wij zoeken, kijk dan eens naar de [problemen](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) sectie :)
-
-## Hoe draag je bij 📝
-
-Als je graag mee wilt helpen aan Minecraft Console Client, geweldig! Fork de repository en dien een pull request in op de *Master* branch. MCC gebruikt de *master* branch voor de stabiel versies (dus we gebruiken de *Indev* branch niet meer).
-
-
-
-## Minecraft Console Client Vertalen 🌍
-
-Als je de Minecraft Console Client wilt vertalen naar een andere taal, download dan het vertalings bestand via [de talen folder](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/Resources/lang) of fork de repository. Nadat je klaar bent met de vertaling dien je de vertaling in of stuur je ons het bestand door d.m.v. een [probleem](https://github.com/MCCTeam/Minecraft-Console-Client/issues) (voorals je nieuw bent met Git(Hub)).
-
-Als je het vertaalde taalbestand wilt gebruiken, plaats je het onder `lang/mcc/` map en stel je de taal in `.ini` config. Je kunt de map maken als deze niet bestaat.
-
-Voor de namen van het vertaalbestand, zie [dit bericht](https://github.com/MCCTeam/Minecraft-Console-Client/pull/1282#issuecomment-711150715).
-
-## Eigen versie bouwen 🏗️
-
-Dit gedeelte is verplaatst naar onze nieuwe documentatiewebsite.
-[Klik hier](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
-
-## Licentie ⚖️
-
-Tenzij anders aangegeven, is de code van hete MCC Team of vrijwilligers, en beschikbaar onder CDDL-1.0. De licentie en orginele autheur zijn te vinden in de kopteksten van de bronnen te vinden.
-De belangrijkste punten van de CDDL-1.0 licentie zijn als volgt:
-
-- Je mag de gelicentieerde code in zijn geheel of gedeeltelijk gebruiken in je eigen programma's, ongeacht de licentie van het programma als geheel (of beter gezegd, als exclusief de code die u leent). Het programma zelf kan open of closed source, gratis of commercieel zijn.
-- In alle gevallen echter, eventuele wijzigingen, verbeteringen of toevoegingen aan de CDDL-code (elke code waarnaar wordt verwezen in directe wijzigingen aan de CDDL-code wordt beschouwd als een toevoeging aan de CDDL-code en is dus gebonden aan deze vereiste; bijvoorbeeld een wijziging van een wiskundige functie om een snelle opzoektabel te gebruiken, maakt die tabel zelf een toevoeging aan de CDDL-code, ongeacht of het in een eigen broncodebestand staat) moet openbaar en vrij beschikbaar worden gesteld in de bron, onder de CDDL-licentie zelf.
-- In elk programma (bron of binair) dat CDDL-code gebruikt, moet herkenning worden gegeven aan de bron (project of auteur) van de CDDL-code. Ook mogen wijzigingen in de CDDL-code (die als bron moet worden verspreid) geen kennisgevingen verwijderen die de afkomst van de code aangeven.
-
-Meer info op http://qstuff.blogspot.fr/2007/04/why-cddl.html
-Volledige licentie op http://opensource.org/licenses/CDDL-1.0
diff --git a/README-sr.md b/README-sr.md
deleted file mode 100644
index 8762feb9..00000000
--- a/README-sr.md
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-

-
-# Minecraft Console Client (MCC)
-
-[Документација](https://mccteam.github.io/) | [Преузимање](#download) | [Инсталација](https://mccteam.github.io/guide/installation.html) | [Подешавање](https://mccteam.github.io/guide/configuration.html) | [Коришћење](https://mccteam.github.io/guide/usage.html)
-
-[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

-
-
-
-## **О пројекту ℹ️**
-
-**Minecraft Console Client (MCC)** је оптимизован **Мајнкрафт** конзолни клијент отвореног кода за **Јава** верзију игре који Вам омогућава да се повежете на било који Манјкрафт Јава сервер, да шаљете и примате поруке брзо и лако, без потребе да отварате главну Манјкрафт игру.
-
-## Преузимање
-
-Нај новију верзију клијента можете да преузмете [овде](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
-
-## Корисни линкови 📚
-
-- 🌐 [Документација](https://mccteam.github.io/)
-- 📦 [Инсталација](https://mccteam.github.io/guide/installation.html)
-- 📖 [Коришћење](https://mccteam.github.io/guide/usage.html)
-- ⚙️ [Подешавање](https://mccteam.github.io/guide/configuration.html)
-- 🤖 [Ботови](https://mccteam.github.io/guide/chat-bots.html)
-- 📝 [Примери датотека за подешавање](MinecraftClient/config/)
-
-## Помоћ 🙋
-
-Погледајте наш [веб сајт](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) и постојеће [дискусије](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Можда је Ваше питање већ постављено раније, ако није, можете да [поставите ново](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new). Ако пронађете проблем, можете да га пријавите у секцији [Проблеми](https://github.com/MCCTeam/Minecraft-Console-Client/issues).
-
-## Дискорд
-
-Имамо наш Дискорд сервер, [придружите нам се](https://discord.gg/sfBv4TtpC9).
-Напомена: Сви разговори се воде искључиво на Енглеском.
-
-## Помозите нам ❤️
-
-Ми смо мала заједница којој је потребна помоћ да имплементира функционалност за новије верзије игре, да поправља багове/проблеме и да побољшава пројекат. Увек смо у потрази за мотивисаном људима који би желели да раде на пројекту. Ако би сте желели да помогнете, погледајте секцију [Проблеми](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) :)
-
-## Допринос пројекту 📝
-
-Ако желите да допринесете развоју пројекта у виду програмирања, само направите копију (Форк) репозиторијума, клонирајте га, измените шта треба и затим отворите _Pull Request_ на главној _master_ грани.
-Такође погледајте наш [репозиторијум за веб сајт/документацију](https://github.com/MCCTeam/MCCTeam.github.io) ако желите да допринесете у виду побољшања документације.
-
-
-
-## Превођење пројекта 🌍
-
-Ako желите да преведете пројекат на други језик проверите нашу секцију у документацији: [Како ажурирати/изменити или додати превод](https://mccteam.github.io/guide/contibuting.html#translations).
-
-Пројекат је тренутно предевен на следће језике (сортирано по Енглеском алфабету):
- * `de.ini` : Deutsch - German
- * `en.ini` : English - English
- * `fr.ini` : Français (France) - French
- * `ru.ini` : Русский (Russkiy) - Russian
- * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
- * `zh-Hans.ini` : 简体中文(中国大陆) - Chinese Simplified (China; Mandarin)
-
-## Прављење извршне датотеке из кода 🏗️
-
-Ова секција је померена на наш вебсајт са документацијом: [Прављење извршне датотеке из кода](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
-
-## Лиценца ⚖️
-
-Осим ако није специфично назначено, код који су написали људи из МЦЦ Тима и људи који су допринели пројекту се води под CDDL-1.0 лиценцом. У супротном лиценца оригиналног аутора ће бити назначена у коментару на врху датотеке која садржи код.
-
-Главни услови CDDL-1.0 лиценце гласе:
-
-- Можете користити лиценцни код у целини или делимично у било ком програму који желите, без обзира на лиценцу програма у целини (или боље речено, искључујући код који позајмљујете). Сам програм може бити отвореног или затвореног кода, бесплатан или комерцијалан.
-– Међутим, у свим случајевима, било које измене, побољшања или додаци CDDL кода (сваки код који се референцира у директним модификацијама CDDL кода сматра се додатком CDDL коду, па је везан овим захтевом; нпр. модификација математичке функције за коришћење табеле за брзо тражење чини ту табелу додатком CDDL коду, без обзира да ли се налази у сопственој датотеци изворног кода) мора бити јавно и слободно доступно у изворном коду, под само CDDL лиценцом .
-- У било ком програму (изворном или бинарном) који користи CDDL код, мора се признати извор (било пројекат или аутор) CDDL кода. Такође, измене CDDL кода (који се мора дистрибуирати као извор) можда неће уклонити обавештења која указују на порекло кода.
-
-
-Више информација http://qstuff.blogspot.fr/2007/04/why-cddl.html
-
-Цела лиценца http://opensource.org/licenses/CDDL-1.0
diff --git a/README-vi-vn.md b/README-vi-vn.md
deleted file mode 100644
index f16411da..00000000
--- a/README-vi-vn.md
+++ /dev/null
@@ -1,53 +0,0 @@
-# Minecraft Console Client
-
-[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
-
-Minecraft Console Client (MCC) là một ứng dụng nhẹ cho phép bạn kết nối tới bất kì máy chủ Minecraft nào, gửi lệnh và nhận tin nhắn bằng một cách nhanh và dễ dàng mà không cần phải mở Minecraft. Nó cũng cung cấp nhiều hoạt động tự động mà bạn có thể bật để quản lý và nhiều mục đích khác.
-
-## Tải 🔽
-
-Tải binary ngay tại [đây](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest).
-File exe là .NET binary nên cũng có thể chạy được trên MacOS và Linux
-
-## Hướng dẫn sử dụng 📚
-
-Hãy xem [file cài đặt mẫu](MinecraftClient/config/) có bao gồm hướng dẫn sử dụng [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual).
-
-## Hỗ trợ 🙋
-
-Hãy xem [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) và [Thảo luận](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Có thể câu hỏi của bạn sẽ được trả lời ở đây. Nếu không, hãy mở một [cuộc thảo luận mới](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) và hỏi câu hỏi của bạn. Nếu bạn tìm thấy lỗi, hãy báo cáo chúng ở [khu vực vấn đề](https://github.com/MCCTeam/Minecraft-Console-Client/issues).
-
-## Giúp đỡ chúng tôi ❤️
-
-Chúng tôi là một cộng đồng nhỏ nên chúng tôi cần giúp đỡ để cài đặt cập nhật cho những phiên bản mới hơn, sửa lỗi trong ứng dụng và mở rộng kế hoạch. Chúng tôi luôn tìm kiếm những người có động lục để đóng góp. Nếu bạn nghĩ đó có thể là bạn, hãy xem phần [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) :)
-
-## Làm thế nào để đóng góp? 📝
-
-Nếu bạn cảm thấy thích đóng góp cho Minecraft Console Client, tuyệt vời, chỉ cần fork repository này và nộp 1 cái pull request trên nhánh _Master_. MCC đang được phân phối bằng những phiên bản development (thường là ổn định) và chúng tôi không còn sử dụng nhánh _Indev_.
-
-
-
-## Dịch Minecraft Console Client 🌍
-
-Nếu bạn muốn dịch Minecraft Console Client bằng một ngôn ngữ khác, hãy tải file mẫu này [ở đây](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/Resources/lang) hoặc chỉ cần fork repository này. Khi bạn xong với việc dịch, nộp 1 cái pull request hoặc gửi cho chúng tôi tại [khu vực vấn đề](https://github.com/MCCTeam/Minecraft-Console-Client/issues).
-
-Để sử dụng file dịch, hãy để nó trong thư mục `lang/mcc/` và chỉnh ngôn ngữ của bạn trong file `.ini` config. Bạn có thể tạo thư mục đó nếu không có.
-
-Để xem hướng dẫn đặt tên, hãy xem [bình luận này](https://github.com/MCCTeam/Minecraft-Console-Client/pull/1282#issuecomment-711150715).
-
-## Xây từ gốc 🏗️
-
-Phần này đã được chuyển đến trang web tài liệu mới của chúng tôi.
-[Bấm vào đây](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
-
-## License ⚖️
-
-Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers.
-The main terms of the CDDL-1.0 license are basically the following:
-
-- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
-- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
-- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
-
-More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html
-Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README-zh-Hans.md b/README-zh-Hans.md
deleted file mode 100644
index 2a65f06a..00000000
--- a/README-zh-Hans.md
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-

-
-# Minecraft 控制台客户端 (MCC)
-
-[文档](https://mccteam.github.io/) | [下载](#download) | [安装](https://mccteam.github.io/guide/installation.html) | [配置](https://mccteam.github.io/guide/configuration.html) | [使用](https://mccteam.github.io/guide/usage.html)
-
-[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

-
-
-
-## **关于 ℹ️**
-
-**Minecraft 控制台客户端 (MCC)** 是一个轻量级、跨平台、基于文本用户界面的 Minecraft 客户端,适用于 **Java 国际版**,允许您连接到任何 Minecraft Java 国际版服务器,以快速简单的方式发送命令与接受文本消息,而无需打开 Minecraft 游戏。
-
-## 下载
-
-从 [Releases](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) 获取开发构建
-
-## 如何使用 📚
-
-- 🌐 [完整文档](https://mccteam.github.io/)
-- 📦 [安装](https://mccteam.github.io/guide/installation.html)
-- 📖 [使用](https://mccteam.github.io/guide/usage.html)
-- ⚙️ [配置](https://mccteam.github.io/guide/configuration.html)
-- 🤖 [聊天机器人](https://mccteam.github.io/guide/chat-bots.html)
-- 📝 [示例配置文件](MinecraftClient/config/)
-
-## 获取帮助 🙋
-
-查看[网站](https://mccteam.github.io/)、[README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) 以及[交流区](https://github.com/MCCTeam/Minecraft-Console-Client/discussions):也许你的问题已经在那里得到了解答。如果没有,请创建一个[新的交流帖](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new)并提出你的问题。如果你发现了一个 bug,请在 [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) 页面进行反馈。
-
-## Discord
-
-我们创建了一个 Discord 服务器, [点击此处](https://discord.gg/sfBv4TtpC9)加入。
-
-## 帮助我们 ❤️
-
-我们是个较小的社区,所以我们需要帮助来实现对新 Minecraft 版本的升级、修复 bug 以及扩展项目。我们一直在寻找有动力的人来参与贡献。如果你觉得你是那个人,请查看 [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) 页面 :)
-
-## 如何进行贡献 📝
-
-如果你希望为 Minecraft 控制台客户端做出贡献,很好,只需 fork 仓库并向 _Master_ 分支上提交一个 Pull Request 即可。如果你希望为网站 / 在线文档做出贡献,请参阅[网站的 git 仓库](https://github.com/MCCTeam/MCCTeam.github.io)。
-
-
-
-## 翻译 Minecraft 控制台客户端 (MCC) 🌍
-
-请查看:[如何为MCC添加或更新翻译](https://mccteam.github.io/guide/contibuting.html#translations)。
-
-MCC 现在支持这些语言(按字母顺序排列):
- * `de.ini`: Deutsch - German
- * `en.ini`: English - English
- * `fr.ini`: Français (France) - French
- * `ru.ini`: Русский (Russkiy) - Russian
- * `vi.ini`: Tiếng Việt (Việt Nam) - Vietnamese
- * `zh-Hans.ini`: 简体中文 - Chinese Simplified
- * `zh-Hant.ini`: 繁體中文 - Chinese Traditional
-
-## 从源码构建 🏗️
-
-这部分已经被移动到了我们的新[文档站](https://mccteam.github.io/guide/installation.html#building-from-the-source-code)上。
-
-## 开源协议 ⚖️
-
-除非特别说明,代码均来自 MCC 团队或贡献者,并且可在 CDDL-1.0 许可下使用。否则,许可证和原始作者将在源文件头中提及。
-CDDL-1.0 许可的主要条款基本上是以下内容:
-
-- 无论您希望将其用于整个程序或部分程序,您都可以在任何程序中使用许可的代码,而需考虑程序整体的许可证(或者说,除了您使用的代码之外的部分)。程序本身可以是开源或闭源的,免费或商业的。
-- 然而,在所有情况下,对 CDDL 代码的任何修改、改进或补充(任何直接修改 CDDL 代码的代码都被视为对 CDDL 代码的补充,因此受到此要求的约束;例如,使用快速查找表修改数学函数使得该表本身成为 CDDL 代码的补充,无论它是否在自己的源代码文件中)必须在 CDDL 许可下以源代码的形式在公共和免费的情况下提供。
-- 在使用 CDDL 代码的任何程序(源代码或二进制文件)中,必须提及 CDDL 代码的来源(项目或作者)。此外,对 CDDL 代码的修改(必须以源代码的形式分发)不能删除指示代码来源的声明。
-
-更多信息:http://qstuff.blogspot.fr/2007/04/why-cddl.html
-完整协议:http://opensource.org/licenses/CDDL-1.0
-
-
- 原文
-
- Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers.
- The main terms of the CDDL-1.0 license are basically the following:
-
- - You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
- - However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
- - In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
-
- More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html
- Full license at http://opensource.org/licenses/CDDL-1.0
-
diff --git a/README.md b/README.md
index 3a6a2a06..4d2dac51 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
-[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README-nl.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README-sr.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README-tr.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README-vi-vn.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README-zh-Hans.md)
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
@@ -49,17 +49,17 @@ If you'd like to contribute to Minecraft Console Client, great, just fork the re
## Translating Minecraft Console Client 🌍
-Check out: [How to update or add translations for MCC](https://mccteam.github.io/guide/contibuting.html#translations).
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
MCC now supports the following languages (Alphabetical order) :
- * `de.ini` (26.73% translated) : Deutsch - German
+ * `de.ini` : Deutsch - German
* `en.ini` : English - English
- * `fr.ini` (26.73% translated) : Français (France) - French
- * `ru.ini` (26.24% translated) : Русский (Russkiy) - Russian
- * `tr.ini` (100.00% translated) : Türkçe (Türkiye) - Turkish
- * `vi.ini` (26.24% translated) : Tiếng Việt (Việt Nam) - Vietnamese
- * `zh-Hans.ini` (76.92% translated) : 简体中文 - Chinese Simplified
- * `zh-Hant.ini` (76.92% translated) : 繁體中文 - Chinese Traditional
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
## Building from the source 🏗️
diff --git a/README/README-Afrikaans.md b/README/README-Afrikaans.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Afrikaans.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Arabic.md b/README/README-Arabic.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Arabic.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Catalan.md b/README/README-Catalan.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Catalan.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Chinese_Simplified.md b/README/README-Chinese_Simplified.md
new file mode 100644
index 00000000..43c6edf0
--- /dev/null
+++ b/README/README-Chinese_Simplified.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft 控制台客户端 (MCC)
+
+[文档](https://mccteam.github.io/) | [下载](#download) | [安装](https://mccteam.github.io/guide/installation.html) | [配置](https://mccteam.github.io/guide/configuration.html) | [使用](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **关于 ℹ️**
+
+**Minecraft 控制台客户端 (MCC)** 是一个轻量级、跨平台、基于文本用户界面的 Minecraft 客户端,适用于 **Java 国际版**,允许您连接到任何 Minecraft Java 国际版服务器,以快速简单的方式发送命令与接受文本消息,而无需打开 Minecraft 游戏。
+
+## 下载
+
+从 [Releases](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) 获取开发构建
+
+## 如何使用 📚
+
+- 🌐 [完整文档](https://mccteam.github.io/)
+- 📦 [安装](https://mccteam.github.io/guide/installation.html)
+- 📖 [使用](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [配置](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [聊天机器人](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [示例配置文件](MinecraftClient/config/)
+
+## 获取帮助 🙋
+
+查看[网站](https://mccteam.github.io/)、[README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) 以及[交流区](https://github.com/MCCTeam/Minecraft-Console-Client/discussions):也许你的问题已经在那里得到了解答。 如果没有,请创建一个[新的交流帖](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new)并提出你的问题。 如果你发现了一个 bug,请在 [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) 页面进行反馈。
+
+## Discord
+
+我们创建了一个 Discord 服务器, [点击此处](https://discord.gg/sfBv4TtpC9)加入。
+
+## 帮助我们 ❤️
+
+我们是个较小的社区,所以我们需要帮助来实现对新 Minecraft 版本的升级、修复 bug 以及扩展项目。 我们一直在寻找有动力的人来参与贡献。 如果你觉得你是那个人,请查看 [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) 页面 :)
+
+## 如何进行贡献 📝
+
+如果你希望为 Minecraft 控制台客户端做出贡献,很好,只需 fork 仓库并向 _Master_ 分支上提交一个 Pull Request 即可。 如果你希望为网站 / 在线文档做出贡献,请参阅[网站的 git 仓库](https://github.com/MCCTeam/MCCTeam.github.io)。
+
+
+
+## 翻译 Minecraft 控制台客户端 (MCC) 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC 现在支持这些语言(按字母顺序排列):
+ * `de.ini` : Deutsch - German
+ * `en.ini`: English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## 从源码构建 🏗️
+
+这部分已经被移动到了我们的新[文档站](https://mccteam.github.io/guide/installation.html#building-from-the-source-code)上。
+
+## License ⚖️
+
+除非特别说明,代码均来自 MCC 团队或贡献者,并且可在 CDDL-1.0 许可下使用。 否则,许可证和原始作者将在源文件头中提及。 CDDL-1.0 许可的主要条款基本上是以下内容:
+
+- 无论您希望将其用于整个程序或部分程序,您都可以在任何程序中使用许可的代码,而需考虑程序整体的许可证(或者说,除了您使用的代码之外的部分)。 程序本身可以是开源或闭源的,免费或商业的。
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- 在使用 CDDL 代码的任何程序(源代码或二进制文件)中,必须提及 CDDL 代码的来源(项目或作者)。 此外,对 CDDL 代码的修改(必须以源代码的形式分发)不能删除指示代码来源的声明。
+
+更多信息:http://qstuff.blogspot.fr/2007/04/why-cddl.html 完整协议:http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Chinese_Traditional.md b/README/README-Chinese_Traditional.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Chinese_Traditional.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Czech.md b/README/README-Czech.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Czech.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Danish.md b/README/README-Danish.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Danish.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Dutch.md b/README/README-Dutch.md
new file mode 100644
index 00000000..3a55e143
--- /dev/null
+++ b/README/README-Dutch.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+Minecraft Console Client (MCC) is een simpele app waarmee je Minecraft servers kan joinen, command sturen en berichten ontvangen op een snelle en makkelijke manier zonder Minecraft echt hoeven te openen.
+
+## Download 🔽
+
+https://github.com/MCCTeam/Minecraft-Console-Client/actions/workflows/build-and-release.yml/badge.svg
+
+## Hoe Te Gebruiken 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- Bekijk [hier](MinecraftClient/config/) een voorbeeld van de configuratie bestand, deze bevat uitleg om het te gebruiken. Daarnaats kan je de [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) lezen.
+
+## Hulp Krijgen 🙋
+
+Bekijk de [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) en de bestaande [discussies](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Misschien is je vraag daar al beantwoord. Als dat niet zo is open dan een [nieuwe discussie](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) en stel je vraag. Als je een bug vind, rapporteer dat bij de [problemen](https://github.com/MCCTeam/Minecraft-Console-Client/issues) sectie.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We zijn een kleine community, dus we hebben hulp nodig bij het implementeren van verbeteringen voor de nieuwe Minecraft-versies, het oplossen van bugs en het uitbreiden van het project. We zijn altijd op zoek naar gemotiveerde mensen om een steentje bij te dragen. Als je het gevoel hebt dat jij de persoon bent die wij zoeken, kijk dan eens naar de [problemen](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) sectie :)
+
+## Hoe draag je bij 📝
+
+Als je graag mee wilt helpen aan Minecraft Console Client, geweldig! Fork de repository en dien een pull request in op de *Master* branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Minecraft Console Client Vertalen 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+Dit gedeelte is verplaatst naar onze nieuwe documentatiewebsite. [Klik hier](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## Licentie ⚖️
+
+Tenzij anders aangegeven, is de code van hete MCC Team of vrijwilligers, en beschikbaar onder CDDL-1.0. De licentie en orginele autheur zijn te vinden in de kopteksten van de bronnen te vinden. De belangrijkste punten van de CDDL-1.0 licentie zijn als volgt:
+
+- Je mag de gelicentieerde code in zijn geheel of gedeeltelijk gebruiken in je eigen programma's, ongeacht de licentie van het programma als geheel (of beter gezegd, als exclusief de code die u leent). Het programma zelf kan open of closed source, gratis of commercieel zijn.
+- In alle gevallen echter, eventuele wijzigingen, verbeteringen of toevoegingen aan de CDDL-code (elke code waarnaar wordt verwezen in directe wijzigingen aan de CDDL-code wordt beschouwd als een toevoeging aan de CDDL-code en is dus gebonden aan deze vereiste; bijvoorbeeld een wijziging van een wiskundige functie om een snelle opzoektabel te gebruiken, maakt die tabel zelf een toevoeging aan de CDDL-code, ongeacht of het in een eigen broncodebestand staat) moet openbaar en vrij beschikbaar worden gesteld in de bron, onder de CDDL-licentie zelf.
+- In elk programma (bron of binair) dat CDDL-code gebruikt, moet herkenning worden gegeven aan de bron (project of auteur) van de CDDL-code. Ook mogen wijzigingen in de CDDL-code (die als bron moet worden verspreid) geen kennisgevingen verwijderen die de afkomst van de code aangeven.
+
+Meer info op http://qstuff.blogspot.fr/2007/04/why-cddl.html Volledige licentie op http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-English.md b/README/README-English.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-English.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Finnish.md b/README/README-Finnish.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Finnish.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-French.md b/README/README-French.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-French.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-German.md b/README/README-German.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-German.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Greek.md b/README/README-Greek.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Greek.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Hebrew.md b/README/README-Hebrew.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Hebrew.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Hungarian.md b/README/README-Hungarian.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Hungarian.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Italian.md b/README/README-Italian.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Italian.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Japanese.md b/README/README-Japanese.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Japanese.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Korean.md b/README/README-Korean.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Korean.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Norwegian.md b/README/README-Norwegian.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Norwegian.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Polish.md b/README/README-Polish.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Polish.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Portuguese-Brazilian.md b/README/README-Portuguese-Brazilian.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Portuguese-Brazilian.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Portuguese.md b/README/README-Portuguese.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Portuguese.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Romanian.md b/README/README-Romanian.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Romanian.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Russian.md b/README/README-Russian.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Russian.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Serbian_Cyrillic.md b/README/README-Serbian_Cyrillic.md
new file mode 100644
index 00000000..96246db3
--- /dev/null
+++ b/README/README-Serbian_Cyrillic.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Документација](https://mccteam.github.io/) | [Преузимање](#download) | [Инсталација](https://mccteam.github.io/guide/installation.html) | [Подешавање](https://mccteam.github.io/guide/configuration.html) | [Коришћење](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **О пројекту ℹ️**
+
+**Minecraft Console Client (MCC)** је оптимизован **Мајнкрафт** конзолни клијент отвореног кода за **Јава** верзију игре који Вам омогућава да се повежете на било који Манјкрафт Јава сервер, да шаљете и примате поруке брзо и лако, без потребе да отварате главну Манјкрафт игру.
+
+## Преузимање
+
+Нај новију верзију клијента можете да преузмете [овде](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## Корисни линкови 📚
+
+- 🌐 [Документација](https://mccteam.github.io/)
+- 📦 [Инсталација](https://mccteam.github.io/guide/installation.html)
+- 📖 [Коришћење](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Подешавање](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Ботови](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Примери датотека за подешавање](MinecraftClient/config/)
+
+## Помоћ 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Дискорд
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Помозите нам ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## Допринос пројекту 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Превођење пројекта 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+Пројекат је тренутно предевен на следће језике (сортирано по Енглеском алфабету):
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Прављење извршне датотеке из кода 🏗️
+
+Ова секција је померена на наш вебсајт са документацијом: [Прављење извршне датотеке из кода](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## Лиценца ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+Главни услови CDDL-1.0 лиценце гласе:
diff --git a/README/README-Spanish.md b/README/README-Spanish.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Spanish.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Swedish.md b/README/README-Swedish.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Swedish.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README-tr.md b/README/README-Turkish.md
similarity index 77%
rename from README-tr.md
rename to README/README-Turkish.md
index 38484fdb..8d4d06b5 100644
--- a/README-tr.md
+++ b/README/README-Turkish.md
@@ -1,80 +1,76 @@
-
-
-

-
-# Minecraft Console Client (MCC)
-
-[Kütüphane](https://mccteam.github.io/) | [İndir](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) | [Kurulum](https://mccteam.github.io/guide/installation.html) | [Yapılandırma](https://mccteam.github.io/guide/configuration.html) | [Kullanım](https://mccteam.github.io/guide/usage.html)
-
-[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

-
-
-
-## **Bilgilendirme ℹ️**
-
-**Minecraft Console Client (MCC)**, herhangi bir Minecraft Java sunucusuna bağlanmanıza, oyunu açmak zorunda kalmadan hızlı ve kolay bir şekilde komutlar göndermenize ve metin mesajları almanıza olanak tanıyan **Java** sürümü için hafif bir çapraz platform açık kaynaklı Minecraft TUI istemcisidir. Minecraft oyunu.
-
-## İndir
-
-[Releases](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) kısmından güncellenmiş yeni sürümleri indirin.
-
-## Nasıl Kullanılır 📚
-
-- 🌐 [Kütüphaneler](https://mccteam.github.io/)
-- 📦 [Kurulum](https://mccteam.github.io/guide/installation.html)
-- 📖 [Kullanım](https://mccteam.github.io/guide/usage.html)
-- ⚙️ [Yapılandırma](https://mccteam.github.io/guide/configuration.html)
-- 🤖 [Sohbet Botu](https://mccteam.github.io/guide/chat-bots.html)
-- 📝 [Örnek yapılandırma dosyaları](MinecraftClient/config/)
-
-## Yardım Alma 🙋
-
-[Web adresimize](https://mccteam.github.io/), [README'ye](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) ve mevcut [Tartışmalara](https://github.com/MCCTeam/Minecraft-Console-Client/discussions) göz atın: Belki sorunuz orada yanıtlanmıştır. Değilse, lütfen [Yeni Tartışma](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) açın ve sorunuzu sorun. Bir hata bulursanız, lütfen bunu [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) bölümünde bildirin.
-
-## Discord
-
-Artık bir Discord sunucumuz var, katılmak için [buraya](https://discord.gg/sfBv4TtpC9) tıklayın.
-
-## Bize Yardım Etmek ❤️
-
-Biz küçük bir topluluğuz, bu nedenle yeni Minecraft sürümleri için yükseltmeleri uygulamak, hataları düzeltmek ve projeyi geliştirmek için yardıma ihtiyacımız var. Her zaman katkıda bulunacak motive insanlar arıyoruz. Siz olabileceğini düşünüyorsanız, lütfen [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) kısmına bir göz atın
-
-## Nasıl Katkıda Bulunulur 📝
-
-Minecraft Console Client için katkıda bulunmak istiyorsanız, harika, _Master_ bölümünü forklayın ve katkıda bulunduğunz yeri pull request ile gönderin. Web sitemize / çevrimiçi belgelere katkıda bulunmak için ayrıca [Website repository] kısmına bakın.
-
-
-
-## Minecraft Console Client Çevirme 🌍
-
-Minecraft Console Client uygulamamızı farklı bir dile çevirmek istiyorsanız, lütfen çeviri dosyasını [lang klasöründen](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/Resources/lang) indirin veya forklayın. Çeviri işini bitirdikten sonra, bir pull request gönderin veya Github'a aşina değilseniz dosyayı bir [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) aracılığıyla bize gönderin.
-
-Çevrilmiş dil dosyasını kullanmak için, onu 'lang/mcc/' klasörünün altına yerleştirin ve dilinizi '.ini' yapılandırmasında ayarlayın. Dizin yoksa, dizini oluşturabilirsiniz.
-
-Çeviri dosyasının adları için lütfen [bu yoruma](https://github.com/MCCTeam/Minecraft-Console-Client/pull/1282#issuecomment-711150715) bakın.
-
-MCC artık aşağıdaki dilleri desteklemektedir (Alfabetik sıra) :
- * `de.ini` : Deutsch - German
- * `en.ini` : English - English
- * `fr.ini` : Français (France) - French
- * `ru.ini` : Русский (Russkiy) - Russian
- * `tr.ini` : Türkçe (Türkiye) - Turkish
- * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
- * `zh-Hans.ini` : 简体中文 - Chinese Simplified
- * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
-
-## Kaynaktan Geliştirme 🏗️
-
-Bu bölüm yeni [Kütüphaneler web sitemize](https://mccteam.github.io/guide/installation.html#building-from-the-source-code) taşındı.
-
-## Lisans ⚖️
-
-Özel olarak belirtilmediği sürece, kod MCC Ekibine veya Katkıda Bulunanlara aittir ve CDDL-1.0 altında mevcuttur. Aksi takdirde, kaynak dosya başlıklarında lisans ve orijinal yazar belirtilir.
-CDDL-1.0 lisansının ana koşulları temel olarak aşağıdaki gibidir:
-
-- Lisanslı kodu, programın bir bütün olarak (veya daha doğrusu ödünç aldığınız kod hariç) lisansı ne olursa olsun, dilediğiniz herhangi bir programda kısmen veya tamamen kullanabilirsiniz. Programın kendisi açık veya kapalı kaynak, ücretsiz veya ticari olabilir.
-- Bununla birlikte, her durumda, CDDL kodunda yapılan herhangi bir değişiklik, iyileştirme veya ekleme (CDDL kodunda doğrudan değişikliklerde atıfta bulunulan herhangi bir kod, CDDL koduna bir ek olarak kabul edilir ve bu nedenle bu gereksinime tabidir; örneğin bir değişiklik hızlı arama tablosu kullanmak için bir matematik işlevinin kullanılması, bu tablonun kendisinin bir kaynak kod dosyasında olup olmadığına bakılmaksızın, bu tablonun kendisini CDDL koduna bir ek yapar) CDDL lisansının kendisi altında kaynakta halka açık ve ücretsiz olarak erişilebilir hale getirilmelidir.
-- CDDL kodunu kullanan herhangi bir programda (kaynak veya ikili), CDDL kodunun kaynağına (proje veya yazar) tanınma verilmelidir. Ayrıca, CDDL kodunda (kaynak olarak dağıtılması gereken) yapılan değişiklikler, kodun kökenini gösteren bildirimleri kaldırmayabilir.
-
-Daha fazla bilgi: http://qstuff.blogspot.fr/2007/04/why-cddl.html
-Tüm lisans: http://opensource.org/licenses/CDDL-1.0
\ No newline at end of file
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)**, herhangi bir Minecraft Java sunucusuna bağlanmanıza, oyunu açmak zorunda kalmadan hızlı ve kolay bir şekilde komutlar göndermenize ve metin mesajları almanıza olanak tanıyan **Java** sürümü için hafif bir çapraz platform açık kaynaklı Minecraft TUI istemcisidir. Minecraft oyunu.
+
+## İndir
+
+[Releases](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest) kısmından güncellenmiş yeni sürümleri indirin.
+
+## Nasıl Kullanılır 📚
+
+- 🌐 [Kütüphaneler](https://mccteam.github.io/)
+- 📦 [Kurulum](https://mccteam.github.io/guide/installation.html)
+- 📖 [Kullanım](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Yapılandırma](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Sohbet Botu](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Örnek yapılandırma dosyaları](MinecraftClient/config/)
+
+## Yardım Alma 🙋
+
+[Web adresimize](https://mccteam.github.io/), [README'ye](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) ve mevcut [Tartışmalara](https://github.com/MCCTeam/Minecraft-Console-Client/discussions) göz atın: Belki sorunuz orada yanıtlanmıştır. Değilse, lütfen [Yeni Tartışma](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) açın ve sorunuzu sorun. Bir hata bulursanız, lütfen bunu [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) bölümünde bildirin.
+
+## Discord
+
+Artık bir Discord sunucumuz var, katılmak için [buraya](https://discord.gg/sfBv4TtpC9) tıklayın.
+
+## Bize Yardım Etmek ❤️
+
+Biz küçük bir topluluğuz, bu nedenle yeni Minecraft sürümleri için yükseltmeleri uygulamak, hataları düzeltmek ve projeyi geliştirmek için yardıma ihtiyacımız var. Her zaman katkıda bulunacak motive insanlar arıyoruz. Siz olabileceğini düşünüyorsanız, lütfen [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) kısmına bir göz atın
+
+## Nasıl Katkıda Bulunulur 📝
+
+Minecraft Console Client için katkıda bulunmak istiyorsanız, harika, _Master_ bölümünü forklayın ve katkıda bulunduğunz yeri pull request ile gönderin. Web sitemize / çevrimiçi belgelere katkıda bulunmak için ayrıca [Website repository] kısmına bakın.
+
+
+
+## Minecraft Console Client Çevirme 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC artık aşağıdaki dilleri desteklemektedir (Alfabetik sıra) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+Bu bölüm yeni [Kütüphaneler web sitemize](https://mccteam.github.io/guide/installation.html#building-from-the-source-code) taşındı.
+
+## Lisans ⚖️
+
+Özel olarak belirtilmediği sürece, kod MCC Ekibine veya Katkıda Bulunanlara aittir ve CDDL-1.0 altında mevcuttur. Aksi takdirde, kaynak dosya başlıklarında lisans ve orijinal yazar belirtilir. CDDL-1.0 lisansının ana koşulları temel olarak aşağıdaki gibidir:
+
+- Lisanslı kodu, programın bir bütün olarak (veya daha doğrusu ödünç aldığınız kod hariç) lisansı ne olursa olsun, dilediğiniz herhangi bir programda kısmen veya tamamen kullanabilirsiniz. Programın kendisi açık veya kapalı kaynak, ücretsiz veya ticari olabilir.
+- Bununla birlikte, her durumda, CDDL kodunda yapılan herhangi bir değişiklik, iyileştirme veya ekleme (CDDL kodunda doğrudan değişikliklerde atıfta bulunulan herhangi bir kod, CDDL koduna bir ek olarak kabul edilir ve bu nedenle bu gereksinime tabidir; örneğin bir değişiklik hızlı arama tablosu kullanmak için bir matematik işlevinin kullanılması, bu tablonun kendisinin bir kaynak kod dosyasında olup olmadığına bakılmaksızın, bu tablonun kendisini CDDL koduna bir ek yapar) CDDL lisansının kendisi altında kaynakta halka açık ve ücretsiz olarak erişilebilir hale getirilmelidir.
+- CDDL kodunu kullanan herhangi bir programda (kaynak veya ikili), CDDL kodunun kaynağına (proje veya yazar) tanınma verilmelidir. Ayrıca, CDDL kodunda (kaynak olarak dağıtılması gereken) yapılan değişiklikler, kodun kökenini gösteren bildirimleri kaldırmayabilir.
+
+Daha fazla bilgi: http://qstuff.blogspot.fr/2007/04/why-cddl.html Tüm lisans: http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Ukrainian.md b/README/README-Ukrainian.md
new file mode 100644
index 00000000..7b427663
--- /dev/null
+++ b/README/README-Ukrainian.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Download
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## How to use 📚
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Getting Help 🙋
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+We now have a Discord server, click [here](https://discord.gg/sfBv4TtpC9) to join.
+
+## Helping Us ❤️
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## How to contribute 📝
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/README/README-Vietnamese.md b/README/README-Vietnamese.md
new file mode 100644
index 00000000..400f68a3
--- /dev/null
+++ b/README/README-Vietnamese.md
@@ -0,0 +1,76 @@
+
+
+

+
+# Minecraft Console Client (MCC)
+
+[Documentation](https://mccteam.github.io/) | [Download](#download) | [Installation](https://mccteam.github.io/guide/installation.html) | [Configuration](https://mccteam.github.io/guide/configuration.html) | [Usage](https://mccteam.github.io/guide/usage.html)
+
+[English](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README.md) | [Nederlands](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Dutch.md) | [Српски](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Serbian_Cyrillic.md) | [Türkçe](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Turkish.md) | [Tiếng Việt](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Vietnamese.md) | [简体中文](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/README/README-Chinese_Simplified.md)
+
+[](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)

+
+
+
+## **About ℹ️**
+
+**Minecraft Console Client (MCC)** is a lightweight cross-platform open-source Minecraft TUI client for **Java** edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.
+
+## Hướng dẫn sử dụng 📚
+
+Get development builds from the [Releases section](https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest)
+
+## Hỗ trợ 🙋
+
+- 🌐 [Full Documentation](https://mccteam.github.io/)
+- 📦 [Installation](https://mccteam.github.io/guide/installation.html)
+- 📖 [Usage](https://mccteam.github.io/guide/usage.html)
+- ⚙️ [Configuration](https://mccteam.github.io/guide/configuration.html)
+- 🤖 [Chat Bots](https://mccteam.github.io/guide/chat-bots.html)
+- 📝 [Sample configuration files](MinecraftClient/config/)
+
+## Giúp đỡ chúng tôi ❤️
+
+Check out the [Website](https://mccteam.github.io/), [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual) and existing [Discussions](https://github.com/MCCTeam/Minecraft-Console-Client/discussions): Maybe your question is answered there. If not, please open a [New Discussion](https://github.com/MCCTeam/Minecraft-Console-Client/discussions/new) and ask your question. If you find a bug, please report it in the [Issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues) section.
+
+## Discord
+
+Hãy xem [file cài đặt mẫu](MinecraftClient/config/) có bao gồm hướng dẫn sử dụng [README](https://github.com/MCCTeam/Minecraft-Console-Client/tree/master/MinecraftClient/config#minecraft-console-client-user-manual).
+
+## Dịch Minecraft Console Client 🌍
+
+We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the [issues](https://github.com/MCCTeam/Minecraft-Console-Client/issues?q=is%3Aissue+is%3Aopen+label%3Awaiting-for%3Acontributor) section :)
+
+## Xây từ gốc 🏗️
+
+If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the _Master_ branch. To contribute to the website / online documentation see also the [Website repository](https://github.com/MCCTeam/MCCTeam.github.io).
+
+
+
+## Translating Minecraft Console Client 🌍
+
+To improve translations for MCC, please visit: [Crowdin - Minecraft Console Client](https://crwd.in/minecraft-console-client).
+
+MCC now supports the following languages (Alphabetical order) :
+ * `de.ini` : Deutsch - German
+ * `en.ini` : English - English
+ * `fr.ini` : Français (France) - French
+ * `ru.ini` : Русский (Russkiy) - Russian
+ * `tr.ini` : Türkçe (Türkiye) - Turkish
+ * `vi.ini` : Tiếng Việt (Việt Nam) - Vietnamese
+ * `zh-Hans.ini` : 简体中文 - Chinese Simplified
+ * `zh-Hant.ini` : 繁體中文 - Chinese Traditional
+
+## Building from the source 🏗️
+
+This section has been moved to our new [Documentation website](https://mccteam.github.io/guide/installation.html#building-from-the-source-code).
+
+## License ⚖️
+
+Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:
+
+- You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
+- However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
+- In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.
+
+More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0
diff --git a/crowdin.yml b/crowdin.yml
new file mode 100644
index 00000000..3e064c4a
--- /dev/null
+++ b/crowdin.yml
@@ -0,0 +1,7 @@
+files:
+ - source: /MinecraftClient/Resources/Translations/Translations.resx
+ translation: /MinecraftClient/Resources/Translations/Translations%osx_code%
+ - source: /MinecraftClient/Resources/AsciiArt/AsciiArt.resx
+ translation: /MinecraftClient/Resources/AsciiArt/AsciiArt%osx_code%
+ - source: /README.md
+ translation: /README/README-%language%.md