diff --git a/README-zh_CN.md b/README-zh_CN.md index fccb17ea..5b222580 100644 --- a/README-zh_CN.md +++ b/README-zh_CN.md @@ -76,6 +76,7 @@ Nginx 网络管理界面,由 [0xJacky](https://jackyu.cn/) 与 [Hintay](https - 在线编辑 Nginx 配置文件,编辑器支持 Nginx 配置语法高亮 - 使用 Go 和 Vue 开发,发行版本为单个可执行的二进制文件 - 前端支持暗夜模式 +- 保存配置文件后自动测试配置文件并重载 Nginx ### 国际化 @@ -195,51 +196,51 @@ go build -o nginx-ui -v main.go **安装或升级** ```shell -bash <(curl -L -s https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) install +bash <(curl -L -s https://ghproxy.com/https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) install -r https://ghproxy.com/ ``` 一键安装脚本默认设置的监听端口为 `9000`,HTTP Challenge 端口默认为 `9180`,如果出现端口冲突请进入 `/usr/local/etc/nginx-ui/app.ini` 修改,并使用 `systemctl restart nginx-ui` 重启 Nginx UI 服务。 **卸载 Nginx UI 但保留配置和数据库文件** ```shell -bash <(curl -L -s https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) remove +bash <(curl -L -s https://ghproxy.com/https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) remove ``` ### 更多用法 ````shell -bash <(curl -L -s https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) help +bash <(curl -L -s https://ghproxy.com/https://raw.githubusercontent.com/0xJacky/nginx-ui/master/install.sh) help ```` ## Nginx 反向代理配置示例 ```nginx server { - listen 80; - listen [::]:80; + listen 80; + listen [::]:80; - server_name ; + server_name ; rewrite ^(.*)$ https://$host$1 permanent; } server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl http2; + listen [::]:443 ssl http2; - server_name ; + server_name ; - ssl_certificate /path/to/ssl_cert; - ssl_certificate_key /path/to/ssl_cert_key; + ssl_certificate /path/to/ssl_cert; + ssl_certificate_key /path/to/ssl_cert_key; location / { - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection upgrade; - proxy_pass http://127.0.0.1:9000/; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection upgrade; + proxy_pass http://127.0.0.1:9000/; } } ``` diff --git a/README-zh_TW.md b/README-zh_TW.md index 37cf3330..c61ef853 100644 --- a/README-zh_TW.md +++ b/README-zh_TW.md @@ -78,6 +78,7 @@ Nginx 網路管理介面,由 [0xJacky](https://jackyu.cn/) 與 [Hintay](https - 線上編輯 Nginx 配置檔案,編輯器支援 Nginx 配置語法高亮 - 使用 Go 和 Vue 開發,發行版本為單個可執行的二進位制檔案 - 前端支援暗夜模式 +- 保存配置文件後自動測試配置文件並重載 Nginx ### 國際化 @@ -215,31 +216,31 @@ bash <(curl -L -s https://raw.githubusercontent.com/0xJacky/nginx-ui/master/inst ```nginx server { - listen 80; - listen [::]:80; + listen 80; + listen [::]:80; - server_name ; + server_name ; rewrite ^(.*)$ https://$host$1 permanent; } server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl http2; + listen [::]:443 ssl http2; - server_name ; + server_name ; - ssl_certificate /path/to/ssl_cert; - ssl_certificate_key /path/to/ssl_cert_key; + ssl_certificate /path/to/ssl_cert; + ssl_certificate_key /path/to/ssl_cert_key; location / { - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection upgrade; - proxy_pass http://127.0.0.1:9000/; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection upgrade; + proxy_pass http://127.0.0.1:9000/; } } ``` diff --git a/README.md b/README.md index 10ad8b19..90f1d9e8 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ URL:[https://nginxui.jackyu.cn](https://nginxui.jackyu.cn) - Online editing websites configuration files, the editor support highlight nginx configuration syntax. - Written in Go and Vue, distribution is a single executable binary. - Frontend support Dark Mode +- Automatically test configuration file and reload nginx after saving configuration. ### Internationalization @@ -214,31 +215,31 @@ bash <(curl -L -s https://raw.githubusercontent.com/0xJacky/nginx-ui/master/inst ```nginx server { - listen 80; - listen [::]:80; + listen 80; + listen [::]:80; - server_name ; + server_name ; rewrite ^(.*)$ https://$host$1 permanent; } server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl http2; + listen [::]:443 ssl http2; - server_name ; + server_name ; - ssl_certificate /path/to/ssl_cert; - ssl_certificate_key /path/to/ssl_cert_key; + ssl_certificate /path/to/ssl_cert; + ssl_certificate_key /path/to/ssl_cert_key; location / { - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection upgrade; - proxy_pass http://127.0.0.1:9000/; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection upgrade; + proxy_pass http://127.0.0.1:9000/; } } ``` diff --git a/frontend/src/components/Chart/RadialBarChart.vue b/frontend/src/components/Chart/RadialBarChart.vue index 77188ce5..4299cd54 100644 --- a/frontend/src/components/Chart/RadialBarChart.vue +++ b/frontend/src/components/Chart/RadialBarChart.vue @@ -35,7 +35,7 @@ export default { series: this.series, chart: { type: 'radialBar', - offsetY: 0 + offsetY: -30 }, plotOptions: { radialBar: { @@ -43,12 +43,12 @@ export default { endAngle: 135, dataLabels: { name: { - fontSize: '15px', + fontSize: '14px', color: this.colors, - offsetY: 56 + offsetY: 36 }, value: { - offsetY: 60, + offsetY: 50, fontSize: '14px', color: undefined, formatter: () => {return ''} @@ -82,16 +82,16 @@ export default { .container { position: relative; margin: 0 auto; - height: 172px; + height: 112px!important; .text { position: absolute; - top: calc(50% - 3px); + top: calc(50% - 5px); width: 100%; text-align: center; } .bottom_text { position: absolute; - top: calc(152px); + top: calc(106px); font-weight: 600; width: 100%; text-align: center; diff --git a/frontend/src/lazy.js b/frontend/src/lazy.js index 510aa9cd..cfe42008 100644 --- a/frontend/src/lazy.js +++ b/frontend/src/lazy.js @@ -47,7 +47,8 @@ import { Tabs, Tooltip, Transfer, - Upload + Upload, + Tag } from 'ant-design-vue' Vue.use(ConfigProvider) @@ -97,6 +98,7 @@ Vue.use(Result) Vue.use(pageHeader) Vue.use(Switch) Vue.use(Space) +Vue.use(Tag) Vue.prototype.$confirm = Modal.confirm Vue.prototype.$message = message diff --git a/frontend/src/locale/en/LC_MESSAGES/app.po b/frontend/src/locale/en/LC_MESSAGES/app.po index d34b67eb..ecdeb9f9 100644 --- a/frontend/src/locale/en/LC_MESSAGES/app.po +++ b/frontend/src/locale/en/LC_MESSAGES/app.po @@ -27,14 +27,18 @@ msgstr "" msgid "Add Site" msgstr "" -#: src/views/domain/DomainAdd.vue:86 src/views/domain/DomainEdit.vue:172 +#: src/views/domain/DomainAdd.vue:89 src/views/domain/DomainEdit.vue:164 msgid "Auto-renewal disabled for %{name}" msgstr "" -#: src/views/domain/DomainAdd.vue:80 src/views/domain/DomainEdit.vue:166 +#: src/views/domain/DomainAdd.vue:83 src/views/domain/DomainEdit.vue:158 msgid "Auto-renewal enabled for %{name}" msgstr "" +#: src/views/domain/DomainEdit.vue:38 +msgid "Back" +msgstr "" + #: src/views/domain/DomainAdd.vue:37 msgid "Base information" msgstr "" @@ -43,7 +47,7 @@ msgstr "" msgid "Build with" msgstr "" -#: src/views/config/ConfigEdit.vue:5 src/views/domain/DomainEdit.vue:24 +#: src/views/config/ConfigEdit.vue:5 msgid "Cancel" msgstr "" @@ -79,7 +83,7 @@ msgstr "" msgid "Configure SSL" msgstr "" -#: src/views/dashboard/DashBoard.vue:207 +#: src/views/dashboard/DashBoard.vue:211 msgid "CPU Status" msgstr "" @@ -111,32 +115,32 @@ msgstr "" msgid "Development Mode" msgstr "" -#: src/views/domain/DomainAdd.vue:88 src/views/domain/DomainEdit.vue:174 +#: src/views/domain/DomainAdd.vue:91 src/views/domain/DomainEdit.vue:166 msgid "Disable auto-renewal failed for %{name}" msgstr "" -#: src/views/domain/DomainList.vue:7 src/views/domain/DomainList.vue:2 -#: src/views/domain/DomainList.vue:17 +#: src/views/domain/DomainEdit.vue:63 src/views/domain/DomainList.vue:7 +#: src/views/domain/DomainList.vue:2 src/views/domain/DomainList.vue:17 msgid "Disabled" msgstr "" -#: src/views/domain/DomainList.vue:55 +#: src/views/domain/DomainEdit.vue:180 src/views/domain/DomainList.vue:55 msgid "Disabled successfully" msgstr "" -#: src/views/dashboard/DashBoard.vue:285 +#: src/views/dashboard/DashBoard.vue:289 msgid "Disk IO" msgstr "" -#: src/views/domain/DomainEdit.vue:134 +#: src/views/domain/DomainEdit.vue:124 msgid "Do you want to change the template to support the TLS?" msgstr "" -#: src/views/domain/DomainAdd.vue:111 +#: src/views/domain/DomainAdd.vue:112 msgid "Domain Config Created Successfully" msgstr "" -#: src/views/domain/DomainEdit.vue:42 +#: src/views/domain/DomainEdit.vue:47 msgid "Edit %{n}" msgstr "" @@ -144,7 +148,7 @@ msgstr "" msgid "Edit Configuration" msgstr "" -#: src/views/domain/DomainEdit.vue:95 +#: src/views/domain/DomainEdit.vue:134 msgid "Edit Configuration File" msgstr "" @@ -156,11 +160,11 @@ msgstr "" msgid "Email (*)" msgstr "" -#: src/views/domain/DomainAdd.vue:82 src/views/domain/DomainEdit.vue:168 +#: src/views/domain/DomainAdd.vue:85 src/views/domain/DomainEdit.vue:160 msgid "Enable auto-renewal failed for %{name}" msgstr "" -#: src/views/domain/DomainAdd.vue:39 +#: src/views/domain/DomainAdd.vue:40 msgid "Enable failed" msgstr "" @@ -168,12 +172,14 @@ msgstr "" msgid "Enable TLS" msgstr "" +#: src/views/domain/DomainEdit.vue:54 src/views/domain/DomainEdit.vue:71 #: src/views/domain/DomainList.vue:8 src/views/domain/DomainList.vue:3 #: src/views/domain/DomainList.vue:16 msgid "Enabled" msgstr "" -#: src/views/domain/DomainAdd.vue:36 src/views/domain/DomainList.vue:46 +#: src/views/domain/DomainAdd.vue:37 src/views/domain/DomainEdit.vue:172 +#: src/views/domain/DomainList.vue:46 msgid "Enabled successfully" msgstr "" @@ -181,11 +187,11 @@ msgstr "" msgid "Expiration Date: %{date}" msgstr "" -#: src/views/domain/DomainList.vue:59 +#: src/views/domain/DomainEdit.vue:183 src/views/domain/DomainList.vue:59 msgid "Failed to disable %{msg}" msgstr "" -#: src/views/domain/DomainList.vue:50 +#: src/views/domain/DomainEdit.vue:175 src/views/domain/DomainList.vue:50 msgid "Failed to enable %{msg}" msgstr "" @@ -198,7 +204,7 @@ msgid "Finished" msgstr "" #: src/views/domain/DomainAdd.vue:13 src/views/domain/DomainAdd.vue:2 -#: src/views/domain/DomainEdit.vue:9 src/views/domain/DomainEdit.vue:3 +#: src/views/domain/DomainEdit.vue:22 src/views/domain/DomainEdit.vue:3 msgid "Getting Certificate from Let's Encrypt" msgstr "" @@ -259,7 +265,7 @@ msgstr "" msgid "Logout successful" msgstr "" -#: src/views/domain/DomainEdit.vue:12 src/views/domain/DomainEdit.vue:6 +#: src/views/domain/DomainEdit.vue:25 src/views/domain/DomainEdit.vue:6 msgid "" "Make sure you have configured a reverse proxy for .well-known directory to " "HTTPChallengePort (default: 9180) before getting the certificate." @@ -277,10 +283,14 @@ msgstr "" msgid "Manage Users" msgstr "" -#: src/views/dashboard/DashBoard.vue:103 +#: src/views/dashboard/DashBoard.vue:105 msgid "Memory" msgstr "" +#: src/views/dashboard/DashBoard.vue:93 +msgid "Memory and Storage" +msgstr "" + #: src/views/domain/DomainAdd.vue:28 src/views/domain/DomainAdd.vue:2 msgid "Modify Config" msgstr "" @@ -289,15 +299,19 @@ msgstr "" msgid "Name" msgstr "" -#: src/views/dashboard/DashBoard.vue:234 +#: src/views/dashboard/DashBoard.vue:238 msgid "Network" msgstr "" -#: src/views/dashboard/DashBoard.vue:168 +#: src/views/dashboard/DashBoard.vue:163 +msgid "Network Statistics" +msgstr "" + +#: src/views/dashboard/DashBoard.vue:172 msgid "Network Total Receive" msgstr "" -#: src/views/dashboard/DashBoard.vue:177 +#: src/views/dashboard/DashBoard.vue:181 msgid "Network Total Send" msgstr "" @@ -355,11 +369,11 @@ msgstr "" msgid "Project Team" msgstr "" -#: src/views/dashboard/DashBoard.vue:61 src/views/dashboard/DashBoard.vue:308 +#: src/views/dashboard/DashBoard.vue:61 src/views/dashboard/DashBoard.vue:312 msgid "Reads" msgstr "" -#: src/views/dashboard/DashBoard.vue:51 src/views/dashboard/DashBoard.vue:243 +#: src/views/dashboard/DashBoard.vue:51 src/views/dashboard/DashBoard.vue:247 msgid "Receive" msgstr "" @@ -367,25 +381,25 @@ msgstr "" msgid "Root Directory (root)" msgstr "" -#: src/views/config/ConfigEdit.vue:6 src/views/domain/DomainEdit.vue:27 +#: src/views/config/ConfigEdit.vue:6 src/views/domain/DomainEdit.vue:41 msgid "Save" msgstr "" -#: src/views/config/ConfigEdit.vue:47 src/views/domain/DomainAdd.vue:43 -#: src/views/domain/DomainAdd.vue:54 src/views/domain/DomainEdit.vue:152 +#: src/views/config/ConfigEdit.vue:47 src/views/domain/DomainAdd.vue:44 +#: src/views/domain/DomainAdd.vue:55 src/views/domain/DomainEdit.vue:142 msgid "Save error %{msg}" msgstr "" -#: src/views/config/ConfigEdit.vue:44 src/views/domain/DomainAdd.vue:33 -#: src/views/domain/DomainAdd.vue:51 src/views/domain/DomainEdit.vue:146 +#: src/views/config/ConfigEdit.vue:44 src/views/domain/DomainAdd.vue:34 +#: src/views/domain/DomainAdd.vue:52 src/views/domain/DomainEdit.vue:136 msgid "Saved successfully" msgstr "" -#: src/views/dashboard/DashBoard.vue:54 src/views/dashboard/DashBoard.vue:257 +#: src/views/dashboard/DashBoard.vue:54 src/views/dashboard/DashBoard.vue:261 msgid "Send" msgstr "" -#: src/views/config/ConfigEdit.vue:35 src/views/domain/DomainEdit.vue:72 +#: src/views/config/ConfigEdit.vue:35 src/views/domain/DomainEdit.vue:75 #: src/views/other/Login.vue:35 msgid "Server error" msgstr "" @@ -410,7 +424,7 @@ msgstr "" msgid "Status" msgstr "" -#: src/views/dashboard/DashBoard.vue:135 +#: src/views/dashboard/DashBoard.vue:137 msgid "Storage" msgstr "" @@ -418,7 +432,7 @@ msgstr "" msgid "Subject Name: %{name}" msgstr "" -#: src/views/dashboard/DashBoard.vue:119 +#: src/views/dashboard/DashBoard.vue:121 msgid "Swap" msgstr "" @@ -438,7 +452,7 @@ msgstr "" msgid "The filename cannot contain the following characters: %{c}" msgstr "" -#: src/views/domain/DomainEdit.vue:4 +#: src/views/domain/DomainEdit.vue:17 msgid "" "The following values will only take effect if you have the corresponding " "fields in your configuration file. The configuration filename cannot be " @@ -446,11 +460,11 @@ msgid "" msgstr "" #: src/views/domain/DomainAdd.vue:15 src/views/domain/DomainAdd.vue:4 -#: src/views/domain/DomainEdit.vue:11 src/views/domain/DomainEdit.vue:5 +#: src/views/domain/DomainEdit.vue:24 src/views/domain/DomainEdit.vue:5 msgid "This feature is not available in demo." msgstr "" -#: src/views/domain/DomainEdit.vue:135 +#: src/views/domain/DomainEdit.vue:125 msgid "This operation will lose the custom configuration." msgstr "" @@ -471,6 +485,6 @@ msgstr "" msgid "Username (*)" msgstr "" -#: src/views/dashboard/DashBoard.vue:58 src/views/dashboard/DashBoard.vue:294 +#: src/views/dashboard/DashBoard.vue:58 src/views/dashboard/DashBoard.vue:298 msgid "Writes" msgstr "" diff --git a/frontend/src/locale/zh_CN/LC_MESSAGES/app.mo b/frontend/src/locale/zh_CN/LC_MESSAGES/app.mo index c1d0d214..2f64c0b1 100644 Binary files a/frontend/src/locale/zh_CN/LC_MESSAGES/app.mo and b/frontend/src/locale/zh_CN/LC_MESSAGES/app.mo differ diff --git a/frontend/src/locale/zh_CN/LC_MESSAGES/app.po b/frontend/src/locale/zh_CN/LC_MESSAGES/app.po index 910fc053..7ce5f578 100644 --- a/frontend/src/locale/zh_CN/LC_MESSAGES/app.po +++ b/frontend/src/locale/zh_CN/LC_MESSAGES/app.po @@ -29,14 +29,18 @@ msgstr "操作" msgid "Add Site" msgstr "添加站点" -#: src/views/domain/DomainAdd.vue:86 src/views/domain/DomainEdit.vue:172 +#: src/views/domain/DomainAdd.vue:89 src/views/domain/DomainEdit.vue:164 msgid "Auto-renewal disabled for %{name}" msgstr "成功关闭 %{name} 自动续签" -#: src/views/domain/DomainAdd.vue:80 src/views/domain/DomainEdit.vue:166 +#: src/views/domain/DomainAdd.vue:83 src/views/domain/DomainEdit.vue:158 msgid "Auto-renewal enabled for %{name}" msgstr "成功启用 %{name} 自动续签" +#: src/views/domain/DomainEdit.vue:38 +msgid "Back" +msgstr "返回" + #: src/views/domain/DomainAdd.vue:37 msgid "Base information" msgstr "基本信息" @@ -45,7 +49,7 @@ msgstr "基本信息" msgid "Build with" msgstr "构建基于" -#: src/views/config/ConfigEdit.vue:5 src/views/domain/DomainEdit.vue:24 +#: src/views/config/ConfigEdit.vue:5 msgid "Cancel" msgstr "取消" @@ -81,7 +85,7 @@ msgstr "配置" msgid "Configure SSL" msgstr "配置 SSL" -#: src/views/dashboard/DashBoard.vue:207 +#: src/views/dashboard/DashBoard.vue:211 msgid "CPU Status" msgstr "CPU 状态" @@ -113,32 +117,32 @@ msgstr "检测到版本更新,页面将会刷新。" msgid "Development Mode" msgstr "开发模式" -#: src/views/domain/DomainAdd.vue:88 src/views/domain/DomainEdit.vue:174 +#: src/views/domain/DomainAdd.vue:91 src/views/domain/DomainEdit.vue:166 msgid "Disable auto-renewal failed for %{name}" msgstr "关闭 %{name} 自动续签失败" -#: src/views/domain/DomainList.vue:7 src/views/domain/DomainList.vue:2 -#: src/views/domain/DomainList.vue:17 +#: src/views/domain/DomainEdit.vue:63 src/views/domain/DomainList.vue:7 +#: src/views/domain/DomainList.vue:2 src/views/domain/DomainList.vue:17 msgid "Disabled" msgstr "禁用" -#: src/views/domain/DomainList.vue:55 +#: src/views/domain/DomainEdit.vue:180 src/views/domain/DomainList.vue:55 msgid "Disabled successfully" msgstr "禁用成功" -#: src/views/dashboard/DashBoard.vue:285 +#: src/views/dashboard/DashBoard.vue:289 msgid "Disk IO" msgstr "磁盘 IO" -#: src/views/domain/DomainEdit.vue:134 +#: src/views/domain/DomainEdit.vue:124 msgid "Do you want to change the template to support the TLS?" msgstr "你想要改变模板以支持 TLS 吗?" -#: src/views/domain/DomainAdd.vue:111 +#: src/views/domain/DomainAdd.vue:112 msgid "Domain Config Created Successfully" msgstr "域名配置文件创建成功" -#: src/views/domain/DomainEdit.vue:42 +#: src/views/domain/DomainEdit.vue:47 msgid "Edit %{n}" msgstr "编辑 %{n}" @@ -146,7 +150,7 @@ msgstr "编辑 %{n}" msgid "Edit Configuration" msgstr "编辑配置" -#: src/views/domain/DomainEdit.vue:95 +#: src/views/domain/DomainEdit.vue:134 msgid "Edit Configuration File" msgstr "编辑配置文件" @@ -158,11 +162,11 @@ msgstr "编辑站点" msgid "Email (*)" msgstr "邮箱 (*)" -#: src/views/domain/DomainAdd.vue:82 src/views/domain/DomainEdit.vue:168 +#: src/views/domain/DomainAdd.vue:85 src/views/domain/DomainEdit.vue:160 msgid "Enable auto-renewal failed for %{name}" msgstr "启用 %{name} 自动续签失败" -#: src/views/domain/DomainAdd.vue:39 +#: src/views/domain/DomainAdd.vue:40 msgid "Enable failed" msgstr "启用失败" @@ -170,12 +174,14 @@ msgstr "启用失败" msgid "Enable TLS" msgstr "启用 TLS" +#: src/views/domain/DomainEdit.vue:54 src/views/domain/DomainEdit.vue:71 #: src/views/domain/DomainList.vue:8 src/views/domain/DomainList.vue:3 #: src/views/domain/DomainList.vue:16 msgid "Enabled" msgstr "启用" -#: src/views/domain/DomainAdd.vue:36 src/views/domain/DomainList.vue:46 +#: src/views/domain/DomainAdd.vue:37 src/views/domain/DomainEdit.vue:172 +#: src/views/domain/DomainList.vue:46 msgid "Enabled successfully" msgstr "启用成功" @@ -183,11 +189,11 @@ msgstr "启用成功" msgid "Expiration Date: %{date}" msgstr "过期时间: %{date}" -#: src/views/domain/DomainList.vue:59 +#: src/views/domain/DomainEdit.vue:183 src/views/domain/DomainList.vue:59 msgid "Failed to disable %{msg}" msgstr "禁用失败 %{msg}" -#: src/views/domain/DomainList.vue:50 +#: src/views/domain/DomainEdit.vue:175 src/views/domain/DomainList.vue:50 msgid "Failed to enable %{msg}" msgstr "启用失败 %{msg}" @@ -200,7 +206,7 @@ msgid "Finished" msgstr "完成" #: src/views/domain/DomainAdd.vue:13 src/views/domain/DomainAdd.vue:2 -#: src/views/domain/DomainEdit.vue:9 src/views/domain/DomainEdit.vue:3 +#: src/views/domain/DomainEdit.vue:22 src/views/domain/DomainEdit.vue:3 msgid "Getting Certificate from Let's Encrypt" msgstr "从 Let's Encrypt 获取证书" @@ -261,7 +267,7 @@ msgstr "登录成功" msgid "Logout successful" msgstr "登出成功" -#: src/views/domain/DomainEdit.vue:12 src/views/domain/DomainEdit.vue:6 +#: src/views/domain/DomainEdit.vue:25 src/views/domain/DomainEdit.vue:6 msgid "" "Make sure you have configured a reverse proxy for .well-known directory to " "HTTPChallengePort (default: 9180) before getting the certificate." @@ -281,10 +287,14 @@ msgstr "网站管理" msgid "Manage Users" msgstr "用户管理" -#: src/views/dashboard/DashBoard.vue:103 +#: src/views/dashboard/DashBoard.vue:105 msgid "Memory" msgstr "内存" +#: src/views/dashboard/DashBoard.vue:93 +msgid "Memory and Storage" +msgstr "内存与存储" + #: src/views/domain/DomainAdd.vue:28 src/views/domain/DomainAdd.vue:2 msgid "Modify Config" msgstr "修改配置文件" @@ -293,15 +303,19 @@ msgstr "修改配置文件" msgid "Name" msgstr "名称" -#: src/views/dashboard/DashBoard.vue:234 +#: src/views/dashboard/DashBoard.vue:238 msgid "Network" msgstr "网络" -#: src/views/dashboard/DashBoard.vue:168 +#: src/views/dashboard/DashBoard.vue:163 +msgid "Network Statistics" +msgstr "流量统计" + +#: src/views/dashboard/DashBoard.vue:172 msgid "Network Total Receive" msgstr "下载流量" -#: src/views/dashboard/DashBoard.vue:177 +#: src/views/dashboard/DashBoard.vue:181 msgid "Network Total Send" msgstr "上传流量" @@ -359,11 +373,11 @@ msgstr "私钥路径 (ssl_certificate_key)" msgid "Project Team" msgstr "项目团队" -#: src/views/dashboard/DashBoard.vue:61 src/views/dashboard/DashBoard.vue:308 +#: src/views/dashboard/DashBoard.vue:61 src/views/dashboard/DashBoard.vue:312 msgid "Reads" msgstr "读" -#: src/views/dashboard/DashBoard.vue:51 src/views/dashboard/DashBoard.vue:243 +#: src/views/dashboard/DashBoard.vue:51 src/views/dashboard/DashBoard.vue:247 msgid "Receive" msgstr "下载" @@ -371,25 +385,25 @@ msgstr "下载" msgid "Root Directory (root)" msgstr "网站根目录 (root)" -#: src/views/config/ConfigEdit.vue:6 src/views/domain/DomainEdit.vue:27 +#: src/views/config/ConfigEdit.vue:6 src/views/domain/DomainEdit.vue:41 msgid "Save" msgstr "保存" -#: src/views/config/ConfigEdit.vue:47 src/views/domain/DomainAdd.vue:43 -#: src/views/domain/DomainAdd.vue:54 src/views/domain/DomainEdit.vue:152 +#: src/views/config/ConfigEdit.vue:47 src/views/domain/DomainAdd.vue:44 +#: src/views/domain/DomainAdd.vue:55 src/views/domain/DomainEdit.vue:142 msgid "Save error %{msg}" msgstr "保存错误 %{msg}" -#: src/views/config/ConfigEdit.vue:44 src/views/domain/DomainAdd.vue:33 -#: src/views/domain/DomainAdd.vue:51 src/views/domain/DomainEdit.vue:146 +#: src/views/config/ConfigEdit.vue:44 src/views/domain/DomainAdd.vue:34 +#: src/views/domain/DomainAdd.vue:52 src/views/domain/DomainEdit.vue:136 msgid "Saved successfully" msgstr "保存成功" -#: src/views/dashboard/DashBoard.vue:54 src/views/dashboard/DashBoard.vue:257 +#: src/views/dashboard/DashBoard.vue:54 src/views/dashboard/DashBoard.vue:261 msgid "Send" msgstr "上传" -#: src/views/config/ConfigEdit.vue:35 src/views/domain/DomainEdit.vue:72 +#: src/views/config/ConfigEdit.vue:35 src/views/domain/DomainEdit.vue:75 #: src/views/other/Login.vue:35 msgid "Server error" msgstr "服务器错误" @@ -414,7 +428,7 @@ msgstr "跳过" msgid "Status" msgstr "状态" -#: src/views/dashboard/DashBoard.vue:135 +#: src/views/dashboard/DashBoard.vue:137 msgid "Storage" msgstr "存储" @@ -422,7 +436,7 @@ msgstr "存储" msgid "Subject Name: %{name}" msgstr "主体名称: %{name}" -#: src/views/dashboard/DashBoard.vue:119 +#: src/views/dashboard/DashBoard.vue:121 msgid "Swap" msgstr "" @@ -444,7 +458,7 @@ msgstr "" msgid "The filename cannot contain the following characters: %{c}" msgstr "文件名不能包含以下字符: %{c}" -#: src/views/domain/DomainEdit.vue:4 +#: src/views/domain/DomainEdit.vue:17 msgid "" "The following values will only take effect if you have the corresponding " "fields in your configuration file. The configuration filename cannot be " @@ -454,11 +468,11 @@ msgstr "" "可修改。" #: src/views/domain/DomainAdd.vue:15 src/views/domain/DomainAdd.vue:4 -#: src/views/domain/DomainEdit.vue:11 src/views/domain/DomainEdit.vue:5 +#: src/views/domain/DomainEdit.vue:24 src/views/domain/DomainEdit.vue:5 msgid "This feature is not available in demo." msgstr "该功能在 Demo 中不可用。" -#: src/views/domain/DomainEdit.vue:135 +#: src/views/domain/DomainEdit.vue:125 msgid "This operation will lose the custom configuration." msgstr "该操作将会丢失自定义配置。" @@ -479,7 +493,7 @@ msgstr "用户名" msgid "Username (*)" msgstr "用户名 (*)" -#: src/views/dashboard/DashBoard.vue:58 src/views/dashboard/DashBoard.vue:294 +#: src/views/dashboard/DashBoard.vue:58 src/views/dashboard/DashBoard.vue:298 msgid "Writes" msgstr "写" diff --git a/frontend/src/locale/zh_TW/LC_MESSAGES/app.mo b/frontend/src/locale/zh_TW/LC_MESSAGES/app.mo index 5e19da1f..a3db8203 100644 Binary files a/frontend/src/locale/zh_TW/LC_MESSAGES/app.mo and b/frontend/src/locale/zh_TW/LC_MESSAGES/app.mo differ diff --git a/frontend/src/locale/zh_TW/LC_MESSAGES/app.po b/frontend/src/locale/zh_TW/LC_MESSAGES/app.po index 9b719a19..37e53501 100644 --- a/frontend/src/locale/zh_TW/LC_MESSAGES/app.po +++ b/frontend/src/locale/zh_TW/LC_MESSAGES/app.po @@ -30,14 +30,18 @@ msgstr "操作" msgid "Add Site" msgstr "新增站點" -#: src/views/domain/DomainAdd.vue:86 src/views/domain/DomainEdit.vue:172 +#: src/views/domain/DomainAdd.vue:89 src/views/domain/DomainEdit.vue:164 msgid "Auto-renewal disabled for %{name}" msgstr "成功關閉 %{name} 自動續簽" -#: src/views/domain/DomainAdd.vue:80 src/views/domain/DomainEdit.vue:166 +#: src/views/domain/DomainAdd.vue:83 src/views/domain/DomainEdit.vue:158 msgid "Auto-renewal enabled for %{name}" msgstr "成功啟用 %{name} 自動續簽" +#: src/views/domain/DomainEdit.vue:38 +msgid "Back" +msgstr "返回" + #: src/views/domain/DomainAdd.vue:37 msgid "Base information" msgstr "基本訊息" @@ -46,7 +50,7 @@ msgstr "基本訊息" msgid "Build with" msgstr "構建基於" -#: src/views/config/ConfigEdit.vue:5 src/views/domain/DomainEdit.vue:24 +#: src/views/config/ConfigEdit.vue:5 msgid "Cancel" msgstr "取消" @@ -82,7 +86,7 @@ msgstr "配置" msgid "Configure SSL" msgstr "配置 SSL" -#: src/views/dashboard/DashBoard.vue:207 +#: src/views/dashboard/DashBoard.vue:211 msgid "CPU Status" msgstr "中央處理器狀態" @@ -114,32 +118,32 @@ msgstr "檢測到版本更新,頁面將會重新整理。" msgid "Development Mode" msgstr "開發模式" -#: src/views/domain/DomainAdd.vue:88 src/views/domain/DomainEdit.vue:174 +#: src/views/domain/DomainAdd.vue:91 src/views/domain/DomainEdit.vue:166 msgid "Disable auto-renewal failed for %{name}" msgstr "關閉 %{name} 自動續簽失敗" -#: src/views/domain/DomainList.vue:7 src/views/domain/DomainList.vue:2 -#: src/views/domain/DomainList.vue:17 +#: src/views/domain/DomainEdit.vue:63 src/views/domain/DomainList.vue:7 +#: src/views/domain/DomainList.vue:2 src/views/domain/DomainList.vue:17 msgid "Disabled" msgstr "禁用" -#: src/views/domain/DomainList.vue:55 +#: src/views/domain/DomainEdit.vue:180 src/views/domain/DomainList.vue:55 msgid "Disabled successfully" msgstr "禁用成功" -#: src/views/dashboard/DashBoard.vue:285 +#: src/views/dashboard/DashBoard.vue:289 msgid "Disk IO" msgstr "磁碟 IO" -#: src/views/domain/DomainEdit.vue:134 +#: src/views/domain/DomainEdit.vue:124 msgid "Do you want to change the template to support the TLS?" msgstr "你想要改變模板以支援 TLS 嗎?" -#: src/views/domain/DomainAdd.vue:111 +#: src/views/domain/DomainAdd.vue:112 msgid "Domain Config Created Successfully" msgstr "域名配置文件創建成功" -#: src/views/domain/DomainEdit.vue:42 +#: src/views/domain/DomainEdit.vue:47 msgid "Edit %{n}" msgstr "編輯 %{n}" @@ -147,7 +151,7 @@ msgstr "編輯 %{n}" msgid "Edit Configuration" msgstr "編輯配置" -#: src/views/domain/DomainEdit.vue:95 +#: src/views/domain/DomainEdit.vue:134 msgid "Edit Configuration File" msgstr "編輯配置檔案" @@ -159,11 +163,11 @@ msgstr "編輯站點" msgid "Email (*)" msgstr "郵箱 (*)" -#: src/views/domain/DomainAdd.vue:82 src/views/domain/DomainEdit.vue:168 +#: src/views/domain/DomainAdd.vue:85 src/views/domain/DomainEdit.vue:160 msgid "Enable auto-renewal failed for %{name}" msgstr "啟用 %{name} 自動續簽失敗" -#: src/views/domain/DomainAdd.vue:39 +#: src/views/domain/DomainAdd.vue:40 msgid "Enable failed" msgstr "啟用失敗" @@ -171,12 +175,14 @@ msgstr "啟用失敗" msgid "Enable TLS" msgstr "啟用 TLS" +#: src/views/domain/DomainEdit.vue:54 src/views/domain/DomainEdit.vue:71 #: src/views/domain/DomainList.vue:8 src/views/domain/DomainList.vue:3 #: src/views/domain/DomainList.vue:16 msgid "Enabled" msgstr "啟用" -#: src/views/domain/DomainAdd.vue:36 src/views/domain/DomainList.vue:46 +#: src/views/domain/DomainAdd.vue:37 src/views/domain/DomainEdit.vue:172 +#: src/views/domain/DomainList.vue:46 msgid "Enabled successfully" msgstr "啟用成功" @@ -184,11 +190,11 @@ msgstr "啟用成功" msgid "Expiration Date: %{date}" msgstr "過期時間: %{date}" -#: src/views/domain/DomainList.vue:59 +#: src/views/domain/DomainEdit.vue:183 src/views/domain/DomainList.vue:59 msgid "Failed to disable %{msg}" msgstr "禁用失敗 %{msg}" -#: src/views/domain/DomainList.vue:50 +#: src/views/domain/DomainEdit.vue:175 src/views/domain/DomainList.vue:50 msgid "Failed to enable %{msg}" msgstr "啟用失敗 %{msg}" @@ -201,7 +207,7 @@ msgid "Finished" msgstr "完成" #: src/views/domain/DomainAdd.vue:13 src/views/domain/DomainAdd.vue:2 -#: src/views/domain/DomainEdit.vue:9 src/views/domain/DomainEdit.vue:3 +#: src/views/domain/DomainEdit.vue:22 src/views/domain/DomainEdit.vue:3 msgid "Getting Certificate from Let's Encrypt" msgstr "從 Let's Encrypt 獲取證書" @@ -262,8 +268,7 @@ msgstr "登入成功" msgid "Logout successful" msgstr "登出成功" -#: src/views/domain/DomainEdit.vue:12 src/views/domain/DomainEdit.vue:6 -#, fuzzy +#: src/views/domain/DomainEdit.vue:25 src/views/domain/DomainEdit.vue:6 msgid "" "Make sure you have configured a reverse proxy for .well-known directory to " "HTTPChallengePort (default: 9180) before getting the certificate." @@ -283,10 +288,14 @@ msgstr "網站管理" msgid "Manage Users" msgstr "使用者管理" -#: src/views/dashboard/DashBoard.vue:103 +#: src/views/dashboard/DashBoard.vue:105 msgid "Memory" msgstr "記憶體" +#: src/views/dashboard/DashBoard.vue:93 +msgid "Memory and Storage" +msgstr "記憶體和存儲" + #: src/views/domain/DomainAdd.vue:28 src/views/domain/DomainAdd.vue:2 msgid "Modify Config" msgstr "修改配置" @@ -295,15 +304,19 @@ msgstr "修改配置" msgid "Name" msgstr "名稱" -#: src/views/dashboard/DashBoard.vue:234 +#: src/views/dashboard/DashBoard.vue:238 msgid "Network" msgstr "網路" -#: src/views/dashboard/DashBoard.vue:168 +#: src/views/dashboard/DashBoard.vue:163 +msgid "Network Statistics" +msgstr "網路統計" + +#: src/views/dashboard/DashBoard.vue:172 msgid "Network Total Receive" msgstr "下載流量" -#: src/views/dashboard/DashBoard.vue:177 +#: src/views/dashboard/DashBoard.vue:181 msgid "Network Total Send" msgstr "上傳流量" @@ -361,11 +374,11 @@ msgstr "私鑰路徑 (ssl_certificate_key)" msgid "Project Team" msgstr "專案團隊" -#: src/views/dashboard/DashBoard.vue:61 src/views/dashboard/DashBoard.vue:308 +#: src/views/dashboard/DashBoard.vue:61 src/views/dashboard/DashBoard.vue:312 msgid "Reads" msgstr "讀" -#: src/views/dashboard/DashBoard.vue:51 src/views/dashboard/DashBoard.vue:243 +#: src/views/dashboard/DashBoard.vue:51 src/views/dashboard/DashBoard.vue:247 msgid "Receive" msgstr "下載" @@ -373,25 +386,25 @@ msgstr "下載" msgid "Root Directory (root)" msgstr "網站根目錄 (root)" -#: src/views/config/ConfigEdit.vue:6 src/views/domain/DomainEdit.vue:27 +#: src/views/config/ConfigEdit.vue:6 src/views/domain/DomainEdit.vue:41 msgid "Save" msgstr "儲存" -#: src/views/config/ConfigEdit.vue:47 src/views/domain/DomainAdd.vue:43 -#: src/views/domain/DomainAdd.vue:54 src/views/domain/DomainEdit.vue:152 +#: src/views/config/ConfigEdit.vue:47 src/views/domain/DomainAdd.vue:44 +#: src/views/domain/DomainAdd.vue:55 src/views/domain/DomainEdit.vue:142 msgid "Save error %{msg}" msgstr "儲存錯誤 %{msg}" -#: src/views/config/ConfigEdit.vue:44 src/views/domain/DomainAdd.vue:33 -#: src/views/domain/DomainAdd.vue:51 src/views/domain/DomainEdit.vue:146 +#: src/views/config/ConfigEdit.vue:44 src/views/domain/DomainAdd.vue:34 +#: src/views/domain/DomainAdd.vue:52 src/views/domain/DomainEdit.vue:136 msgid "Saved successfully" msgstr "儲存成功" -#: src/views/dashboard/DashBoard.vue:54 src/views/dashboard/DashBoard.vue:257 +#: src/views/dashboard/DashBoard.vue:54 src/views/dashboard/DashBoard.vue:261 msgid "Send" msgstr "上傳" -#: src/views/config/ConfigEdit.vue:35 src/views/domain/DomainEdit.vue:72 +#: src/views/config/ConfigEdit.vue:35 src/views/domain/DomainEdit.vue:75 #: src/views/other/Login.vue:35 msgid "Server error" msgstr "伺服器錯誤" @@ -416,7 +429,7 @@ msgstr "跳過" msgid "Status" msgstr "狀態" -#: src/views/dashboard/DashBoard.vue:135 +#: src/views/dashboard/DashBoard.vue:137 msgid "Storage" msgstr "儲存" @@ -424,7 +437,7 @@ msgstr "儲存" msgid "Subject Name: %{name}" msgstr "主體名稱: %{name}" -#: src/views/dashboard/DashBoard.vue:119 +#: src/views/dashboard/DashBoard.vue:121 msgid "Swap" msgstr "交換空間" @@ -446,22 +459,21 @@ msgstr "" msgid "The filename cannot contain the following characters: %{c}" msgstr "檔名不能包含以下字元: %{c}" -#: src/views/domain/DomainEdit.vue:4 -#, fuzzy +#: src/views/domain/DomainEdit.vue:17 msgid "" "The following values will only take effect if you have the corresponding " "fields in your configuration file. The configuration filename cannot be " "changed after it has been created." msgstr "" -"只有在您的配置檔案中有相應欄位時,下列的配置才能生效。配置檔名稱建立後不可修" -"改。" +"只有在您的配置檔案中有相應欄位時,下列的配置才能生效。配置檔名稱建立後不可" +"修改。" #: src/views/domain/DomainAdd.vue:15 src/views/domain/DomainAdd.vue:4 -#: src/views/domain/DomainEdit.vue:11 src/views/domain/DomainEdit.vue:5 +#: src/views/domain/DomainEdit.vue:24 src/views/domain/DomainEdit.vue:5 msgid "This feature is not available in demo." msgstr "此功能在演示中不可用。" -#: src/views/domain/DomainEdit.vue:135 +#: src/views/domain/DomainEdit.vue:125 msgid "This operation will lose the custom configuration." msgstr "該操作將會丟失自定義配置。" @@ -482,7 +494,7 @@ msgstr "使用者名稱" msgid "Username (*)" msgstr "使用者名稱 (*)" -#: src/views/dashboard/DashBoard.vue:58 src/views/dashboard/DashBoard.vue:294 +#: src/views/dashboard/DashBoard.vue:58 src/views/dashboard/DashBoard.vue:298 msgid "Writes" msgstr "寫" diff --git a/frontend/src/translations.json b/frontend/src/translations.json index 7ceb470b..ba2fdabf 100644 --- a/frontend/src/translations.json +++ b/frontend/src/translations.json @@ -1 +1 @@ -{"en":{},"zh_CN":{"404 Not Found":"404 未找到页面","About":"关于","Action":"操作","Add Site":"添加站点","Auto-renewal disabled for %{name}":"成功关闭 %{name} 自动续签","Auto-renewal enabled for %{name}":"成功启用 %{name} 自动续签","Base information":"基本信息","Build with":"构建基于","Cancel":"取消","Certificate Auto-renewal":"证书自动续签","Certificate has expired":"此证书已过期","Certificate is valid":"此证书有效","Certificate Path (ssl_certificate)":"TLS 证书路径 (ssl_certificate)","Certificate Status":"证书状态","Configuration Name":"配置名称","Configurations":"配置","Configure SSL":"配置 SSL","CPU Status":"CPU 状态","Create Another":"再创建一个","Created at":"创建时间","Dashboard":"仪表盘","Database (Optional, default: database)":"数据库 (可选,默认: database)","Detected version update, this page will refresh.":"检测到版本更新,页面将会刷新。","Development Mode":"开发模式","Disable auto-renewal failed for %{name}":"关闭 %{name} 自动续签失败","Disabled":"禁用","Disabled successfully":"禁用成功","Disk IO":"磁盘 IO","Do you want to change the template to support the TLS?":"你想要改变模板以支持 TLS 吗?","Domain Config Created Successfully":"域名配置文件创建成功","Edit %{n}":"编辑 %{n}","Edit Configuration":"编辑配置","Edit Configuration File":"编辑配置文件","Edit Site":"编辑站点","Email (*)":"邮箱 (*)","Enable auto-renewal failed for %{name}":"启用 %{name} 自动续签失败","Enable failed":"启用失败","Enable TLS":"启用 TLS","Enabled":"启用","Enabled successfully":"启用成功","Expiration Date: %{date}":"过期时间: %{date}","Failed to disable %{msg}":"禁用失败 %{msg}","Failed to enable %{msg}":"启用失败 %{msg}","File Not Found":"未找到文件","Finished":"完成","Getting Certificate from Let's Encrypt":"从 Let's Encrypt 获取证书","Getting the certificate, please wait...":"正在获取证书,请稍等...","Home":"首页","HTTP Listen Port":"HTTP 监听端口","HTTPS Listen Port":"HTTPS 监听端口","Index (index)":"网站首页 (index)","Install":"安装","Intermediate Certification Authorities: %{issuer}":"中级证书颁发机构: %{issuer}","Invalid E-mail!":"无效的邮箱!","Leave blank for no change":"留空表示不修改","License":{"Project":"开源许可"},"Load Averages:":"系统负载:","Login":"登录","Login successful":"登录成功","Logout successful":"登出成功","Make sure you have configured a reverse proxy for .well-known directory to HTTPChallengePort (default: 9180) before getting the certificate.":"在获取签发证书前,请确保配置文件中已将 .well-known 目录反向代理到 HTTPChallengePort (默认: 9180)","Manage Configs":"配置管理","Manage Sites":"网站管理","Manage Users":"用户管理","Memory":"内存","Modify Config":"修改配置文件","Name":"名称","Network":"网络","Network Total Receive":"下载流量","Network Total Send":"上传流量","Next":"下一步","Not Found":"找不到页面","Not Valid Before: %{date}":"此前无效: %{date}","Note: The server_name in the current configuration must be the domain name you need to get the certificate.":"注意:当前配置中的 server_name 必须为需要申请证书的域名。","OK":"确定","Password":"密码","Password (*)":"密码 (*)","Please input your E-mail!":"请输入您的邮箱!","Please input your password!":"请输入您的密码!","Please input your username!":"请输入您的用户名!","Private Key Path (ssl_certificate_key)":"私钥路径 (ssl_certificate_key)","Project Team":"项目团队","Reads":"读","Receive":"下载","Root Directory (root)":"网站根目录 (root)","Save":"保存","Save error %{msg}":"保存错误 %{msg}","Saved successfully":"保存成功","Send":"上传","Server error":"服务器错误","Server Info":"服务器信息","Server Names (server_name)":"网站域名 (server_name)","Sites List":"站点列表","Skip":"跳过","Status":"状态","Storage":"存储","Subject Name: %{name}":"主体名称: %{name}","System message":"系统消息","The certificate for the domain will be checked every hour, and will be renewed if it has been more than 1 month since it was last issued.
If you do not have a certificate before, please click \"Getting Certificate from Let's Encrypt\" first.":"系统将会每小时检测一次该域名证书,若距离上次签发已超过1个月,则将自动续签。
如果您之前没有证书,请先点击 \"从 Let's Encrypt 获取证书\"。","The filename cannot contain the following characters: %{c}":"文件名不能包含以下字符: %{c}","The following values will only take effect if you have the corresponding fields in your configuration file. The configuration filename cannot be changed after it has been created.":"只有在您的配置文件中有相应字段时,下列的配置才能生效。配置文件名称创建后不可修改。","This feature is not available in demo.":"该功能在 Demo 中不可用。","This operation will lose the custom configuration.":"该操作将会丢失自定义配置。","Updated at":"修改时间","Uptime:":"运行时间:","Username":"用户名","Username (*)":"用户名 (*)","Writes":"写"},"zh_TW":{"404 Not Found":"404 未找到頁面","About":"關於","Action":"操作","Add Site":"新增站點","Auto-renewal disabled for %{name}":"成功關閉 %{name} 自動續簽","Auto-renewal enabled for %{name}":"成功啟用 %{name} 自動續簽","Base information":"基本訊息","Build with":"構建基於","Cancel":"取消","Certificate Auto-renewal":"證書自動續簽","Certificate has expired":"此證書已過期","Certificate is valid":"此證書有效","Certificate Path (ssl_certificate)":"TLS 證書路徑 (ssl_certificate)","Certificate Status":"證書狀態","Configuration Name":"配置名稱","Configurations":"配置","Configure SSL":"配置 SSL","CPU Status":"中央處理器狀態","CPU:":"中央處理器:","Create Another":"再創建一個","Created at":"建立時間","Dashboard":"儀表盤","Database (Optional, default: database)":"資料庫 (可選,預設: database)","Detected version update, this page will refresh.":"檢測到版本更新,頁面將會重新整理。","Development Mode":"開發模式","Disable auto-renewal failed for %{name}":"關閉 %{name} 自動續簽失敗","Disabled":"禁用","Disabled successfully":"禁用成功","Disk IO":"磁碟 IO","Do you want to change the template to support the TLS?":"你想要改變模板以支援 TLS 嗎?","Domain Config Created Successfully":"域名配置文件創建成功","Edit %{n}":"編輯 %{n}","Edit Configuration":"編輯配置","Edit Configuration File":"編輯配置檔案","Edit Site":"編輯站點","Email (*)":"郵箱 (*)","Enable auto-renewal failed for %{name}":"啟用 %{name} 自動續簽失敗","Enable failed":"啟用失敗","Enable TLS":"啟用 TLS","Enabled":"啟用","Enabled successfully":"啟用成功","Expiration Date: %{date}":"過期時間: %{date}","Failed to disable %{msg}":"禁用失敗 %{msg}","Failed to enable %{msg}":"啟用失敗 %{msg}","File Not Found":"未找到檔案","Finished":"完成","Getting Certificate from Let's Encrypt":"從 Let's Encrypt 獲取證書","Getting the certificate, please wait...":"正在獲取證書,請稍等...","Home":"首頁","HTTP Listen Port":"HTTP 監聽埠","HTTPS Listen Port":"HTTPS 監聽埠","Index (index)":"網站首頁 (index)","Install":"安裝","Intermediate Certification Authorities: %{issuer}":"中級證書頒發機構: %{issuer}","Invalid E-mail!":"無效的郵箱!","Leave blank for no change":"留空表示不修改","License":{"Project":"開源許可"},"Load Averages:":"系統負載:","Login":"登入","Login successful":"登入成功","Logout successful":"登出成功","Manage Configs":"配置管理","Manage Sites":"網站管理","Manage Users":"使用者管理","Memory":"記憶體","Modify Config":"修改配置","Name":"名稱","Network":"網路","Network Total Receive":"下載流量","Network Total Send":"上傳流量","Next":"下一步","Not Found":"找不到頁面","Not Valid Before: %{date}":"此前無效: %{date}","Note: The server_name in the current configuration must be the domain name you need to get the certificate.":"注意:當前配置中的 server_name 必須為需要申請證書的域名。","OK":"確定","OS:":"作業系統:","Password":"密碼","Password (*)":"密碼 (*)","Please input your E-mail!":"請輸入您的郵箱!","Please input your password!":"請輸入您的密碼!","Please input your username!":"請輸入您的使用者名稱!","Private Key Path (ssl_certificate_key)":"私鑰路徑 (ssl_certificate_key)","Project Team":"專案團隊","Reads":"讀","Receive":"下載","Root Directory (root)":"網站根目錄 (root)","Save":"儲存","Save error %{msg}":"儲存錯誤 %{msg}","Saved successfully":"儲存成功","Send":"上傳","Server error":"伺服器錯誤","Server Info":"伺服器資訊","Server Names (server_name)":"網站域名 (server_name)","Sites List":"站點列表","Skip":"跳過","Status":"狀態","Storage":"儲存","Subject Name: %{name}":"主體名稱: %{name}","Swap":"交換空間","System message":"系統訊息","The certificate for the domain will be checked every hour, and will be renewed if it has been more than 1 month since it was last issued.
If you do not have a certificate before, please click \"Getting Certificate from Let's Encrypt\" first.":"系統將會每小時檢測一次該域名證書,若距離上次簽發已超過1個月,則將自動續簽。
如果您之前沒有證書,請先點選「從 Let's Encrypt 獲取證書」。","The filename cannot contain the following characters: %{c}":"檔名不能包含以下字元: %{c}","This feature is not available in demo.":"此功能在演示中不可用。","This operation will lose the custom configuration.":"該操作將會丟失自定義配置。","Updated at":"修改時間","Uptime:":"執行時間:","Username":"使用者名稱","Username (*)":"使用者名稱 (*)","Writes":"寫"}} \ No newline at end of file +{"en":{},"zh_CN":{"404 Not Found":"404 未找到页面","About":"关于","Action":"操作","Add Site":"添加站点","Auto-renewal disabled for %{name}":"成功关闭 %{name} 自动续签","Auto-renewal enabled for %{name}":"成功启用 %{name} 自动续签","Back":"返回","Base information":"基本信息","Build with":"构建基于","Cancel":"取消","Certificate Auto-renewal":"证书自动续签","Certificate has expired":"此证书已过期","Certificate is valid":"此证书有效","Certificate Path (ssl_certificate)":"TLS 证书路径 (ssl_certificate)","Certificate Status":"证书状态","Configuration Name":"配置名称","Configurations":"配置","Configure SSL":"配置 SSL","CPU Status":"CPU 状态","Create Another":"再创建一个","Created at":"创建时间","Dashboard":"仪表盘","Database (Optional, default: database)":"数据库 (可选,默认: database)","Detected version update, this page will refresh.":"检测到版本更新,页面将会刷新。","Development Mode":"开发模式","Disable auto-renewal failed for %{name}":"关闭 %{name} 自动续签失败","Disabled":"禁用","Disabled successfully":"禁用成功","Disk IO":"磁盘 IO","Do you want to change the template to support the TLS?":"你想要改变模板以支持 TLS 吗?","Domain Config Created Successfully":"域名配置文件创建成功","Edit %{n}":"编辑 %{n}","Edit Configuration":"编辑配置","Edit Configuration File":"编辑配置文件","Edit Site":"编辑站点","Email (*)":"邮箱 (*)","Enable auto-renewal failed for %{name}":"启用 %{name} 自动续签失败","Enable failed":"启用失败","Enable TLS":"启用 TLS","Enabled":"启用","Enabled successfully":"启用成功","Expiration Date: %{date}":"过期时间: %{date}","Failed to disable %{msg}":"禁用失败 %{msg}","Failed to enable %{msg}":"启用失败 %{msg}","File Not Found":"未找到文件","Finished":"完成","Getting Certificate from Let's Encrypt":"从 Let's Encrypt 获取证书","Getting the certificate, please wait...":"正在获取证书,请稍等...","Home":"首页","HTTP Listen Port":"HTTP 监听端口","HTTPS Listen Port":"HTTPS 监听端口","Index (index)":"网站首页 (index)","Install":"安装","Intermediate Certification Authorities: %{issuer}":"中级证书颁发机构: %{issuer}","Invalid E-mail!":"无效的邮箱!","Leave blank for no change":"留空表示不修改","License":{"Project":"开源许可"},"Load Averages:":"系统负载:","Login":"登录","Login successful":"登录成功","Logout successful":"登出成功","Make sure you have configured a reverse proxy for .well-known directory to HTTPChallengePort (default: 9180) before getting the certificate.":"在获取签发证书前,请确保配置文件中已将 .well-known 目录反向代理到 HTTPChallengePort (默认: 9180)","Manage Configs":"配置管理","Manage Sites":"网站管理","Manage Users":"用户管理","Memory":"内存","Memory and Storage":"内存与存储","Modify Config":"修改配置文件","Name":"名称","Network":"网络","Network Statistics":"流量统计","Network Total Receive":"下载流量","Network Total Send":"上传流量","Next":"下一步","Not Found":"找不到页面","Not Valid Before: %{date}":"此前无效: %{date}","Note: The server_name in the current configuration must be the domain name you need to get the certificate.":"注意:当前配置中的 server_name 必须为需要申请证书的域名。","OK":"确定","Password":"密码","Password (*)":"密码 (*)","Please input your E-mail!":"请输入您的邮箱!","Please input your password!":"请输入您的密码!","Please input your username!":"请输入您的用户名!","Private Key Path (ssl_certificate_key)":"私钥路径 (ssl_certificate_key)","Project Team":"项目团队","Reads":"读","Receive":"下载","Root Directory (root)":"网站根目录 (root)","Save":"保存","Save error %{msg}":"保存错误 %{msg}","Saved successfully":"保存成功","Send":"上传","Server error":"服务器错误","Server Info":"服务器信息","Server Names (server_name)":"网站域名 (server_name)","Sites List":"站点列表","Skip":"跳过","Status":"状态","Storage":"存储","Subject Name: %{name}":"主体名称: %{name}","System message":"系统消息","The certificate for the domain will be checked every hour, and will be renewed if it has been more than 1 month since it was last issued.
If you do not have a certificate before, please click \"Getting Certificate from Let's Encrypt\" first.":"系统将会每小时检测一次该域名证书,若距离上次签发已超过1个月,则将自动续签。
如果您之前没有证书,请先点击 \"从 Let's Encrypt 获取证书\"。","The filename cannot contain the following characters: %{c}":"文件名不能包含以下字符: %{c}","The following values will only take effect if you have the corresponding fields in your configuration file. The configuration filename cannot be changed after it has been created.":"只有在您的配置文件中有相应字段时,下列的配置才能生效。配置文件名称创建后不可修改。","This feature is not available in demo.":"该功能在 Demo 中不可用。","This operation will lose the custom configuration.":"该操作将会丢失自定义配置。","Updated at":"修改时间","Uptime:":"运行时间:","Username":"用户名","Username (*)":"用户名 (*)","Writes":"写"},"zh_TW":{"404 Not Found":"404 未找到頁面","About":"關於","Action":"操作","Add Site":"新增站點","Auto-renewal disabled for %{name}":"成功關閉 %{name} 自動續簽","Auto-renewal enabled for %{name}":"成功啟用 %{name} 自動續簽","Back":"返回","Base information":"基本訊息","Build with":"構建基於","Cancel":"取消","Certificate Auto-renewal":"證書自動續簽","Certificate has expired":"此證書已過期","Certificate is valid":"此證書有效","Certificate Path (ssl_certificate)":"TLS 證書路徑 (ssl_certificate)","Certificate Status":"證書狀態","Configuration Name":"配置名稱","Configurations":"配置","Configure SSL":"配置 SSL","CPU Status":"中央處理器狀態","CPU:":"中央處理器:","Create Another":"再創建一個","Created at":"建立時間","Dashboard":"儀表盤","Database (Optional, default: database)":"資料庫 (可選,預設: database)","Detected version update, this page will refresh.":"檢測到版本更新,頁面將會重新整理。","Development Mode":"開發模式","Disable auto-renewal failed for %{name}":"關閉 %{name} 自動續簽失敗","Disabled":"禁用","Disabled successfully":"禁用成功","Disk IO":"磁碟 IO","Do you want to change the template to support the TLS?":"你想要改變模板以支援 TLS 嗎?","Domain Config Created Successfully":"域名配置文件創建成功","Edit %{n}":"編輯 %{n}","Edit Configuration":"編輯配置","Edit Configuration File":"編輯配置檔案","Edit Site":"編輯站點","Email (*)":"郵箱 (*)","Enable auto-renewal failed for %{name}":"啟用 %{name} 自動續簽失敗","Enable failed":"啟用失敗","Enable TLS":"啟用 TLS","Enabled":"啟用","Enabled successfully":"啟用成功","Expiration Date: %{date}":"過期時間: %{date}","Failed to disable %{msg}":"禁用失敗 %{msg}","Failed to enable %{msg}":"啟用失敗 %{msg}","File Not Found":"未找到檔案","Finished":"完成","Getting Certificate from Let's Encrypt":"從 Let's Encrypt 獲取證書","Getting the certificate, please wait...":"正在獲取證書,請稍等...","Home":"首頁","HTTP Listen Port":"HTTP 監聽埠","HTTPS Listen Port":"HTTPS 監聽埠","Index (index)":"網站首頁 (index)","Install":"安裝","Intermediate Certification Authorities: %{issuer}":"中級證書頒發機構: %{issuer}","Invalid E-mail!":"無效的郵箱!","Leave blank for no change":"留空表示不修改","License":{"Project":"開源許可"},"Load Averages:":"系統負載:","Login":"登入","Login successful":"登入成功","Logout successful":"登出成功","Make sure you have configured a reverse proxy for .well-known directory to HTTPChallengePort (default: 9180) before getting the certificate.":"在獲取證書前,請確保配置檔案中已將 .well-known 目錄反向代理到 HTTPChallengePort (預設: 9180)","Manage Configs":"配置管理","Manage Sites":"網站管理","Manage Users":"使用者管理","Memory":"記憶體","Memory and Storage":"記憶體和存儲","Modify Config":"修改配置","Name":"名稱","Network":"網路","Network Statistics":"網路統計","Network Total Receive":"下載流量","Network Total Send":"上傳流量","Next":"下一步","Not Found":"找不到頁面","Not Valid Before: %{date}":"此前無效: %{date}","Note: The server_name in the current configuration must be the domain name you need to get the certificate.":"注意:當前配置中的 server_name 必須為需要申請證書的域名。","OK":"確定","OS:":"作業系統:","Password":"密碼","Password (*)":"密碼 (*)","Please input your E-mail!":"請輸入您的郵箱!","Please input your password!":"請輸入您的密碼!","Please input your username!":"請輸入您的使用者名稱!","Private Key Path (ssl_certificate_key)":"私鑰路徑 (ssl_certificate_key)","Project Team":"專案團隊","Reads":"讀","Receive":"下載","Root Directory (root)":"網站根目錄 (root)","Save":"儲存","Save error %{msg}":"儲存錯誤 %{msg}","Saved successfully":"儲存成功","Send":"上傳","Server error":"伺服器錯誤","Server Info":"伺服器資訊","Server Names (server_name)":"網站域名 (server_name)","Sites List":"站點列表","Skip":"跳過","Status":"狀態","Storage":"儲存","Subject Name: %{name}":"主體名稱: %{name}","Swap":"交換空間","System message":"系統訊息","The certificate for the domain will be checked every hour, and will be renewed if it has been more than 1 month since it was last issued.
If you do not have a certificate before, please click \"Getting Certificate from Let's Encrypt\" first.":"系統將會每小時檢測一次該域名證書,若距離上次簽發已超過1個月,則將自動續簽。
如果您之前沒有證書,請先點選「從 Let's Encrypt 獲取證書」。","The filename cannot contain the following characters: %{c}":"檔名不能包含以下字元: %{c}","The following values will only take effect if you have the corresponding fields in your configuration file. The configuration filename cannot be changed after it has been created.":"只有在您的配置檔案中有相應欄位時,下列的配置才能生效。配置檔名稱建立後不可修改。","This feature is not available in demo.":"此功能在演示中不可用。","This operation will lose the custom configuration.":"該操作將會丟失自定義配置。","Updated at":"修改時間","Uptime:":"執行時間:","Username":"使用者名稱","Username (*)":"使用者名稱 (*)","Writes":"寫"}} \ No newline at end of file diff --git a/frontend/src/views/dashboard/DashBoard.vue b/frontend/src/views/dashboard/DashBoard.vue index 613b6ca5..ecf02204 100644 --- a/frontend/src/views/dashboard/DashBoard.vue +++ b/frontend/src/views/dashboard/DashBoard.vue @@ -1,7 +1,7 @@