Skip to content

Commit 94dc312

Browse files
jarolrodhebasto
authored andcommitted
qml: storage options description fixups
Github-Pull: #206 Rebased-From: a9812ff
1 parent 1ec4269 commit 94dc312

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/qml/BitcoinApp/Components/StorageLocations.qml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ ColumnLayout {
1515
OptionButton {
1616
Layout.fillWidth: true
1717
ButtonGroup.group: group
18-
text: qsTr("Default directory")
19-
description: qsTr("The downloaded block data will be saved to the default data directory for your OS.")
18+
text: qsTr("Default")
19+
description: qsTr("Your application directory.")
2020
recommended: true
2121
checked: true
2222
}
2323
OptionButton {
2424
Layout.fillWidth: true
2525
ButtonGroup.group: group
26-
text: qsTr("Custom directory")
27-
description: qsTr("The downloaded block data will be saved to the chosen directory.")
26+
text: qsTr("Custom")
27+
description: qsTr("Choose the directory and storage device.")
2828
}
2929
}

src/qml/BitcoinApp/Components/StorageOptions.qml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ ColumnLayout {
1616
Layout.fillWidth: true
1717
ButtonGroup.group: group
1818
text: qsTr("Reduce storage")
19-
description: qsTr("Uses about 2GB.")
19+
description: qsTr("Uses about 2GB. For simple wallet use.")
2020
recommended: true
2121
checked: true
2222
}
2323
OptionButton {
2424
Layout.fillWidth: true
2525
ButtonGroup.group: group
26-
text: qsTr("Default")
27-
description: qsTr("Uses about 423GB.")
26+
text: qsTr("Store all data")
27+
description: qsTr("Uses about 550GB. Support the network.")
2828
}
2929
}

src/qml/BitcoinApp/OnboardingStorageLocation.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ InformationPage {
1919
bold: true
2020
headerText: qsTr("Storage location")
2121
headerMargin: 0
22-
description: qsTr("Where do you want to store the downloaded block data?")
22+
description: qsTr("Where do you want to store the downloaded block data?\nYou need a minimum of 1GB of storage.")
2323
descriptionMargin: 20
2424
detailActive: true
2525
detailItem: StorageLocations {}

0 commit comments

Comments
 (0)