Skip to content

Commit d528468

Browse files
shaavanjarolrod
authored andcommitted
qml: Make links, data location and numerical description value un-translatable.
1 parent fd4e57f commit d528468

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/qml/components/AboutOptions.qml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ColumnLayout {
1313
Layout.fillWidth: true
1414
header: qsTr("Website")
1515
actionItem: ExternalLink {
16-
description: qsTr("bitcoincore.org")
16+
description: "bitcoincore.org"
1717
link: "https://bitcoincore.org"
1818
iconSource: "image://images/caret-right"
1919
}
@@ -22,7 +22,7 @@ ColumnLayout {
2222
Layout.fillWidth: true
2323
header: qsTr("Source code")
2424
actionItem: ExternalLink {
25-
description: qsTr("github.com/bitcoin/bitcoin")
25+
description: "github.com/bitcoin/bitcoin"
2626
link: "https://github.com/bitcoin/bitcoin"
2727
iconSource: "image://images/caret-right"
2828
}
@@ -31,7 +31,7 @@ ColumnLayout {
3131
Layout.fillWidth: true
3232
header: qsTr("License")
3333
actionItem: ExternalLink {
34-
description: qsTr("MIT")
34+
description: "MIT"
3535
link: "https://opensource.org/licenses/MIT"
3636
iconSource: "image://images/caret-right"
3737
}
@@ -40,7 +40,7 @@ ColumnLayout {
4040
Layout.fillWidth: true
4141
header: qsTr("Version")
4242
actionItem: ExternalLink {
43-
description: qsTr("v22.99.0-1e7564eca8a6")
43+
description: "v22.99.0-1e7564eca8a6"
4444
link: "https://bitcoin.org/en/download"
4545
iconSource: "image://images/caret-right"
4646
}

src/qml/components/StorageSettings.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ColumnLayout {
2525
Layout.fillWidth: true
2626
header: qsTr("Data location")
2727
actionItem: ValueInput {
28-
description: qsTr("c://.../data")
28+
description: "c://.../data"
2929
}
3030
}
3131
}

0 commit comments

Comments
 (0)