diff --git a/src/components/ActionInput.vue b/src/components/ActionInput.vue index fe3504b1..44c9e586 100644 --- a/src/components/ActionInput.vue +++ b/src/components/ActionInput.vue @@ -8,9 +8,9 @@ :placeholder="placeholder" :disabled="!enabled" > - + - + @@ -66,6 +66,13 @@ export default { action: { type: Function, default: () => {}, + }, + /** + * The aria-label of the action button + */ + actionAriaLabel: { + type: String, + required: true, } }, emits: [ "update:modelValue" ], diff --git a/src/components/ActionSelect.vue b/src/components/ActionSelect.vue index 78daebc2..b163cd3a 100644 --- a/src/components/ActionSelect.vue +++ b/src/components/ActionSelect.vue @@ -1,11 +1,11 @@ - + {{ option.label }} - - - + + + @@ -20,6 +20,13 @@ export default { type: Array, default: () => [], }, + /** + * The id of the form which will be targeted by a {}, }, + /** + * The aria-label of the action button + */ + actionAriaLabel: { + type: String, + required: true, + }, /** * Whether the action button is disabled. * @example true diff --git a/src/components/settings/Notifications.vue b/src/components/settings/Notifications.vue index 5459f6f9..af1e92de 100644 --- a/src/components/settings/Notifications.vue +++ b/src/components/settings/Notifications.vue @@ -27,13 +27,13 @@ {{ day }} {{ $tc("day", day) }} - - + + - + diff --git a/src/lang/en.json b/src/lang/en.json index 9f2feba7..ce150b21 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -334,6 +334,8 @@ "Fingerprint:": "Fingerprint:", "No status pages": "No status pages", "Domain Name Expiry Notification": "Domain Name Expiry Notification", + "Add a new expiry notification day": "Add a new expiry notification day", + "Remove the expiry notification": "Remove the expiry notification day", "Proxy": "Proxy", "Date Created": "Date Created", "Footer Text": "Footer Text", @@ -656,6 +658,8 @@ "Notify Channel": "Notify Channel", "aboutNotifyChannel": "Notify channel will trigger a desktop or mobile notification for all members of the channel, whether their availability is set to active or away.", "Uptime Kuma URL": "Uptime Kuma URL", + "setup a new monitor group": "setup a new monitor group", + "openModalTo": "open modal to {0}", "Icon Emoji": "Icon Emoji", "signalImportant": "IMPORTANT: You cannot mix groups and numbers in recipients!", "aboutWebhooks": "More info about Webhooks on: {0}", diff --git a/src/pages/EditMonitor.vue b/src/pages/EditMonitor.vue index cb04f138..92454a26 100644 --- a/src/pages/EditMonitor.vue +++ b/src/pages/EditMonitor.vue @@ -288,7 +288,9 @@ {{ $t("Docker Host") }} - {{ $t("Monitor Group") }} + {{ $t("Monitor Group") }}