fix(desktop/wallet2) Updated wallet2 warning text
Also changed icon from wallet to cancel, to indicate that the feature is incomplete Closes #3431 fix(desktop/wallet2) Updated wallet2 warning text Also changed icon from wallet to cancel, to indicate that the feature is incomplete Closes #3431 update wallet v2 description
This commit is contained in:
parent
87d0a87b59
commit
6514eb6c5c
|
@ -86,7 +86,7 @@ ScrollView {
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusSettingsLineButton {
|
StatusSettingsLineButton {
|
||||||
text: qsTr("Wallet v2")
|
text: qsTr("Wallet v2 - do not use, under active development")
|
||||||
isSwitch: true
|
isSwitch: true
|
||||||
switchChecked: appSettings.isWalletV2Enabled
|
switchChecked: appSettings.isWalletV2Enabled
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
@ -289,7 +289,8 @@ ScrollView {
|
||||||
height: 310
|
height: 310
|
||||||
showCancelButton: true
|
showCancelButton: true
|
||||||
//% "This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk."
|
//% "This feature is experimental and is meant for testing purposes by core contributors and the community. It's not meant for real use and makes no claims of security or integrity of funds or data. Use at your own risk."
|
||||||
confirmationText: qsTrId("this-feature-is-experimental-and-is-meant-for-testing-purposes-by-core-contributors-and-the-community--it-s-not-meant-for-real-use-and-makes-no-claims-of-security-or-integrity-of-funds-or-data--use-at-your-own-risk-")
|
confirmationText: (settingsProp === "isWalletV2Enabled" ? qsTr("<b>--DO NOT USE - UNDER ACTIVE DEVELOPMENT--</b>\n") : "") +
|
||||||
|
qsTrId("this-feature-is-experimental-and-is-meant-for-testing-purposes-by-core-contributors-and-the-community--it-s-not-meant-for-real-use-and-makes-no-claims-of-security-or-integrity-of-funds-or-data--use-at-your-own-risk-")
|
||||||
//% "I understand"
|
//% "I understand"
|
||||||
confirmButtonLabel: qsTrId("i-understand")
|
confirmButtonLabel: qsTrId("i-understand")
|
||||||
onConfirmButtonClicked: {
|
onConfirmButtonClicked: {
|
||||||
|
|
|
@ -364,8 +364,9 @@ Item {
|
||||||
},
|
},
|
||||||
|
|
||||||
StatusNavBarTabButton {
|
StatusNavBarTabButton {
|
||||||
icon.name: "wallet"
|
//TODO temporary icon name, switch back to wallet
|
||||||
tooltip.text: qsTr("Wallet v2")
|
icon.name: "cancel"
|
||||||
|
tooltip.text: qsTr("Wallet v2 - do not use, under active development")
|
||||||
visible: enabled
|
visible: enabled
|
||||||
enabled: isExperimental === "1" || appSettings.isWalletV2Enabled
|
enabled: isExperimental === "1" || appSettings.isWalletV2Enabled
|
||||||
checked: appView.currentIndex == Utils.getAppSectionIndex(Constants.walletv2)
|
checked: appView.currentIndex == Utils.getAppSectionIndex(Constants.walletv2)
|
||||||
|
|
Loading…
Reference in New Issue