mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Apply suggestions from code review
This commit is contained in:
parent
85f555295f
commit
d1ad668998
2 changed files with 7 additions and 6 deletions
|
@ -1058,8 +1058,7 @@
|
||||||
"rabbitmqNodesInvalid": "Please use a fully qualified (starting with 'http') URL for RabbitMQ nodes.",
|
"rabbitmqNodesInvalid": "Please use a fully qualified (starting with 'http') URL for RabbitMQ nodes.",
|
||||||
"RabbitMQ Username": "RabbitMQ Username",
|
"RabbitMQ Username": "RabbitMQ Username",
|
||||||
"RabbitMQ Password": "RabbitMQ Password",
|
"RabbitMQ Password": "RabbitMQ Password",
|
||||||
"RabbitMQ": "RabbitMQ",
|
"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 {0}.",
|
|
||||||
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
MQTT
|
MQTT
|
||||||
</option>
|
</option>
|
||||||
<option value="rabbitmq">
|
<option value="rabbitmq">
|
||||||
{{ $t("RabbitMQ") }}
|
RabbitMQ
|
||||||
</option>
|
</option>
|
||||||
<option value="kafka-producer">
|
<option value="kafka-producer">
|
||||||
Kafka Producer
|
Kafka Producer
|
||||||
|
@ -94,9 +94,11 @@
|
||||||
</optgroup>
|
</optgroup>
|
||||||
</select>
|
</select>
|
||||||
<i18n-t v-if="monitor.type === 'rabbitmq'" keypath="rabbitmqHelpText" tag="div" class="form-text">
|
<i18n-t v-if="monitor.type === 'rabbitmq'" keypath="rabbitmqHelpText" tag="div" class="form-text">
|
||||||
<a href="https://www.rabbitmq.com/management" target="_blank" rel="noopener noreferrer">
|
<template #rabitmq_documentation>
|
||||||
RabbitMQ documentation
|
<a href="https://www.rabbitmq.com/management" target="_blank" rel="noopener noreferrer">
|
||||||
</a>.
|
RabbitMQ documentation
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
</i18n-t>
|
</i18n-t>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue