diff --git a/electrum/gui/qml/components/Wallets.qml b/electrum/gui/qml/components/Wallets.qml index 4a8949a37..fb25da666 100644 --- a/electrum/gui/qml/components/Wallets.qml +++ b/electrum/gui/qml/components/Wallets.qml @@ -118,7 +118,7 @@ Pane { FlatButton { Layout.fillWidth: true - text: 'Create Wallet' + text: qsTr('Create Wallet') icon.source: '../../icons/add.png' onClicked: rootItem.createWallet() } diff --git a/electrum/gui/qml/components/controls/InfoTextArea.qml b/electrum/gui/qml/components/controls/InfoTextArea.qml index dcdab8c4c..9b4db966f 100644 --- a/electrum/gui/qml/components/controls/InfoTextArea.qml +++ b/electrum/gui/qml/components/controls/InfoTextArea.qml @@ -39,7 +39,7 @@ TextHighlightPane { Image { Layout.preferredWidth: constants.iconSizeMedium Layout.preferredHeight: constants.iconSizeMedium - visible: iconStyle != InfoTextArea.IconStyle.Spinner + visible: iconStyle != InfoTextArea.IconStyle.Spinner && iconStyle != InfoTextArea.IconStyle.None source: iconStyle == InfoTextArea.IconStyle.Info ? "../../../icons/info.png" : iconStyle == InfoTextArea.IconStyle.Warn