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".
This commit is contained in:
Joshua Goins
2024-10-30 22:25:53 -04:00
parent ebfc20d4b4
commit 31d755f407

View File

@@ -22,7 +22,7 @@ Kirigami.Dialog {
*/ */
signal roomSelected(string roomId, string displayName, url avatarUrl, string alias, string topic, int memberCount, bool isJoined) 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) width: Math.min(applicationWindow().width, Kirigami.Units.gridUnit * 24)
leftPadding: 0 leftPadding: 0