mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-30 18:32:34 +02:00
Updated help text
This commit is contained in:
parent
3dacf72471
commit
2353ba58b2
2 changed files with 6 additions and 3 deletions
|
@ -1052,5 +1052,5 @@
|
||||||
"rabbitmqHelpText": "To use the monitor, you will need to enable the Management Plugin in your RabbitMQ setup. For more information, please consult the {rabitmq_documentation}.",
|
"rabbitmqHelpText": "To use the monitor, you will need to enable the Management Plugin in your RabbitMQ setup. For more information, please consult the {rabitmq_documentation}.",
|
||||||
"SendGrid API Key": "SendGrid API Key",
|
"SendGrid API Key": "SendGrid API Key",
|
||||||
"Separate multiple email addresses with commas": "Separate multiple email addresses with commas",
|
"Separate multiple email addresses with commas": "Separate multiple email addresses with commas",
|
||||||
"smtpHelpText": "Specify the TLS settings of the SMTP server you wish to monitor: SMTPS, STARTTLS, or ignore TLS"
|
"smtpHelpText": "“SMTPS” tests that SMTP/TLS is working; “Ignore TLS” connects over plaintext; “STARTTLS” connects, issues a STARTTLS command and verifies the server certificate. None of these send an email."
|
||||||
}
|
}
|
||||||
|
|
|
@ -332,14 +332,17 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<i18n-t v-if="monitor.type === 'smtp'" keypath="smtpHelpText" tag="div" class="my-3">
|
<div v-if="monitor.type === 'smtp'" class="my-3">
|
||||||
<label for="smtp_security" class="form-label">{{ $t("SMTP Security") }}</label>
|
<label for="smtp_security" class="form-label">{{ $t("SMTP Security") }}</label>
|
||||||
<select id="smtp_security" v-model="monitor.smtpSecurity" class="form-select">
|
<select id="smtp_security" v-model="monitor.smtpSecurity" class="form-select">
|
||||||
<option value="secure">SMTPS</option>
|
<option value="secure">SMTPS</option>
|
||||||
<option value="nostarttls">Ignore STARTTLS</option>
|
<option value="nostarttls">Ignore STARTTLS</option>
|
||||||
<option value="starttls">Use STARTTLS</option>
|
<option value="starttls">Use STARTTLS</option>
|
||||||
</select>
|
</select>
|
||||||
</i18n-t>
|
<div class="form-text">
|
||||||
|
{{ $t("smtpHelpText") }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Json Query -->
|
<!-- Json Query -->
|
||||||
<!-- For Json Query / SNMP -->
|
<!-- For Json Query / SNMP -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue