From 74c12e89ead074b6270e64c8df0bcce14ffd9b1e Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 13 Jan 2026 18:07:41 -0500 Subject: [PATCH] Improve other space button texts Remove some extra verbiage, ensuring ellipses and so on. CCBUG: 497044 --- src/spaces/SpaceHomePage.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/spaces/SpaceHomePage.qml b/src/spaces/SpaceHomePage.qml index a648c12ac..2d1f8a0e9 100644 --- a/src/spaces/SpaceHomePage.qml +++ b/src/spaces/SpaceHomePage.qml @@ -77,7 +77,7 @@ ColumnLayout { Layout.rightMargin: Kirigami.Units.largeSpacing QQC2.Button { visible: root.room.canSendState("invite") - text: i18nc("@button", "Invite user to space") + text: i18nc("@button Invite user to this space", "Invite to Space…") icon.name: "list-add-user" onClicked: (Kirigami.PageStack.pageStack as Kirigami.PageRow).pushDialogLayer(Qt.createComponent('org.kde.neochat.libneochat', 'InviteUserPage'), { room: root.room @@ -89,14 +89,14 @@ ColumnLayout { id: addNewButton visible: root.room.canSendState("m.space.child") - text: i18nc("@button", "Add to Space") + text: i18nc("@button", "Add to Space…") icon.name: "list-add" onClicked: { (roomMenuComponent.createObject(addNewButton) as KirigamiComponents.ConvergentContextMenu).popup(); } } QQC2.Button { - text: i18nc("@action:button", "Leave this space…") + text: i18nc("@action:button", "Leave this Space…") icon.name: "go-previous" onClicked: (Qt.createComponent('org.kde.neochat', 'ConfirmLeaveDialog').createObject(root.QQC2.ApplicationWindow.window, { room: root.room