gui(settings): rename Bitcoin Core to Node

This commit is contained in:
Michael Mallan 2024-09-03 09:03:40 +01:00
parent db20ae4b67
commit b570039ff8
No known key found for this signature in database
GPG Key ID: 5177CDCEDB0EABEB
2 changed files with 8 additions and 7 deletions

View File

@ -51,7 +51,7 @@ pub fn list(cache: &Cache, is_remote_backend: bool) -> Element<Message> {
Button::new(
Row::new()
.push(badge::Badge::new(icon::bitcoin_icon()))
.push(text("Bitcoin Core").bold())
.push(text("Node").bold())
.padding(10)
.spacing(20)
.align_items(Alignment::Center)
@ -161,7 +161,7 @@ pub fn bitcoind_settings<'a>(
)
.push(icon::chevron_right().size(30))
.push(
Button::new(text("Bitcoin Core").size(30).bold())
Button::new(text("Node").size(30).bold())
.style(theme::Button::Transparent)
.on_press(Message::Settings(SettingsMessage::EditBitcoindSettings)),
),

View File

@ -527,11 +527,12 @@ pub fn import_descriptor<'a>(
"Import the wallet",
Column::new()
.push(Column::new().spacing(20).push(col_descriptor).push(text(
"After creating the wallet, \
you will need to perform a rescan of \
the blockchain in order to see your \
coins and past transactions. This can \
be done in Settings > Bitcoin Core.",
"If you are using a Bitcoin Core node, \
you will need to perform a rescan of \
the blockchain after creating the wallet \
in order to see your coins and past \
transactions. This can be done in \
Settings > Node.",
)))
.push(
if imported_descriptor.value.is_empty() || !imported_descriptor.valid {