diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-07-22 13:18:23 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-22 13:18:23 -0500 |
| commit | 6c25650bbd7d21d349f338dcec932c3f3da52310 (patch) | |
| tree | c1ab8d74c407f26823f552e07b9c6442f5ac7b90 | |
| parent | 4775fd74b87f1ea6a91f732c0fda965df641280b (diff) | |
| parent | 7480f9b55913903bdecb6d108d33cc78205b8bed (diff) | |
| download | monzero-gui-6c25650bbd7d21d349f338dcec932c3f3da52310.tar.gz monzero-gui-6c25650bbd7d21d349f338dcec932c3f3da52310.tar.xz monzero-gui-6c25650bbd7d21d349f338dcec932c3f3da52310.zip | |
Merge pull request #2297
7480f9b Changes Change wallet/Continue to Cancel/Ok (notmike-5)
| -rw-r--r-- | components/PasswordDialog.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index 33942df9..81e74ef3 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -390,7 +390,7 @@ Item { MoneroComponents.StandardButton { id: cancelButton small: true - text: root.walletName.length > 0 ? qsTr("Change wallet") + translationManager.emptyString : qsTr("Cancel") + translationManager.emptyString + text: qsTr("Cancel") + translationManager.emptyString KeyNavigation.tab: passwordInput1 onClicked: { root.close() @@ -407,7 +407,7 @@ Item { MoneroComponents.StandardButton { id: okButton small: true - text: qsTr("Continue") + translationManager.emptyString + text: qsTr("Ok") + translationManager.emptyString KeyNavigation.tab: cancelButton enabled: (passwordDialogMode == true) ? true : passwordInput1.text === passwordInput2.text onClicked: { |
