mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
Add text for resend disabled
This commit is contained in:
parent
f390a8caf1
commit
855b12f435
@ -3,6 +3,7 @@ export default {
|
|||||||
checkEverySecond: "Check every {0} seconds",
|
checkEverySecond: "Check every {0} seconds",
|
||||||
retryCheckEverySecond: "Retry every {0} seconds",
|
retryCheckEverySecond: "Retry every {0} seconds",
|
||||||
resendEveryMinute: "Resend every {0} minutes",
|
resendEveryMinute: "Resend every {0} minutes",
|
||||||
|
resendDisabled: "Resend disabled",
|
||||||
retriesDescription: "Maximum retries before the service is marked as down and a notification is sent",
|
retriesDescription: "Maximum retries before the service is marked as down and a notification is sent",
|
||||||
ignoreTLSError: "Ignore TLS/SSL error for HTTPS websites",
|
ignoreTLSError: "Ignore TLS/SSL error for HTTPS websites",
|
||||||
upsideDownModeDescription: "Flip the status upside down. If the service is reachable, it is DOWN.",
|
upsideDownModeDescription: "Flip the status upside down. If the service is reachable, it is DOWN.",
|
||||||
|
@ -140,7 +140,8 @@
|
|||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="resend-interval" class="form-label">
|
<label for="resend-interval" class="form-label">
|
||||||
{{ $t("Notification resend Interval if Down") }}
|
{{ $t("Notification resend Interval if Down") }}
|
||||||
<span>({{ $t("resendEveryMinute", [ monitor.resendInterval ]) }})</span>
|
<span v-if="monitor.resendInterval > 0">({{ $t("resendEveryMinute", [ monitor.resendInterval ]) }})</span>
|
||||||
|
<span v-else>({{ $t("resendDisabled") }})</span>
|
||||||
</label>
|
</label>
|
||||||
<input id="resend-interval" v-model="monitor.resendInterval" type="number" class="form-control" required min="0" step="1">
|
<input id="resend-interval" v-model="monitor.resendInterval" type="number" class="form-control" required min="0" step="1">
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user