From 46fd288a952ece886f4f0343b0d72bffaae6ad33 Mon Sep 17 00:00:00 2001 From: James Graham Date: Sat, 2 Dec 2023 13:21:26 +0000 Subject: [PATCH] Add some clarification around around offical and canonical parents --- src/qml/CreateRoomDialog.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/qml/CreateRoomDialog.qml b/src/qml/CreateRoomDialog.qml index 79b99d1ff..fa8663caa 100644 --- a/src/qml/CreateRoomDialog.qml +++ b/src/qml/CreateRoomDialog.qml @@ -75,7 +75,7 @@ FormCard.FormCardPage { FormCard.FormCheckDelegate { id: newOfficialCheck visible: root.parentId.length > 0 - text: i18n("Make this parent official") + text: i18nc("@option:check As in make the space from which this dialog was created an official parent.", "Make this parent official") checked: true } FormCard.FormButtonDelegate { @@ -198,7 +198,7 @@ FormCard.FormCardPage { FormCard.FormCheckDelegate { id: existingOfficialCheck visible: root.parentId.length > 0 - text: i18n("Make this parent official") + text: i18nc("@option:check As in make the space from which this dialog was created an official parent.", "Make this parent official") description: enabled ? i18n("You have the required privilege level in the child to set this state") : i18n("You do not have a high enough privilege level in the child to set this state") checked: enabled @@ -216,7 +216,7 @@ FormCard.FormCardPage { } FormCard.FormCheckDelegate { id: makeCanonicalCheck - text: i18n("Make this space the canonical parent") + text: i18nc("@option:check The canonical parent is the default one if a room has multiple parent spaces.", "Make this space the canonical parent") checked: enabled enabled: existingOfficialCheck.enabled