aboutsummaryrefslogtreecommitdiff
path: root/components/PasswordDialog.qml
diff options
context:
space:
mode:
authornotmike <notmike55@gmail.com>2019-07-18 09:02:53 -0600
committernotmike <notmike55@gmail.com>2019-07-18 09:02:53 -0600
commit7480f9b55913903bdecb6d108d33cc78205b8bed (patch)
tree19149afb79a1bd9f75ace5b3dcb59d4b1904fc40 /components/PasswordDialog.qml
parent705439c78b9e33637505aaf8c3f6b433cc5854ce (diff)
downloadmonzero-gui-7480f9b55913903bdecb6d108d33cc78205b8bed.tar.gz
monzero-gui-7480f9b55913903bdecb6d108d33cc78205b8bed.tar.xz
monzero-gui-7480f9b55913903bdecb6d108d33cc78205b8bed.zip
Changes Change wallet/Continue to Cancel/Ok
see #2290 #2204
Diffstat (limited to 'components/PasswordDialog.qml')
-rw-r--r--components/PasswordDialog.qml4
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: {