Add helptext to expiry notification checkboxes (#6978)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: CommanderStorm <26258709+CommanderStorm@users.noreply.github.com>
Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
Copilot
2026-02-18 20:05:21 +00:00
committed by GitHub
parent ab3045f80e
commit 593037ac02
2 changed files with 8 additions and 1 deletions

View File

@@ -441,6 +441,7 @@
"RadiusCallingStationId": "Calling Station Id", "RadiusCallingStationId": "Calling Station Id",
"RadiusCallingStationIdDescription": "Identifier of the calling device", "RadiusCallingStationIdDescription": "Identifier of the calling device",
"Certificate Expiry Notification": "Certificate Expiry Notification", "Certificate Expiry Notification": "Certificate Expiry Notification",
"certificateExpiryNotificationHelp": "The number of days in advance can be configured in the Settings.",
"Cloud ID": "Cloud ID", "Cloud ID": "Cloud ID",
"API Username": "API Username", "API Username": "API Username",
"API Key": "API Key", "API Key": "API Key",
@@ -1378,6 +1379,7 @@
"settingsDomainExpiry": "Domain Expiry", "settingsDomainExpiry": "Domain Expiry",
"labelDomainExpiry": "Domain Exp.", "labelDomainExpiry": "Domain Exp.",
"labelDomainNameExpiryNotification": "Domain Name Expiry Notification", "labelDomainNameExpiryNotification": "Domain Name Expiry Notification",
"domainExpiryNotificationHelp": "The number of days in advance can be configured in Settings.",
"domainExpiryDescription": "Trigger notification when domain names expires in:", "domainExpiryDescription": "Trigger notification when domain names expires in:",
"domain_expiry_unsupported_monitor_type": "Domain expiry monitoring is not supported for this monitor type", "domain_expiry_unsupported_monitor_type": "Domain expiry monitoring is not supported for this monitor type",
"domain_expiry_unsupported_missing_target": "No valid domain or hostname is configured for this monitor", "domain_expiry_unsupported_missing_target": "No valid domain or hostname is configured for this monitor",

View File

@@ -1491,7 +1491,9 @@
<label class="form-check-label" for="expiry-notification"> <label class="form-check-label" for="expiry-notification">
{{ $t("Certificate Expiry Notification") }} {{ $t("Certificate Expiry Notification") }}
</label> </label>
<div class="form-text"></div> <div class="form-text">
{{ $t("certificateExpiryNotificationHelp") }}
</div>
</div> </div>
<!-- Screenshot Delay - Real Browser only --> <!-- Screenshot Delay - Real Browser only -->
@@ -1535,6 +1537,9 @@
<label class="form-check-label" for="domain-expiry-notification"> <label class="form-check-label" for="domain-expiry-notification">
{{ $t("labelDomainNameExpiryNotification") }} {{ $t("labelDomainNameExpiryNotification") }}
</label> </label>
<div v-if="hasDomain" class="form-text">
{{ $t("domainExpiryNotificationHelp") }}
</div>
<div v-if="!hasDomain && domainExpiryUnsupportedReason" class="form-text"> <div v-if="!hasDomain && domainExpiryUnsupportedReason" class="form-text">
{{ domainExpiryUnsupportedReason }} {{ domainExpiryUnsupportedReason }}
</div> </div>