summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/qml/pages/ManagerPage.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/qml/pages/ManagerPage.qml b/app/qml/pages/ManagerPage.qml
index 303c2fa..14a6165 100644
--- a/app/qml/pages/ManagerPage.qml
+++ b/app/qml/pages/ManagerPage.qml
@@ -41,6 +41,7 @@ Page {
id: settings
path: "/org/pebbled/settings"
property bool silentWhenConnected: false
+ property bool transliterateCyrillic: false
property bool incomingCallNotification: true
property bool notificationsCommhistoryd: true
property bool notificationsMissedCall: true
@@ -157,6 +158,14 @@ Page {
settings.silentWhenConnected = !settings.silentWhenConnected;
}
}
+ TextSwitch {
+ text: qsTr("Transliterate Cyrillic")
+ checked: settings.transliterateCyrillic
+ automaticCheck: false
+ onClicked: {
+ settings.transliterateCyrillic = !settings.transliterateCyrillic;
+ }
+ }
Label {
text: qsTr("Notifications")