Update from Crowdin

This commit is contained in:
BruceChen 2022-11-04 13:26:15 +08:00 committed by GitHub
parent e6849ae91a
commit 27c40f27d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
190 changed files with 16264 additions and 4806 deletions

View file

@ -4,7 +4,9 @@
By the default all of the configurations are stored in the configuration file named `MinecraftClient.ini` which is created the first time you run the program, but you also can specify your own configuration file by providing a path to it as a first parameter when starting the MCC, check out [Usage](usage.md#quick-usage-of-mcc-with-examples) for examples.
> **⚠️ IMPORTANT WARNING: Recently we have changed the configuration format from INI to TOML, the documentation had to be updated. If you spot a mistake, please report it on our Discord or in the repository as an issue.**
::: warning
**Recently we have changed the configuration format from INI to TOML, the documentation had to be updated. If you spot a mistake, please report it on our Discord or in the repository as an issue.**
:::
## Notes
@ -29,18 +31,16 @@ Full Example:
```toml
[SectionNameHere]
Setting_Name = "this is some name"
Setting_Something = 15
Setting_Name = "this is some name" Setting_Something = 15
[OtherSection]
# This is a comment explaining what this setting/option does
Other_Setting = true # This also is a comment
# This is a comment explaining what this setting/option does Other_Setting = true # This also is a comment
[ThirdSection]
Section_Enabled = true
colors = [ "red", "yellow", "green" ]
[ThirdSection.Subsection]
[ThirdSection. Subsection]
Coordinate = { x = 145, y = 64, y = 2045 }
```
@ -48,7 +48,7 @@ Coordinate = { x = 145, y = 64, y = 2045 }
### Main General section
- **Section header:** `Main.General`
- **Section header:** `Main. General`
#### `Account`
@ -98,7 +98,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
This setting is where you define the type of your account: `mojang` or `microsoft`
> ** NOTE: Mojang accounts are going to stop working soon for everyone, they already are not working for some people.**
::: tip **Mojang accounts are going to stop working soon for everyone, they already are not working for some people.**
:::
- **Type:** `string`
@ -128,7 +129,7 @@ Coordinate = { x = 145, y = 64, y = 2045 }
### Main Advanced section
- **Section header:** `Main.Advanced`
- **Section header:** `Main. Advanced`
#### `Language`
@ -222,7 +223,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
BotOwners = [ "milutinke", "bradbyte", "BruceChen", ]
```
> **⚠️ WARNING: Admins can impersonate players on versions older than 1.19**
::: warning **Admins can impersonate players on versions older than 1.19**
:::
#### `MinecraftVersion`
@ -234,7 +236,7 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Type:** `string`
- **Version format:** `1.X.X`
- **Version format:** `1. X.X`
- **Type:** `string`
@ -246,7 +248,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
MinecraftVersion = "1.18.2"
```
> ** NOTE: MCC supports only 1.4.6 - 1.19.2**
::: tip **MCC supports only 1.4.6 - 1.19.2**
:::
#### `EnableForge`
@ -264,7 +267,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `auto`
> ** NOTE: Force-enabling only works for MC 1.13 +**
::: tip **Force-enabling only works for MC 1.13 +**
:::
#### `BrandInfo`
@ -276,7 +280,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `mcc`
> ** NOTE: For playing on Hypixel you need to use `vanilla`**
::: tip **For playing on Hypixel you need to use `vanilla`**
:::
#### `ChatbotLogFile`
@ -356,13 +361,16 @@ Coordinate = { x = 145, y = 64, y = 2045 }
This setting is where you can set if you want to enable terrain movement, so you can use command like `/move` and some bots.
> **⚠️ WARNING: This feature is currently not supported in `1.4.6 - 1.6`.**
::: warning **This feature is currently not supported in `1.4.6 - 1.6`.**
:::
- **Type:** `boolean`
- **Default:** `false`
> ** NOTE: Sometimes the latest versions might not support this straight away, since Mojang often makes changes to this.**
::: tip
**Sometimes the latest versions might not support this straight away, since Mojang often makes changes to this.**
:::
#### `InventoryHandling`
@ -370,7 +378,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
This setting is where you can set if you want to enable inventory handling using the `/inventory` command.
> **⚠️ WARNING: This feature is currently not supported in `1.4.6 - 1.9`.**
::: warning **This feature is currently not supported in `1.4.6 - 1.9`.**
:::
- **Type:** `boolean`
@ -382,13 +391,15 @@ Coordinate = { x = 145, y = 64, y = 2045 }
This setting is where you can set if you want to enable interactions with entities such as players, mobs, minecarts, etc..
> **⚠️ WARNING: This feature is currently not supported in `1.4.6 - 1.9`.**
::: warning **This feature is currently not supported in `1.4.6 - 1.9`.**
:::
- **Type:** `boolean`
- **Default:** `false`
> ** NOTE: Sometimes the latest versions might not support this straight away, since Mojang often makes changes to this.**
::: tip **Sometimes the latest versions might not support this straight away, since Mojang often makes changes to this.**
:::
#### `SessionCache`
@ -436,7 +447,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `true`
> ** NOTE: Only works on Windows XP-8 or Windows 10 with old console**
::: tip **Only works on Windows XP-8 or Windows 10 with old console**
:::
#### `ExitOnFailure`
@ -478,7 +490,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `false`
> ** NOTE: Make sure the spawn point is safe**
::: tip **Make sure the spawn point is safe**
:::
#### `MinecraftRealms`
@ -530,11 +543,13 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `2`
> **⚠️ WARNING: A movement speed higher than 2 may be considered cheating by some plugins.**
::: warning
**A movement speed higher than 2 may be considered cheating by some plugins.**
:::
### Account List section
- **Section header:** `Main.Advanced.AccountList`
- **Section header:** `Main. Advanced. AccountList`
- **Description:**
@ -560,7 +575,7 @@ Coordinate = { x = 145, y = 64, y = 2045 }
### Server List section
- **Section header:** `Main.Advanced.ServerList`
- **Section header:** `Main. Advanced. ServerList`
- **Description:**
@ -749,7 +764,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `.*`
> ** NOTE: Not filtering anything by default**
::: tip **Not filtering anything by default**
:::
#### `DebugFilterRegex`
@ -763,7 +779,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `.*`
> ** NOTE: Not filtering anything by default**
::: tip **Not filtering anything by default**
:::
#### `FilterMode`
@ -797,7 +814,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `console-log.txt`
> ** NOTE: %username% and %serverip% will be substituted with your username and the IP address of the server you are connected to. So you can use something like: `console-log-%username%-%serverip%.txt`**
::: tip **%username% and %serverip% will be substituted with your username and the IP address of the server you are connected to. So you can use something like: `console-log-%username%-%serverip%.txt`**
:::
#### `PrependTimestamp`
@ -829,9 +847,10 @@ Coordinate = { x = 145, y = 64, y = 2045 }
This section allows you to define your own custom settings/variables which you can use in scripts, bots or other setting fields.
To define a variable/setting, simply make a new line with the following format under the `[AppVar.VarStirng]` section:
To define a variable/setting, simply make a new line with the following format under the `[AppVar. VarStirng]` section:
> ** NOTE: `%username%`, `%serverip%`, `%datetime%` are reserved variables**
::: tip **`%username%`, `%serverip%`, `%datetime%` are reserved variables**
:::
- **Section header:** `Logging`
@ -872,7 +891,8 @@ Coordinate = { x = 145, y = 64, y = 2045 }
- **Default:** `false`
> **⚠️ WARNING: Make sure your server rules allow Proxies or VPNs before setting the setting to `true`, or you may face consequences!**
::: warning **Make sure your server rules allow Proxies or VPNs before setting the setting to `true`, or you may face consequences!**
:::
#### `Server`
@ -913,7 +933,7 @@ Coordinate = { x = 145, y = 64, y = 2045 }
Only needed for password protected proxies.
- **Default:** ``
- **Default:** `` ``
#### `Password`
@ -923,7 +943,7 @@ Coordinate = { x = 145, y = 64, y = 2045 }
Only needed for password protected proxies.
- **Default:** ``
- **Default:** `` ``
## MCSettings section
@ -1018,7 +1038,7 @@ Coordinate = { x = 145, y = 64, y = 2045 }
## MCSettings Skin section
- **Section header:** `MCSettings.Skin`
- **Section header:** `MCSettings. Skin`
- **Description:**