Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/qml/components/AboutOptions.qml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ColumnLayout {
Layout.fillWidth: true
header: qsTr("Website")
actionItem: ExternalLink {
description: qsTr("bitcoincore.org")
description: "bitcoincore.org"
link: "https://bitcoincore.org"
iconSource: "image://images/caret-right"
iconWidth: 18
Expand All @@ -24,7 +24,7 @@ ColumnLayout {
Layout.fillWidth: true
header: qsTr("Source code")
actionItem: ExternalLink {
description: qsTr("github.com/bitcoin/bitcoin")
description: "github.com/bitcoin/bitcoin"
link: "https://github.com/bitcoin/bitcoin"
iconSource: "image://images/caret-right"
iconWidth: 18
Expand All @@ -35,7 +35,7 @@ ColumnLayout {
Layout.fillWidth: true
header: qsTr("License")
actionItem: ExternalLink {
description: qsTr("MIT")
description: "MIT"
link: "https://opensource.org/licenses/MIT"
iconSource: "image://images/caret-right"
iconWidth: 18
Expand All @@ -46,7 +46,7 @@ ColumnLayout {
Layout.fillWidth: true
header: qsTr("Version")
actionItem: ExternalLink {
description: qsTr("v22.99.0-1e7564eca8a6")
description: "v22.99.0-1e7564eca8a6"
link: "https://bitcoin.org/en/download"
iconSource: "image://images/caret-right"
iconWidth: 18
Expand Down
4 changes: 2 additions & 2 deletions src/qml/components/ConnectionSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ColumnLayout {
Layout.fillWidth: true
header: qsTr("Connection limit")
actionItem: ValueInput {
description: qsTr("6")
description: "6"
}
}
Setting {
Expand All @@ -45,7 +45,7 @@ ColumnLayout {
header: qsTr("Networks")
description: qsTr("Which networks to use for communication")
actionItem: ValueInput {
description: qsTr("6")
description: "6"
}
}
Setting {
Expand Down
2 changes: 1 addition & 1 deletion src/qml/components/DeveloperOptions.qml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ColumnLayout {
Layout.fillWidth: true
header: qsTr("Other option...")
actionItem: ValueInput {
description: qsTr("42")
description: "42"
}
}
Setting {
Expand Down
4 changes: 2 additions & 2 deletions src/qml/components/StorageSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ ColumnLayout {
Layout.fillWidth: true
header: qsTr("Data location")
actionItem: ValueInput {
description: qsTr("c://.../data")
description: "c://.../data"
}

}
Setting {
Layout.fillWidth: true
header: qsTr("Block location")
actionItem: ValueInput {
description: qsTr("c://.../blocks")
description: "c://.../blocks"
}
}
}