Skip to content

Commit

Permalink
add translations
Browse files Browse the repository at this point in the history
  • Loading branch information
MakinoharaShoko committed Jan 13, 2024
1 parent 7e50aea commit 73672b0
Show file tree
Hide file tree
Showing 77 changed files with 8,126 additions and 1,598 deletions.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@
"vue": "^3.3.4",
"vuepress": "2.0.0-beta.66",
"vuepress-theme-hope": "2.0.0-beta.235"
},
"dependencies": {
"axios": "^1.6.5",
"fs-extra": "^11.2.0"
}
}
}
38 changes: 25 additions & 13 deletions src/en/README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,49 @@
# WebGAL Doc
# WebGAL Documentation

## Some Information about WebGAL

- [I want to know the latest news or give feedback](info)

- [I want to contribute to the engine development or learn how to customize WebGAL](developers)

- [I want to learn about the technical implementation of WebGAL engine](tech)

- [I want to sponsor WebGAL](sponsor)

- [I want to join the WebGAL team!](developers/joinus)

## Game Development Guide

- [How to start making a WebGAL game?](getting-started.md)
- [How to start making a WebGAL?](getting-started.md)

- [Manage game resources](resources.md)
- [Managing Game Resources](resources.md)

- [Edit game config](config.md)
- [Editing Game Configuration](config.md)

- [How to deploy or publish my visual novel?](publish.md)

- [FAQ](faq.md)
- [Possible Problems and Solutions](faq.md)

## WebGAL Script Tutorial

- [Base](webgal-script/base.md)
- [The Basics](webgal-script/base.md)

- [Dialogue](webgal-script/dialogue.md)
- [Dialogues](webgal-script/dialogue.md)

- [Background and Figure](webgal-script/bg-and-figure.md)
- [Backgrounds and Figures](webgal-script/bg-and-figure.md)

- [Audio](webgal-script/audio.md)

- [Video](webgal-script/video.md)

- [Scenes and Branch](webgal-script/scenes.md)
- [Scenes and Branches](webgal-script/scenes.md)

- [Variable](webgal-script/variable.md)
- [Variables](webgal-script/variable.md)

- [Animation effect](webgal-script/animation.md)
- [Animation Effects](webgal-script/animation.md)

- [Special effect](webgal-script/special-effect.md)
- [Special Effects](webgal-script/special-effect.md)

## Stargazers over time

[![Stargazers over time](https://starchart.cc/MakinoharaShoko/WebGAL.svg)](https://starchart.cc/MakinoharaShoko/WebGAL)
[![Stargazers over time](https://starchart.cc/MakinoharaShoko/WebGAL.svg)](https://starchart.cc/MakinoharaShoko/WebGAL)
94 changes: 0 additions & 94 deletions src/en/add-lang.md

This file was deleted.

103 changes: 0 additions & 103 deletions src/en/android.md

This file was deleted.

26 changes: 15 additions & 11 deletions src/en/config.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
# Edit game config
# Edit Game Configuration

Under the `game` folder, there is a file config.txt where you can fill in relevant information about your game (you can edit it directly using the visual editor).
Under the `game` folder, there is a file named `config.txt`, you can fill in the relevant information of your game in this file (you can edit it directly using a graphical editor).

| Parameters | Description |
| :---------- | :---------------------------------------------- |
| Parameter | Description |
| :------------ | :----------------------------------------------- |
| Game_name | Game name |
| Game_key | Game identifier, 6-10 characters long, not to duplicate it with other games |
| Title_img | Title image, placed in the `background` folder |
| Title_bgm | title background music, placed in `bgm` folder |
| Game_key | Game identification code, 6-10 characters in length, do not repeat with other games |
| Title_img | Title picture, put it in the `background` folder |
| Title_bgm | Title background music, put it in the `bgm` folder |
| Game_Logo | Game Logo, multiple can be displayed, separated by \| |
| Textbox_theme | Game dialog style, you can choose imss style or standard style |

Below is a sample configuration file:
The following is a sample configuration file:

``` text
Game_name:WebGAL;
Game_key:0f33fdGr;
Title_img:Title2.png;
Title_bgm:summer.mp3;
```
Title_img:Title.png;
Title_bgm:夏影.mp3;
Game_Logo:WebGalEnter.png|bg.png;
Textbox_theme:imss;
```
Loading

0 comments on commit 73672b0

Please sign in to comment.