diff options
| author | Basil Semuonov <basil.semuonov@gmail.com> | 2014-08-10 13:27:57 +0400 |
|---|---|---|
| committer | Basil Semuonov <basil.semuonov@gmail.com> | 2014-08-10 13:27:57 +0400 |
| commit | e0c926bd934d857e84faecd970b9e78f7a9e0dcd (patch) | |
| tree | 718c68851e83ec9ed0d3c860548ebd16bdd637bd /app/qml | |
| parent | 3d797fa577b640efc524467092ac502e783203f5 (diff) | |
Transliterate russian cyrillic
Diffstat (limited to 'app/qml')
| -rw-r--r-- | app/qml/pages/ManagerPage.qml | 9 |
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") |
