Chore: Add translations to options text
This commit is contained in:
parent
c9d6e576ab
commit
7761e9a05e
|
@ -21,9 +21,9 @@
|
|||
class="form-select"
|
||||
required
|
||||
>
|
||||
<option value="json">Preset - application/json</option>
|
||||
<option value="form-data">Preset - multipart/form-data</option>
|
||||
<option value="custom">Custom Body</option>
|
||||
<option value="json">{{ $t("webhookBodyPresetOption", ["application/json"]) }}</option>
|
||||
<option value="form-data">{{ $t("webhookBodyPresetOption", ["multipart/form-data"]) }}</option>
|
||||
<option value="custom">{{ $t("webhookBodyCustomOption") }}</option>
|
||||
</select>
|
||||
|
||||
<div class="form-text">
|
||||
|
|
|
@ -198,6 +198,8 @@
|
|||
"webhookCustomBodyDesc": "Define a custom HTTP Body for the request. Template variables {msg}, {heartbeat}, {monitor} are accepted.",
|
||||
"webhookAdditionalHeadersTitle": "Additional Headers",
|
||||
"webhookAdditionalHeadersDesc": "Sets additional headers sent with the webhook. Each header should be defined as a JSON key/value.",
|
||||
"webhookBodyPresetOption": "Preset - {0}",
|
||||
"webhookBodyCustomOption": "Custom Body",
|
||||
"Webhook URL": "Webhook URL",
|
||||
"Application Token": "Application Token",
|
||||
"Server URL": "Server URL",
|
||||
|
|
Loading…
Reference in New Issue