diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-10 14:31:25 +0000 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-10 14:31:25 +0000 |
| commit | b8745299ba5518cf93ec55b0786350663db929cf (patch) | |
| tree | 80f7f8021353761a20ed4e231787eb43ea00acc7 /MiddlePanel.qml | |
| parent | 1b021c599b9292ddffa02ca37d1e28e2cd17c9b4 (diff) | |
| parent | ea1d2c373113e27ac502e51ee2a74ea480575ef4 (diff) | |
| download | monzero-gui-b8745299ba5518cf93ec55b0786350663db929cf.tar.gz monzero-gui-b8745299ba5518cf93ec55b0786350663db929cf.tar.xz monzero-gui-b8745299ba5518cf93ec55b0786350663db929cf.zip | |
Merge pull request #546
ea1d2c3 Last translation files update for PR (Roy Jacobs)
a2f01ea Added missing Receive/Settings/Sign/Transfer translations (Roy Jacobs)
1a1a7a9 Added missing AddressBook translations (Roy Jacobs)
e3daa4b Updated translation files and improved the dutch translation (Roy Jacobs)
c30586c Fixed missing translation (Roy Jacobs)
c9825c5 Updated dutch translation (Roy Jacobs)
ab809b0 Updates translation files (Roy Jacobs)
5589ef7 Fixes missing translations (Roy Jacobs)
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml index 6c18a56e..2190c2a8 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -42,8 +42,9 @@ Rectangle { property Item currentView property Item previousView property bool basicMode : false - property string balanceLabelText: qsTr("Balance") + property string balanceLabelText: qsTr("Balance") + translationManager.emptyString property string balanceText + property string unlockedBalanceLabelText: qsTr("Unlocked Balance") + translationManager.emptyString property string unlockedBalanceText property Transfer transferView: Transfer { } @@ -239,6 +240,7 @@ Rectangle { } Text { + id: availableBalanceLabel width: 116 height: 20 font.family: "Arial" @@ -248,7 +250,7 @@ Rectangle { horizontalAlignment: Text.AlignLeft verticalAlignment: Text.AlignBottom color: "#535353" - text: qsTr("Unlocked Balance:") + text: root.unlockedBalanceLabelText + ":" } Text { |
