Skip to content

fix: Add helptext about usage to expiry checkboxes#6978

Merged
CommanderStorm merged 4 commits intomasterfrom
copilot/add-helptext-for-expiry-notifications
Feb 18, 2026
Merged

fix: Add helptext about usage to expiry checkboxes#6978
CommanderStorm merged 4 commits intomasterfrom
copilot/add-helptext-for-expiry-notifications

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Feb 18, 2026

The Certificate Expiry Notification and Domain Name Expiry Notification checkboxes lacked context about where to configure the notification timing. Users needed guidance to Settings → Notifications.

Changes

  • Added translation keys certificateExpiryNotificationHelp and domainExpiryNotificationHelp to src/lang/en.json
  • Display helptext below both checkboxes in src/pages/EditMonitor.vue, conditionally shown for domain expiry when a valid domain is present

Screenshot

Expiry notification checkboxes with helptext

The helptext reads: "The number of days in advance can be configured in Settings → Notifications."

Original prompt

This section details on the original issue you should resolve

<issue_title>Explain expiry notifications</issue_title>
<issue_description>

When creating a monitor, one can tick 'Domain Name Expiry Notification' and 'Certificate Expiry Notification'.

The amount of days in advance of which a notification is sent is configured under 'Settings' -> 'Notifications'.

I think it would be useful to point users there via a short helptext.
This should be added to the Edit screen and en.json</issue_description>

Comments on the Issue (you are @copilot in this section)


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: CommanderStorm <26258709+CommanderStorm@users.noreply.github.com>
Copilot AI changed the title [WIP] Add help text for expiry notifications configuration Add helptext to expiry notification checkboxes Feb 18, 2026
Copilot AI requested a review from CommanderStorm February 18, 2026 19:56
@CommanderStorm CommanderStorm marked this pull request as ready for review February 18, 2026 20:00
Copilot AI review requested due to automatic review settings February 18, 2026 20:00
@github-actions github-actions bot added the pr:needs review this PR needs a review by maintainers or other community members label Feb 18, 2026
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds explanatory helptext to the monitor edit screen so users understand where to configure the lead time for certificate/domain expiry notifications (in Settings).

Changes:

  • Added new i18n keys for certificate/domain expiry notification helptext in src/lang/en.json
  • Rendered helptext under the certificate expiry checkbox, and under the domain expiry checkbox when a valid domain is present

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

File Description
src/pages/EditMonitor.vue Displays the new helptext beneath the relevant expiry-notification checkboxes
src/lang/en.json Adds English translation strings for the helptext

@CommanderStorm CommanderStorm changed the title Add helptext to expiry notification checkboxes fix: Add helptext about usage to expiry checkboxes Feb 18, 2026
@CommanderStorm CommanderStorm added this to the 2.1.2 milestone Feb 18, 2026
@CommanderStorm CommanderStorm enabled auto-merge (squash) February 18, 2026 20:04
@CommanderStorm CommanderStorm merged commit 593037a into master Feb 18, 2026
32 of 33 checks passed
"RadiusCallingStationId": "Calling Station Id",
"RadiusCallingStationIdDescription": "Identifier of the calling device",
"Certificate Expiry Notification": "Certificate Expiry Notification",
"certificateExpiryNotificationHelp": "The number of days in advance can be configured in the Settings.",
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"certificateExpiryNotificationHelp": "The number of days in advance can be configured in the Settings.",
"expiryNotificationHelp": "The number of days in advance can be configured in the Settings.",

"settingsDomainExpiry": "Domain Expiry",
"labelDomainExpiry": "Domain Exp.",
"labelDomainNameExpiryNotification": "Domain Name Expiry Notification",
"domainExpiryNotificationHelp": "The number of days in advance can be configured in Settings.",
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"domainExpiryNotificationHelp": "The number of days in advance can be configured in Settings.",

Comment on lines +1494 to +1496
<div class="form-text">
{{ $t("certificateExpiryNotificationHelp") }}
</div>
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<div class="form-text">
{{ $t("certificateExpiryNotificationHelp") }}
</div>
<div class="form-text">{{ $t("expiryNotificationHelp") }}</div>

Comment on lines +1540 to +1542
<div v-if="hasDomain" class="form-text">
{{ $t("domainExpiryNotificationHelp") }}
</div>
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<div v-if="hasDomain" class="form-text">
{{ $t("domainExpiryNotificationHelp") }}
</div>
<div v-if="hasDomain" class="form-text">{{ $t("expiryNotificationHelp") }}</div>

@louislam louislam deleted the copilot/add-helptext-for-expiry-notifications branch February 27, 2026 01:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

pr:needs review this PR needs a review by maintainers or other community members

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Explain expiry notifications

3 participants