diff options
| author | xmr-eric <eric@moneroeric.com> | 2017-02-27 17:08:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-27 17:08:07 -0500 |
| commit | 08d5730fbe9a7f2eafadf83d738b7d0230a074cd (patch) | |
| tree | 7540c849709478007ca7b167a0bd3ce354220583 | |
| parent | 92a5781b6a0640c4d9d58e3c21ce8d2d1d416134 (diff) | |
| download | monzero-gui-08d5730fbe9a7f2eafadf83d738b7d0230a074cd.tar.gz monzero-gui-08d5730fbe9a7f2eafadf83d738b7d0230a074cd.tar.xz monzero-gui-08d5730fbe9a7f2eafadf83d738b7d0230a074cd.zip | |
History.qml: Keep text mixed case
| -rw-r--r-- | pages/History.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/History.qml b/pages/History.qml index b1c99076..601e8800 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -270,7 +270,7 @@ Rectangle { anchors.left: toDatePicker.right anchors.leftMargin: 17 width: 60 - text: qsTr("FILTER") + text: qsTr("Filter") shadowReleasedColor: "#4D0051" shadowPressedColor: "#2D002F" releasedColor: "#6B0072" @@ -333,9 +333,9 @@ Rectangle { ListModel { id: transactionsModel - ListElement { column1: "ALL"; column2: ""; value: TransactionInfo.Direction_Both } - ListElement { column1: "SENT"; column2: ""; value: TransactionInfo.Direction_Out } - ListElement { column1: "RECEIVED"; column2: ""; value: TransactionInfo.Direction_In } + ListElement { column1: "All"; column2: ""; value: TransactionInfo.Direction_Both } + ListElement { column1: "Sent"; column2: ""; value: TransactionInfo.Direction_Out } + ListElement { column1: "Received"; column2: ""; value: TransactionInfo.Direction_In } } |
