remove useless translations

This commit is contained in:
Frank Elsinga 2026-01-06 00:05:02 +01:00
parent 70a9c0feeb
commit b3ef5a9e85
5 changed files with 4 additions and 19 deletions

View File

@ -10,7 +10,7 @@
</div>
<div class="mb-3">
<div class="form-text">
{{ $t("checkPrice", [$t("clicksendsms")]) }}
{{ $t("checkPrice", ["clicksendsms"]) }}
<a href="https://www.clicksend.com/us/pricing" target="_blank">https://clicksend.com/us/pricing</a>
</div>
</div>

View File

@ -2,7 +2,7 @@
<div class="mb-3">
<label for="octopush-version" class="form-label">{{ $t("Octopush API Version") }}</label>
<select id="octopush-version" v-model="$parent.notification.octopushVersion" class="form-select">
<option value="2">{{ $t("octopush") }} ({{ $t("endpoint") }}: api.octopush.com)</option>
<option value="2">{{ "octopush" }} ({{ $t("endpoint") }}: api.octopush.com)</option>
<option value="1">{{ $t("Legacy Octopush-DM") }} ({{ $t("endpoint") }}: www.octopush-dm.com)</option>
</select>
<div class="form-text">

View File

@ -24,7 +24,7 @@
<a href="https://api.slack.com/messaging/webhooks" target="_blank">https://api.slack.com/messaging/webhooks</a>
</i18n-t>
<p style="margin-top: 8px;">
{{ $t("aboutChannelName", [$t("slack")]) }}
{{ $t("aboutChannelName", ["slack"]) }}
</p>
<p style="margin-top: 8px;">
{{ $t("aboutKumaURL") }}

View File

@ -1268,11 +1268,10 @@
"Message Format": "Message Format",
"smscTranslit": "smscTranslit",
"promosms": "promosms",
"clicksendsms": "clicksendsms",
"Region": "Region",
"PushDeer Server URL": "PushDeer Server URL",
"To Number": "To Number",
"GrafanaOncallURL": "GrafanaOncallURL",
"GrafanaOncallURL": "Grafana Oncall URL",
"Never": "Never",
"Json Query": "Json Query",
"System Service": "System Service",
@ -1283,11 +1282,8 @@
"GRPC Options": "GRPC Options",
"Metadata": "Metadata",
"pingTimeoutLabel": "pingTimeoutLabel",
"pingTimeoutDescription": "pingTimeoutDescription",
"End": "End",
"Show this Maintenance Message on which Status Pages": "Show this Maintenance Message on which Status Pages",
"Endpoint": "Endpoint",
"octopush": "octopush",
"slack": "slack",
"Details": "Details"
}

View File

@ -1455,17 +1455,6 @@ export default {
return this.monitor.type === "ping" ? 60 : undefined;
},
timeoutLabel() {
return this.monitor.type === "ping" ? this.$t("pingTimeoutLabel") : this.$t("Request Timeout");
},
timeoutDescription() {
if (this.monitor.type === "ping") {
return this.$t("pingTimeoutDescription");
}
return "";
},
defaultFriendlyName() {
if (this.monitor.hostname) {
return this.monitor.hostname;