mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
22 lines
455 B
QML
22 lines
455 B
QML
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls as Control
|
|
import SettingsCpp 1.0
|
|
import Linphone
|
|
|
|
AbstractDetailsLayout {
|
|
Component {
|
|
id: settings
|
|
Column {
|
|
spacing: 40 * DefaultStyle.dp
|
|
SwitchSetting {
|
|
titleText: qsTr("Chiffrer tous les fichiers")
|
|
subTitleText: qsTr("Attention, vous ne pourrez pas revenir en arrière !")
|
|
propertyName: "vfsEnabled"
|
|
propertyOwner: SettingsCpp
|
|
}
|
|
}
|
|
}
|
|
component: settings
|
|
}
|