Update and improve zh-TW Traditional Chinese translation

This commit is contained in:
Peter Dave Hello 2025-04-16 02:14:11 +08:00
parent 1fe6b8b031
commit 823671b5d0
29 changed files with 708 additions and 734 deletions

View file

@ -18,7 +18,7 @@ install.sh install [OPTIONS]
| 選項 | |
|-----------------------|---------------------------------------------------------------------------------------|
| `-l, --local <file>` | 從本檔案安裝 Nginx UI (`string`) |
| `-l, --local <file>` | 從本檔案安裝 Nginx UI (`string`) |
| `-p, --proxy <url>` | 透過代理伺服器下載 (`string`)<br/>例如:`-p http://127.0.0.1:8118``-p socks5://127.0.0.1:1080` |
| `-r, --reverse-proxy` | 透過反向代理伺服器下載 (`string`)<br/>例如:`-r https://mirror.ghproxy.com/` |
@ -29,8 +29,8 @@ install.sh install [OPTIONS]
bash -c "$(curl -L https://raw.githubusercontent.com/0xJacky/nginx-ui/main/install.sh)" @ install
```
安裝指令碼預設的監聽埠為 `9000`HTTP Challenge 埠預設為 `9180`。如果出現埠衝突請修改 `/usr/local/etc/nginx-ui/app.ini`
並使用 `systemctl restart nginx-ui` 重啟 Nginx UI 守護行程。更多有關資訊,請檢視 [配置參考](./config-server)。
安裝指令碼預設的監聽連接埠為 `9000`HTTP Challenge 連接埠預設為 `9180`。如果出現連接埠衝突請修改 `/usr/local/etc/nginx-ui/app.ini`
並使用 `systemctl restart nginx-ui` 重啟 Nginx UI 守護行程。更多有關資訊,請檢視 [設定參考](./config-server)。
## 解除安裝
@ -48,19 +48,19 @@ install.sh remove [OPTIONS]
| 選項 | |
|-----------|---------------------------------------|
| `--purge` | 刪除所有 Nginx UI 檔案,包括日誌、配置等 (`boolean`) |
| `--purge` | 刪除所有 Nginx UI 檔案,包括日誌、設定等 (`boolean`) |
### 快速使用
::: code-group
```shell [移除]
# 解除安裝 Nginx UI 但保留配置和資料庫檔案
# 解除安裝 Nginx UI 但保留設定和資料庫檔案
bash -c "$(curl -L https://raw.githubusercontent.com/0xJacky/nginx-ui/main/install.sh)" @ remove
```
```shell [清除]
# 解除安裝並刪除所有 Nginx UI 檔案,包括配置和資料庫檔案
# 解除安裝並刪除所有 Nginx UI 檔案,包括設定和資料庫檔案
bash -c "$(curl -L https://raw.githubusercontent.com/0xJacky/nginx-ui/main/install.sh)" @ remove --purge
```