diff --git a/src/components/cards/CardMenuEntries.vue b/src/components/cards/CardMenuEntries.vue
index 74d704cc9d..a76d00997f 100644
--- a/src/components/cards/CardMenuEntries.vue
+++ b/src/components/cards/CardMenuEntries.vue
@@ -16,27 +16,35 @@
{{ t('deck', 'Edit title') }}
+
+
+
{{ t('deck', 'Assign to me') }}
+
+
+
{{ t('deck', 'Unassign myself') }}
+
+
+
{{ card.done ? t('deck', 'Mark as not done') : t('deck', 'Mark as done') }}
+
+
+
{{ t('deck', 'Move/copy card') }}
+
+
+
{{ t('deck', 'Delete card') }}
@@ -66,6 +76,11 @@ import { mapGetters, mapState } from 'vuex'
import ArchiveIcon from 'vue-material-design-icons/ArchiveOutline.vue'
import CardBulletedIcon from 'vue-material-design-icons/CardBulletedOutline.vue'
import PencilIcon from 'vue-material-design-icons/PencilOutline.vue'
+import AccountPlusIcon from 'vue-material-design-icons/AccountPlus.vue'
+import AccountMinusIcon from 'vue-material-design-icons/AccountMinus.vue'
+import CheckIcon from 'vue-material-design-icons/Check.vue'
+import OpenInNewIcon from 'vue-material-design-icons/OpenInNew.vue'
+import DeleteIcon from 'vue-material-design-icons/DeleteOutline.vue'
import { generateUrl } from '@nextcloud/router'
import { getCurrentUser } from '@nextcloud/auth'
import { showUndo } from '@nextcloud/dialogs'
@@ -75,7 +90,7 @@ import { emit } from '@nextcloud/event-bus'
export default {
name: 'CardMenuEntries',
- components: { NcActionButton, ArchiveIcon, CardBulletedIcon, PencilIcon },
+ components: { NcActionButton, ArchiveIcon, CardBulletedIcon, PencilIcon, AccountPlusIcon, AccountMinusIcon, CheckIcon, OpenInNewIcon, DeleteIcon },
props: {
card: {
type: Object,
diff --git a/src/components/navigation/AppNavigationBoard.vue b/src/components/navigation/AppNavigationBoard.vue
index 4c02e3cf62..3294308f4a 100644
--- a/src/components/navigation/AppNavigationBoard.vue
+++ b/src/components/navigation/AppNavigationBoard.vue
@@ -28,15 +28,19 @@
-
+
+
+
{{ t('deck', 'Board details') }}
+
+
+
{{ t('deck', 'Edit board') }}
+
+
+
{{ t('deck', 'Export board') }}
@@ -76,50 +82,62 @@
-
+
+
+
+
{{ t('deck', 'Due date reminders') }}
+
+
+
{{ t('deck', 'All cards') }}
+
+
+
{{ t('deck', 'Assigned cards') }}
+
+
+
{{ t('deck', 'No notifications') }}
+
+
+
{{ dueDateReminderText }}
+
+
+
{{ t('deck', 'Delete board') }}
@@ -164,7 +182,7 @@