From afb7b8c3181b60c69038171a90439cc475d9788e Mon Sep 17 00:00:00 2001 From: kramo Date: Fri, 28 Aug 2026 09:45:14 +0200 Subject: [PATCH] fix(AppMenuActions): Shorten "More actions" label Partly to avoid awkward wrapping Signed-off-by: kramo --- core/src/components/AppMenuActions.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/AppMenuActions.vue b/core/src/components/AppMenuActions.vue index f3c54847e9a73..921513660ca60 100644 --- a/core/src/components/AppMenuActions.vue +++ b/core/src/components/AppMenuActions.vue @@ -28,7 +28,7 @@ const emit = defineEmits<{ /** * Number of cells in the actions row, matching the column count of the app - * grid. Actions that do not fit move into the trailing "More actions" cell. + * grid. Actions that do not fit move into the trailing "More" cell. */ const ACTIONS_PER_ROW = 4 @@ -42,7 +42,7 @@ const overflowEntry: INavigationEntry = { href: '', icon: '', type: 'action', - name: t('core', 'More actions'), + name: t('core', 'More'), unread: 0, }