fix(@desktop/wallet): Replaced watched-only with watched address/adresses text
This commit is contained in:
parent
e5166c11d3
commit
7bdec15353
|
@ -95,7 +95,7 @@ Item {
|
||||||
case Constants.onboarding.profileFetching.entity.keypairs:
|
case Constants.onboarding.profileFetching.entity.keypairs:
|
||||||
return qsTr("Keypairs")
|
return qsTr("Keypairs")
|
||||||
case Constants.onboarding.profileFetching.entity.watchOnlyAccounts:
|
case Constants.onboarding.profileFetching.entity.watchOnlyAccounts:
|
||||||
return qsTr("Watch-only accounts")
|
return qsTr("Watched addresses")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ StatusListItem {
|
||||||
|
|
||||||
signal buttonClicked()
|
signal buttonClicked()
|
||||||
|
|
||||||
title: !!root.keyPair? root.keyPair.pairType === Constants.keypair.type.watchOnly ? qsTr("Watch only") : root.keyPair.name: ""
|
title: !!root.keyPair? root.keyPair.pairType === Constants.keypair.type.watchOnly ? qsTr("Watched address") : root.keyPair.name: ""
|
||||||
titleAsideText: !!root.keyPair && root.keyPair.pairType === Constants.keypair.type.profile? Utils.getElidedCompressedPk(root.keyPair.pubKey): ""
|
titleAsideText: !!root.keyPair && root.keyPair.pairType === Constants.keypair.type.profile? Utils.getElidedCompressedPk(root.keyPair.pubKey): ""
|
||||||
asset {
|
asset {
|
||||||
width: !!root.keyPair && root.keyPair.icon? Style.current.bigPadding : 40
|
width: !!root.keyPair && root.keyPair.icon? Style.current.bigPadding : 40
|
||||||
|
|
|
@ -96,7 +96,7 @@ Item {
|
||||||
|
|
||||||
font.weight: Font.Normal
|
font.weight: Font.Normal
|
||||||
textColor: Theme.palette.baseColor1
|
textColor: Theme.palette.baseColor1
|
||||||
text: overview.includeWatchOnly ? qsTr("Hide watch-only"): qsTr("Show watch-only")
|
text: overview.includeWatchOnly ? qsTr("Hide watched addresses"): qsTr("Show watched addresses")
|
||||||
|
|
||||||
icon.name: overview.includeWatchOnly ? "hide" : "show"
|
icon.name: overview.includeWatchOnly ? "hide" : "show"
|
||||||
icon.height: 16
|
icon.height: 16
|
||||||
|
|
|
@ -65,7 +65,7 @@ StatusMenu {
|
||||||
|
|
||||||
StatusAction {
|
StatusAction {
|
||||||
objectName: "AccountMenu-AddWatchOnlyAccountAction-%1".arg(root.uniqueIdentifier)
|
objectName: "AccountMenu-AddWatchOnlyAccountAction-%1".arg(root.uniqueIdentifier)
|
||||||
text: qsTr("Add watch-only account")
|
text: qsTr("Add watched address")
|
||||||
enabled: !root.account
|
enabled: !root.account
|
||||||
icon.name: "show"
|
icon.name: "show"
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
|
|
|
@ -655,9 +655,9 @@ QtObject {
|
||||||
case Constants.appTranslatableConstants.loginAccountsListLostKeycard:
|
case Constants.appTranslatableConstants.loginAccountsListLostKeycard:
|
||||||
return qsTr("Lost Keycard")
|
return qsTr("Lost Keycard")
|
||||||
case Constants.appTranslatableConstants.addAccountLabelNewWatchOnlyAccount:
|
case Constants.appTranslatableConstants.addAccountLabelNewWatchOnlyAccount:
|
||||||
return qsTr("New watch-only account")
|
return qsTr("New watched address")
|
||||||
case Constants.appTranslatableConstants.addAccountLabelWatchOnlyAccount:
|
case Constants.appTranslatableConstants.addAccountLabelWatchOnlyAccount:
|
||||||
return qsTr("Watch-only account")
|
return qsTr("Watched address")
|
||||||
case Constants.appTranslatableConstants.addAccountLabelExisting:
|
case Constants.appTranslatableConstants.addAccountLabelExisting:
|
||||||
return qsTr("Existing")
|
return qsTr("Existing")
|
||||||
case Constants.appTranslatableConstants.addAccountLabelImportNew:
|
case Constants.appTranslatableConstants.addAccountLabelImportNew:
|
||||||
|
@ -665,7 +665,7 @@ QtObject {
|
||||||
case Constants.appTranslatableConstants.addAccountLabelOptionAddNewMasterKey:
|
case Constants.appTranslatableConstants.addAccountLabelOptionAddNewMasterKey:
|
||||||
return qsTr("Add new master key")
|
return qsTr("Add new master key")
|
||||||
case Constants.appTranslatableConstants.addAccountLabelOptionAddWatchOnlyAcc:
|
case Constants.appTranslatableConstants.addAccountLabelOptionAddWatchOnlyAcc:
|
||||||
return qsTr("Add watch-only account")
|
return qsTr("Add watched address")
|
||||||
}
|
}
|
||||||
|
|
||||||
// special handling because on an index attached to the constant
|
// special handling because on an index attached to the constant
|
||||||
|
|
Loading…
Reference in New Issue