settings: Consistently describe Slack-compatible webhook format.

Previously, the settings edit UI used a different phrasing, and "Slack
compatible" used a dash only in the documentation.

We settle on "Slack-compatible", since that's what we use for the
similar incoming webhook format.
This commit is contained in:
Tim Abbott
2025-06-27 11:04:49 -07:00
parent 711d45de11
commit 5cfa8b4dc2
2 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@
<label for="interface_type" class="modal-field-label">{{t "Webhook format" }}</label>
<select name="interface_type" id="create_interface_type" class="modal_select bootstrap-focus-style">
<option value="1">Zulip</option>
<option value="2">{{t "Slack compatible" }}</option>
<option value="2">{{t "Slack-compatible" }}</option>
</select>
<div><label for="create_interface_type" generated="true" class="text-error"></label></div>
</div>

View File

@@ -6,7 +6,7 @@
<div class="input-group">
<label for="edit_service_interface">{{t "Webhook format" }}</label>
<select id="edit_service_interface" class="modal_select bootstrap-focus-style" name="service_interface">
<option value="1">{{t "Generic" }}</option>
<option value="2">{{t "Slack's outgoing webhooks" }}</option>
<option value="1">Zulip</option>
<option value="2">{{t "Slack-compatible" }}</option>
</select>
</div>