Changeset View
Changeset View
Standalone View
Standalone View
src/contents/ui/room-settings/RoomSettingsPage.qml
Show All 26 Lines | Kazv.ClosableScrollablePage { | ||||
title: l10n.get('room-settings-page-title', { room: roomDisplayName }) | title: l10n.get('room-settings-page-title', { room: roomDisplayName }) | ||||
function tagIdToName(tagId) { | function tagIdToName(tagId) { | ||||
return tagId.slice(2); | return tagId.slice(2); | ||||
} | } | ||||
property var encryptionPopup: Kirigami.PromptDialog { | property var encryptionPopup: Kirigami.PromptDialog { | ||||
parent: roomSettingsPage.overlay | |||||
objectName: 'encryptionPopup' | objectName: 'encryptionPopup' | ||||
title: l10n.get('room-settings-enable-encryption-prompt-dialog-title') | title: l10n.get('room-settings-enable-encryption-prompt-dialog-title') | ||||
standardButtons: Kirigami.Dialog.Ok | Kirigami.Dialog.Cancel | standardButtons: Kirigami.Dialog.Ok | Kirigami.Dialog.Cancel | ||||
ColumnLayout { | ColumnLayout { | ||||
Label { | Label { | ||||
Layout.fillWidth: true | Layout.fillWidth: true | ||||
text: l10n.get('room-settings-enable-encryption-prompt-dialog-prompt') | text: l10n.get('room-settings-enable-encryption-prompt-dialog-prompt') | ||||
▲ Show 20 Lines • Show All 160 Lines • Show Last 20 Lines |