Change the happy eyeballs helptext to a proper sentence

This commit is contained in:
Frank Elsinga 2025-06-12 00:20:35 +02:00 committed by GitHub
parent e11c344aa5
commit d51fc79bd3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -1113,5 +1113,6 @@
"smsplanetNeedToApproveName": "Needs to be approved in the client panel", "smsplanetNeedToApproveName": "Needs to be approved in the client panel",
"Disable URL in Notification": "Disable URL in Notification", "Disable URL in Notification": "Disable URL in Notification",
"Ip Family": "IP Family", "Ip Family": "IP Family",
"ipFamilyDescriptionAutoSelect": "Use \"{happyEyeballs}\" for determining the IP family." "ipFamilyDescriptionAutoSelect": "Uses the {happyEyeballs} for determining the IP family.",
"Happy Eyeballs algorithm": "Happy Eyeballs algorithm"
} }

View file

@ -755,7 +755,7 @@
</select> </select>
<i18n-t v-if="monitor.ipFamily == null" keypath="ipFamilyDescriptionAutoSelect" tag="div" class="form-text"> <i18n-t v-if="monitor.ipFamily == null" keypath="ipFamilyDescriptionAutoSelect" tag="div" class="form-text">
<template #happyEyeballs> <template #happyEyeballs>
<a href="https://en.wikipedia.org/wiki/Happy_Eyeballs" target="_blank">Happy Eyeballs</a> <a href="https://en.wikipedia.org/wiki/Happy_Eyeballs" target="_blank">{{ $t("Happy Eyeballs algorithm") }}</a>
</template> </template>
</i18n-t> </i18n-t>
</div> </div>