diff --git a/src/components/misc/keyboard-shortcuts/shortcuts.ts b/src/components/misc/keyboard-shortcuts/shortcuts.ts index e69722f9..758207ff 100644 --- a/src/components/misc/keyboard-shortcuts/shortcuts.ts +++ b/src/components/misc/keyboard-shortcuts/shortcuts.ts @@ -132,6 +132,10 @@ export const KEYBOARD_SHORTCUTS : ShortcutGroup[] = [ title: 'keyboardShortcuts.task.color', keys: ['c'], }, + { + title: 'keyboardShortcuts.task.reminder', + keys: ['alt', 'r'], + }, ], }, ] diff --git a/src/i18n/lang/en.json b/src/i18n/lang/en.json index f0f596bb..101351d9 100644 --- a/src/i18n/lang/en.json +++ b/src/i18n/lang/en.json @@ -863,7 +863,8 @@ "attachment": "Add an attachment to this task", "related": "Modify related tasks of this task", "color": "Change the color of this task", - "move": "Move this task to another list" + "move": "Move this task to another list", + "reminder": "Manage reminders of this task" }, "list": { "title": "List Views", diff --git a/src/views/tasks/TaskDetailView.vue b/src/views/tasks/TaskDetailView.vue index 9f29dbce..a91cc6cf 100644 --- a/src/views/tasks/TaskDetailView.vue +++ b/src/views/tasks/TaskDetailView.vue @@ -319,6 +319,7 @@ @click="setFieldActive('reminders')" variant="secondary" :icon="['far', 'clock']" + v-shortcut="'Alt+r'" > {{ $t('task.detail.actions.reminders') }}