diff --git a/ui/app/AppLayouts/Profile/Sections/AdvancedContainer.qml b/ui/app/AppLayouts/Profile/Sections/AdvancedContainer.qml index 981e92a2d6..7f43941711 100644 --- a/ui/app/AppLayouts/Profile/Sections/AdvancedContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/AdvancedContainer.qml @@ -86,7 +86,7 @@ ScrollView { } StatusSettingsLineButton { - text: qsTr("Wallet v2") + text: qsTr("Wallet v2 - do not use, under active development") isSwitch: true switchChecked: appSettings.isWalletV2Enabled onClicked: { @@ -289,7 +289,8 @@ ScrollView { height: 310 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." - 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("--DO NOT USE - UNDER ACTIVE DEVELOPMENT--\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" confirmButtonLabel: qsTrId("i-understand") onConfirmButtonClicked: { diff --git a/ui/app/AppMain.qml b/ui/app/AppMain.qml index 51727967b1..458d625840 100644 --- a/ui/app/AppMain.qml +++ b/ui/app/AppMain.qml @@ -364,8 +364,9 @@ Item { }, StatusNavBarTabButton { - icon.name: "wallet" - tooltip.text: qsTr("Wallet v2") + //TODO temporary icon name, switch back to wallet + icon.name: "cancel" + tooltip.text: qsTr("Wallet v2 - do not use, under active development") visible: enabled enabled: isExperimental === "1" || appSettings.isWalletV2Enabled checked: appView.currentIndex == Utils.getAppSectionIndex(Constants.walletv2)