From 31d755f407a6990485fc5023275670fb3d77c158 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 30 Oct 2024 22:25:53 -0400 Subject: [PATCH] ManualRoomDialog: Change title of the dialog to reduce duplication "Room ID or Alias" is duplicated twice here, once in the dialog title and a second time as the label for the text field. Let's change it to a more suitable name "Manually Enter a Room". --- src/qml/ManualRoomDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/ManualRoomDialog.qml b/src/qml/ManualRoomDialog.qml index 28d0e6ce5..1eea731af 100644 --- a/src/qml/ManualRoomDialog.qml +++ b/src/qml/ManualRoomDialog.qml @@ -22,7 +22,7 @@ Kirigami.Dialog { */ signal roomSelected(string roomId, string displayName, url avatarUrl, string alias, string topic, int memberCount, bool isJoined) - title: i18nc("@title", "Room ID or Alias") + title: i18nc("@title", "Manually Enter a Room") width: Math.min(applicationWindow().width, Kirigami.Units.gridUnit * 24) leftPadding: 0