mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
fix typo
This commit is contained in:
parent
a3b799a2a0
commit
c55c1edca3
6
resource/l10n/zh-CN.toml
vendored
6
resource/l10n/zh-CN.toml
vendored
@ -80,8 +80,8 @@ other = "秒"
|
|||||||
other = "启用故障通知"
|
other = "启用故障通知"
|
||||||
[IntroductionOfMonitor]
|
[IntroductionOfMonitor]
|
||||||
other = """
|
other = """
|
||||||
类型为 <b>HTTP-GET</b> 时输入URL(带 http/https, HTTPS协议的会顺带监控SSL证书);
|
类型为 <b>HTTP-GET</b> 时输入URL(带 http/https, HTTPS协议的会顺带监控SSL证书);<br>
|
||||||
类型为 <b>ICMP-Ping</b> 时输入主机名/IP,不带端口;
|
类型为 <b>ICMP-Ping</b> 时输入主机名/IP,不带端口;<br>
|
||||||
类型为 <b>TCP-Ping</b> 时输入主机名/IP + 端口号:example.com:22"""
|
类型为 <b>TCP-Ping</b> 时输入主机名/IP + 端口号:example.com:22"""
|
||||||
[AddNotificationMethod]
|
[AddNotificationMethod]
|
||||||
other = "添加通知方式"
|
other = "添加通知方式"
|
||||||
@ -99,8 +99,6 @@ other = "验证SSL"
|
|||||||
other = "添加报警规则"
|
other = "添加报警规则"
|
||||||
[Rules]
|
[Rules]
|
||||||
other = "规则"
|
other = "规则"
|
||||||
[NotificationMethod]
|
|
||||||
other = "通知方式组"
|
|
||||||
[Enable]
|
[Enable]
|
||||||
other = "启用"
|
other = "启用"
|
||||||
[AddServer]
|
[AddServer]
|
||||||
|
2
resource/template/common/menu.html
vendored
2
resource/template/common/menu.html
vendored
@ -34,7 +34,7 @@
|
|||||||
<i class="terminal icon"></i>{{tr "AdminPanel"}}
|
<i class="terminal icon"></i>{{tr "AdminPanel"}}
|
||||||
</a>
|
</a>
|
||||||
{{end}}
|
{{end}}
|
||||||
<button class="item" onclick="showConfirm('{{tr "ConfirmLogout"}}','{{}tr "AfterLoggingOutYouHaveToLoginAgain"}',logout,{{.Admin.ID}})">
|
<button class="item" onclick="showConfirm('{{tr "ConfirmLogout"}}','{{tr "AfterLoggingOutYouHaveToLoginAgain"}}',logout,{{.Admin.ID}})">
|
||||||
<i class="logout icon"></i>{{tr "Logout"}}
|
<i class="logout icon"></i>{{tr "Logout"}}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
2
resource/template/component/cron.html
vendored
2
resource/template/component/cron.html
vendored
@ -48,7 +48,7 @@
|
|||||||
{{tr "TheFormaOfTheScheduleIs"}}<code>* * * * * *</code> {{tr "SecondsMinutesHoursDaysMonthsWeeksSeeDetails"}} <a
|
{{tr "TheFormaOfTheScheduleIs"}}<code>* * * * * *</code> {{tr "SecondsMinutesHoursDaysMonthsWeeksSeeDetails"}} <a
|
||||||
href="https://pkg.go.dev/github.com/robfig/cron/v3#hdr-CRON_Expression_Format"
|
href="https://pkg.go.dev/github.com/robfig/cron/v3#hdr-CRON_Expression_Format"
|
||||||
target="_blank">{{tr "ScheduleExpressionFormat"}}</a><br>
|
target="_blank">{{tr "ScheduleExpressionFormat"}}</a><br>
|
||||||
{{tr "IntroductionOfCommands"}}
|
{{safe (tr "IntroductionOfCommands")}}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
2
resource/template/component/monitor.html
vendored
2
resource/template/component/monitor.html
vendored
@ -57,7 +57,7 @@
|
|||||||
</form>
|
</form>
|
||||||
<div class="ui warning message">
|
<div class="ui warning message">
|
||||||
<p>
|
<p>
|
||||||
{{tr "IntroductionOfMonitor"}}
|
{{safe (tr "IntroductionOfMonitor")}}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
<i class="edit icon"></i>
|
<i class="edit icon"></i>
|
||||||
</button>
|
</button>
|
||||||
<button class="ui button"
|
<button class="ui button"
|
||||||
onclick="showConfirm('{tr "DeleteService"}','{{tr "ConfirmToDeleteThisService"}}',deleteRequest,'/api/monitor/'+{{$monitor.ID}})">
|
onclick="showConfirm('{{tr "DeleteService"}}','{{tr "ConfirmToDeleteThisService"}}',deleteRequest,'/api/monitor/'+{{$monitor.ID}})">
|
||||||
<i class="trash alternate outline icon"></i>
|
<i class="trash alternate outline icon"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user