From e0c926bd934d857e84faecd970b9e78f7a9e0dcd Mon Sep 17 00:00:00 2001 From: Basil Semuonov Date: Sun, 10 Aug 2014 13:27:57 +0400 Subject: Transliterate russian cyrillic --- app/qml/pages/ManagerPage.qml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'app') 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") -- cgit v1.2.3