New Crowdin updates (#2324)

This commit is contained in:
BruceChen 2022-11-04 16:37:49 +08:00 committed by GitHub
parent b3ca0a1b33
commit 86338f8a92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
180 changed files with 5671 additions and 1861 deletions

View file

@ -99,7 +99,9 @@ Chat Bot (Script) structure is the following:
<chat bot class>
```
**Script Metadata** is a section with a custom format that mixes in C# with our format using comments. Every single Chat Bot (Script) must have this section at the beginning in order to work.
**Script Metadata** is a section with a custom format that mixes in C# with our format using comments.
Every single Chat Bot (Script) must have this section at the beginning in order to work.
### Script Metadata Format
@ -165,7 +167,9 @@ After the end of the **Script Metadata** section, you basically can define any n
There are no required methods, everything is optional.
When the Chat Bot (Script) has been initialized for the first time the `Initialize` method will be called. In it you can initialize variables, eg. Dictionaries, etc..
When the Chat Bot (Script) has been initialized for the first time the `Initialize` method will be called.
In it you can initialize variables, eg. Dictionaries, etc..
<div class="custom-container tip"><p class="custom-container-title">Tip</p>